diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 1d0e8e78f3dd..c853b70ade8d 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,37 +1,38 @@ - + + - - +## Что этот PR делает -## What Does This PR Do - - - + + + -## Why It's Good For The Game - +## Почему это хорошо для игры -## Images of changes - + -## Testing - +## Изображения изменений + + +## Тестирование + ## Changelog + :cl: -add: Added new things -del: Removed old things -tweak: Tweaked a few things -fix: Fixed a few things -wip: Added a few works in progress -soundadd: Added a new sound thingy -sounddel: Removed an old sound thingy -imageadd: Added some icons and images -imagedel: Deleted some icons and images -spellcheck: Fixed a few typos -experiment: Added an experimental thingy +add: Что-то добавил +del: Что-то удалил +tweak: Поменял что-то по мелочи +fix: Что-то починил +wip: Какие-либо наработки в процессе +soundadd: Добавил новый звук +sounddel: Удалил старый звук +imageadd: Добавил новую картинку +imagedel: Удалил старую картинку +spellcheck: Исправил опечатку +experiment: Добавил эксперементальную функцию /:cl: - - - + + + diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 000000000000..443be5b04606 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,36 @@ +"TGUI": +- 'tgui/**' + +"Звук": +- '**/*.ogg' + +"Изменение Карты": +- '**/*.dmm' + +"Инструменты": +- '.gihub/workflows/**' +- 'tools/**' + +"Керберос": +- '_maps/map_files220/delta/delta.dmm' + +"Кибериада": +- '_maps/map_files220/cyberiad/cyberiad.dmm' + +"НЕ МОДУЛЬНО": +- all: ['code/**'] + +"Спрайты": +- '**/*.dmi' + +"Требуется изменение конфига": +- 'config/**' + +"Документация": +- '**/*.md' + +"Частичная модульность": +- all: ['code/**', modular_ss220/**] + +"SQL": +- 'SQL/**' diff --git a/.github/workflows/auto_translate.yml b/.github/workflows/auto_translate.yml new file mode 100644 index 000000000000..58fc76f023d5 --- /dev/null +++ b/.github/workflows/auto_translate.yml @@ -0,0 +1,57 @@ +name: Add new translation + +on: + workflow_dispatch: + push: + branches: ['translate'] + +jobs: + add_translation: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + name: 'Add new translation' + + steps: + - name: 'Update Branch' + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Installing Python + uses: actions/setup-python@v4 + with: + python-version: '3.11' + + - name: Installing deps + run: | + python -m pip install --upgrade pip + pip install -r ./tools/translator/requirements.txt + + - name: Create temporary branch + run: | + git checkout -b translate_tmp + git reset --hard origin/master + - name: Apply existing translation + run: | + git fetch origin translate + git checkout origin/translate -- ./tools/translator/ss220replace.json + ./tools/translator/ss220_replacer_linux --prefix=ss220 --root=./../../ --location=./ + + - name: Apply PR translation + run: | + git cherry-pick -n origin/translate + + - name: 'Generate Translation' + run: | + python ./tools/translator/converter.py + [ ! -f ./ss220replace.json ] || mv ./ss220replace.json ./tools/translator/ss220replace.json + git add ./tools/translator/ss220replace.json + + - name: 'Push Translation' + run: | + git config --local user.email "action@github.com" + git config --local user.name "SS220Manager" + git commit -m "Generate translation file" + git push -f origin translate_tmp:translate diff --git a/.github/workflows/check_changelog.yml b/.github/workflows/check_changelog.yml new file mode 100644 index 000000000000..f88966e9b9b9 --- /dev/null +++ b/.github/workflows/check_changelog.yml @@ -0,0 +1,32 @@ +name: Changelog validation + +permissions: + contents: read + pull-requests: write + issues: write + +on: + pull_request_target: + types: [opened, reopened, edited, labeled, unlabeled] + +jobs: + CheckCL: + runs-on: ubuntu-latest + if: github.repository == 'ss220club/Paradise-SS220' && github.base_ref == 'master' && github.event.pull_request.draft == false + steps: + - name: Downloading scripts + run: | + wget https://raw.githubusercontent.com/ss220club/Paradise-SS220/master/tools/changelog/check_changelog.py + wget https://raw.githubusercontent.com/ss220club/Paradise-SS220/master/tools/changelog/tags.yml + - name: Installing Python + uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 + with: + python-version: '3.x' + - name: Installing deps + run: | + python -m pip install --upgrade pip + pip install ruamel.yaml PyGithub + - name: Changelog validation + env: + BOT_TOKEN: ${{ secrets.BOT_TOKEN }} + run: python check_changelog.py diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 000000000000..fa646aa88560 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,24 @@ +name: Deploy + +concurrency: + group: deploy + +on: + workflow_dispatch: + push: + branches: ['master', 'devtest'] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Trigger update + uses: appleboy/ssh-action@master + with: + host: ${{ secrets.GAME1_HOST }} + username: ${{ secrets.GAME1_USERNAME }} + key: ${{ secrets.GAME1_SSH_KEY }} + script: | + cd /opt/ss13/paradise/ + ./upgrade.sh diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml new file mode 100644 index 000000000000..374a6f59dee3 --- /dev/null +++ b/.github/workflows/label.yml @@ -0,0 +1,13 @@ +name: "Label" + +on: +- pull_request_target + +jobs: + labeler: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v4 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" + sync-labels: true diff --git a/.github/workflows/label_merge_conflicts.yml b/.github/workflows/label_merge_conflicts.yml index d2a56e2ef3d4..76217480b4fe 100644 --- a/.github/workflows/label_merge_conflicts.yml +++ b/.github/workflows/label_merge_conflicts.yml @@ -1,13 +1,19 @@ name: 'Merge Conflict Detection' + on: push: branches: - master + pull_request_target: + types: [ready_for_review, opened, synchronize, reopened] jobs: triage: - runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + runs-on: ubuntu-22.04 steps: - - uses: mschilde/auto-label-merge-conflicts@master + - uses: eps1lon/actions-label-merge-conflict@v2.1.0 with: - CONFLICT_LABEL_NAME: 'Merge Conflict' - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + dirtyLabel: 'Merge Conflict' + repoToken: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/translate_branch_update.yml b/.github/workflows/translate_branch_update.yml new file mode 100644 index 000000000000..26b025205bbf --- /dev/null +++ b/.github/workflows/translate_branch_update.yml @@ -0,0 +1,48 @@ +name: Update translation branch + +on: + workflow_dispatch: + push: + branches: ['master'] + +jobs: + update_translation: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + name: 'Update old translation' + + steps: + - name: 'Update Branch' + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Installing Python + uses: actions/setup-python@v4 + with: + python-version: '3.11' + + - name: Installing deps + run: | + python -m pip install --upgrade pip + pip install -r ./tools/translator/requirements.txt + + - name: Create temporary branch + run: | + git checkout -b translate_tmp + git reset --hard origin/master + + - name: Apply existing translation + run: | + git fetch origin translate + git checkout origin/translate -- ./tools/translator/ss220replace.json + ./tools/translator/ss220_replacer_linux --prefix=ss220 --root=./../../ --location=./ + + - name: 'Push Translation' + run: | + git config --local user.email "action@github.com" + git config --local user.name "SS220Manager" + git commit -m "Generate translation file" + git push -f origin translate_tmp:translate diff --git a/.gitignore b/.gitignore index 8940b2c85721..0033167e0e60 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,7 @@ stddef.dm .atom-build.json *.vscode/* !/.vscode/extensions.json +!/.vscode/tasks.json # ignore DMI tool build cache /tools/dmitool/bin/ @@ -57,3 +58,4 @@ __pycache__/ dmm-tools.exe OpenDream paradise.json +sound/tts_cache/* diff --git a/.tgs.yml b/.tgs.yml new file mode 100644 index 000000000000..9384f9d72f92 --- /dev/null +++ b/.tgs.yml @@ -0,0 +1,19 @@ +# This file is stolen from tg +version: 1 +byond: "515.1614" +# Folders to create in "/Configuration/GameStaticFiles/" +static_files: + # Config directory should be static + - name: config + # This implies the folder should be pre-populated with contents from the repo + populate: true + # Data directory must be static + - name: data +# String dictionary. The value is the location of the file in the repo to upload to TGS. The key is the name of the file to upload to "/Configuration/EventScripts/" +# This one is for Linux hosted servers +linux_scripts: + PreCompile.sh: tools/tgs_scripts/PreCompile.sh + WatchdogLaunch.sh: tools/tgs_scripts/WatchdogLaunch.sh + InstallDeps.sh: tools/tgs_scripts/InstallDeps.sh +# The security level the game should be run at +security: Trusted diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 62f6e9cb4563..b5147f210dd7 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -6,6 +6,7 @@ "dbaeumer.vscode-eslint", "eamodio.gitlens", "usernamehw.errorlens", - "anturk.dmi-editor" + "anturk.dmi-editor", + "esbenp.prettier-vscode" ] } diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 000000000000..dca695c03ccc --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,54 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "dreammaker", + "dme": "paradise.dme", + "problemMatcher": [ + "$dreammaker" + ], + "group": "build", + "label": "dm: build - paradise.dme" + }, + { + "type": "shell", + "command": "tgui/bin/tgui-build", + "windows": { + "command": ".\\tgui\\bin\\tgui-build.bat" + }, + "problemMatcher": [ + "$tsc", + "$eslint-stylish" + ], + "group": "build", + "label": "tgui: build" + }, + { + "type": "shell", + "command": "tgui/bin/tgui-dev-server", + "windows": { + "command": ".\\tgui\\bin\\tgui-dev-server.bat" + }, + "problemMatcher": [ + "$tsc", + "$eslint-stylish" + ], + "group": "build", + "label": "tgui: run dev server" + } + , + { + "type": "shell", + "command": "tgui/bin/tgui-formatting", + "windows": { + "command": ".\\tgui\\bin\\tgui-formatting.bat" + }, + "problemMatcher": [ + "$tsc", + "$eslint-stylish" + ], + "group": "build", + "label": "tgui: run prettier formatting" + } + ] +} diff --git a/SQL/paradise_schema.sql b/SQL/paradise_schema.sql index 909f3fa05447..e21a44fbb511 100644 --- a/SQL/paradise_schema.sql +++ b/SQL/paradise_schema.sql @@ -77,6 +77,7 @@ CREATE TABLE `characters` ( `hair_gradient_colour` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000', `hair_gradient_alpha` tinyint(3) UNSIGNED NOT NULL DEFAULT '255', `custom_emotes` LONGTEXT COLLATE 'utf8mb4_unicode_ci' DEFAULT NULL, + `tts_seed` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `ckey` (`ckey`) ) ENGINE=InnoDB AUTO_INCREMENT=125467 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; @@ -474,7 +475,17 @@ CREATE TABLE `playtime_history` ( `ckey` varchar(32) NOT NULL, `date` DATE NOT NULL, `time_living` SMALLINT NOT NULL, + `time_crew` SMALLINT NOT NULL, + `time_special` SMALLINT NOT NULL, `time_ghost` SMALLINT NOT NULL, + `time_command` SMALLINT NOT NULL, + `time_engineering` SMALLINT NOT NULL, + `time_medical` SMALLINT NOT NULL, + `time_science` SMALLINT NOT NULL, + `time_supply` SMALLINT NOT NULL, + `time_security` SMALLINT NOT NULL, + `time_silicon` SMALLINT NOT NULL, + `time_service` SMALLINT NOT NULL, PRIMARY KEY (`ckey`, `date`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -623,3 +634,39 @@ CREATE TABLE `json_datum_saves` ( UNIQUE INDEX `ckey_unique` (`ckey`, `slotname`) USING BTREE, INDEX `ckey` (`ckey`) USING BTREE ) COLLATE = 'utf8mb4_general_ci' ENGINE = InnoDB; + + + +-- +-- SS220 ADDITION AND EDITS +-- + +-- +-- Table structure for table `ckey_whitelist` +-- +DROP TABLE IF EXISTS `ckey_whitelist`; +CREATE TABLE `ckey_whitelist` ( + `id` INT(11) NOT NULL AUTO_INCREMENT, + `date` DATETIME DEFAULT now() NOT NULL, + `ckey` VARCHAR(32) NOT NULL, + `adminwho` VARCHAR(32) NOT NULL, + `port` INT(5) UNSIGNED NOT NULL, + `date_start` DATETIME DEFAULT now() NOT NULL, + `date_end` DATETIME NULL, + `is_valid` BOOLEAN DEFAULT true NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Table structure for table `admin_wl` +-- +CREATE TABLE `admin_wl` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, + `admin_rank` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Administrator', + `level` int(2) NOT NULL DEFAULT '0', + `flags` int(16) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + KEY `ckey` (`ckey`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + diff --git a/SQL/updates/51-52.sql b/SQL/updates/51-52.sql new file mode 100644 index 000000000000..3ecf3b46dfc9 --- /dev/null +++ b/SQL/updates/51-52.sql @@ -0,0 +1,13 @@ +# Updating SQL from 51 to 52 -AffectedArc07 +# Adding all department columns to playtime_history +ALTER TABLE `playtime_history` + ADD COLUMN `time_crew` SMALLINT NOT NULL AFTER `time_living`, + ADD COLUMN `time_special` SMALLINT NOT NULL AFTER `time_crew`, + ADD COLUMN `time_command` SMALLINT NOT NULL AFTER `time_ghost`, + ADD COLUMN `time_engineering` SMALLINT NOT NULL AFTER `time_command`, + ADD COLUMN `time_medical` SMALLINT NOT NULL AFTER `time_engineering`, + ADD COLUMN `time_science` SMALLINT NOT NULL AFTER `time_medical`, + ADD COLUMN `time_supply` SMALLINT NOT NULL AFTER `time_science`, + ADD COLUMN `time_security` SMALLINT NOT NULL AFTER `time_supply`, + ADD COLUMN `time_silicon` SMALLINT NOT NULL AFTER `time_security`, + ADD COLUMN `time_service` SMALLINT NOT NULL AFTER `time_silicon`; diff --git a/SQL/updates220/49-49.220.1.sql b/SQL/updates220/49-49.220.1.sql new file mode 100644 index 000000000000..af91b999b28a --- /dev/null +++ b/SQL/updates220/49-49.220.1.sql @@ -0,0 +1,4 @@ +# Updating DB from 49 to 49.220.1 +# Adds characters.tts_seed ~furior + +ALTER TABLE `characters` ADD `tts_seed` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL AFTER `custom_emotes`; diff --git a/SQL/updates220/49.220.1-49.220.2.sql b/SQL/updates220/49.220.1-49.220.2.sql new file mode 100644 index 000000000000..0e6866daf9d3 --- /dev/null +++ b/SQL/updates220/49.220.1-49.220.2.sql @@ -0,0 +1,12 @@ +CREATE TABLE `ckey_whitelist` +( + `id` INT(11) NOT NULL AUTO_INCREMENT, + `date` DATETIME DEFAULT now() NOT NULL, + `ckey` VARCHAR(32) NOT NULL, + `adminwho` VARCHAR(32) NOT NULL, + `port` INT(5) UNSIGNED NOT NULL, + `date_start` DATETIME DEFAULT now() NOT NULL, + `date_end` DATETIME NULL, + `is_valid` BOOLEAN DEFAULT true NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; diff --git a/SQL/updates220/49.220.2-49.220.3.sql b/SQL/updates220/49.220.2-49.220.3.sql new file mode 100644 index 000000000000..036938b993c8 --- /dev/null +++ b/SQL/updates220/49.220.2-49.220.3.sql @@ -0,0 +1,9 @@ +CREATE TABLE `admin_wl` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, + `admin_rank` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Administrator', + `level` int(2) NOT NULL DEFAULT '0', + `flags` int(16) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + KEY `ckey` (`ckey`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; diff --git a/SQL/updates220/50.220.3-50.220.4.sql b/SQL/updates220/50.220.3-50.220.4.sql new file mode 100644 index 000000000000..70dc8d2d51c6 --- /dev/null +++ b/SQL/updates220/50.220.3-50.220.4.sql @@ -0,0 +1,9 @@ +CREATE TABLE IF NOT EXISTS `discord_links` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `ckey` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `discord_id` bigint(20) DEFAULT NULL, + `timestamp` timestamp NOT NULL DEFAULT current_timestamp(), + `one_time_token` varchar(100) NOT NULL, + `valid` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; diff --git a/SQL/updates220/51.220.4-51.220.5.sql b/SQL/updates220/51.220.4-51.220.5.sql new file mode 100644 index 000000000000..4e974512f0e2 --- /dev/null +++ b/SQL/updates220/51.220.4-51.220.5.sql @@ -0,0 +1,12 @@ +CREATE TABLE `budget` ( + `id` INT(11) NOT NULL AUTO_INCREMENT, + `date` DATETIME NOT NULL DEFAULT current_timestamp(), + `ckey` VARCHAR(32) NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci', + `amount` INT(10) UNSIGNED NOT NULL, + `source` VARCHAR(32) NOT NULL COLLATE 'utf8mb4_general_ci', + `date_start` DATETIME NOT NULL DEFAULT current_timestamp(), + `date_end` DATETIME NULL DEFAULT (current_timestamp() + interval 1 month), + `is_valid` TINYINT(1) NOT NULL DEFAULT '1', + `discord_id` bigint(20) DEFAULT NULL, + PRIMARY KEY (`id`) USING BTREE +) COLLATE='utf8mb4_general_ci' ENGINE=InnoDB; diff --git a/_build_dependencies.sh b/_build_dependencies.sh index b6f31ad2eb09..f943ddf72c2f 100644 --- a/_build_dependencies.sh +++ b/_build_dependencies.sh @@ -2,7 +2,7 @@ # For dreamchecker export SPACEMANDMM_TAG=suite-1.7.1 # For TGUI -export NODE_VERSION=12 +export NODE_VERSION=18 # Stable Byond Major export STABLE_BYOND_MAJOR=514 # Stable Byond Minor @@ -12,4 +12,4 @@ export BETA_BYOND_MAJOR=515 # Beta Byond Minor export BETA_BYOND_MINOR=1610 # Python version for mapmerge and other tools -export PYTHON_VERSION=3.7.9 +export PYTHON_VERSION=3.11.6 diff --git a/_maps/base_map.dm b/_maps/base_map.dm index 2c44a73bb675..18d8f64065bf 100644 --- a/_maps/base_map.dm +++ b/_maps/base_map.dm @@ -1,4 +1,5 @@ -#include "map_files\generic\centcomm.dmm" +#include "map_files220\generic\centcomm.dmm" // SS220 EDIT - ORIGINAL: #include "map_files\generic\centcomm.dmm" +#include "map_files220\generic\Admin_Zone.dmm" // SS220 ADDITION #define CC_TRANSITION_CONFIG DECLARE_LEVEL(CENTCOMM, SELFLOOPING, list(ADMIN_LEVEL, BLOCK_TELEPORT, IMPEDES_MAGIC)) #ifdef CIMAP #include "ci_map_testing.dm" diff --git a/_maps/map_files/Delta/delta.dmm b/_maps/map_files/Delta/delta.dmm index 74f91fef9b9a..e644311ce827 100644 --- a/_maps/map_files/Delta/delta.dmm +++ b/_maps/map_files/Delta/delta.dmm @@ -458,7 +458,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/entry) "afi" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) "afj" = ( @@ -1383,7 +1383,7 @@ }, /area/station/maintenance/fore2) "amh" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fore2) "aml" = ( @@ -1398,7 +1398,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "amz" = ( @@ -1954,7 +1954,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "aou" = ( @@ -2002,7 +2002,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/checkpoint/secondary) "aoE" = ( @@ -2374,7 +2374,7 @@ /turf/simulated/wall, /area/station/maintenance/electrical_shop) "apH" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/electrical_shop) "apI" = ( @@ -2407,7 +2407,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/customs) "apO" = ( @@ -3296,9 +3296,6 @@ name = "Security Checkpoint"; pixel_x = -8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/doors{ - dir = 8 - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -3476,7 +3473,7 @@ /area/station/maintenance/electrical_shop) "asn" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/customs) "aso" = ( @@ -3564,7 +3561,7 @@ /area/station/command/customs) "asz" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "asA" = ( @@ -3609,7 +3606,7 @@ /area/station/hallway/secondary/entry) "asF" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/checkpoint/secondary) "asG" = ( @@ -3770,6 +3767,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/doors{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/security/checkpoint/secondary) "asY" = ( @@ -5451,7 +5451,7 @@ }, /area/station/engineering/controlroom) "awM" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fore) "awN" = ( @@ -5942,7 +5942,7 @@ /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 8 }, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/engineering/controlroom) "axI" = ( @@ -6383,7 +6383,7 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/engineering/controlroom) "ayV" = ( @@ -7600,7 +7600,6 @@ /area/station/maintenance/fore) "aBE" = ( /obj/machinery/door/window{ - dir = 2; name = "Bar Door" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/bar, @@ -8188,7 +8187,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/engineering/controlroom) "aDh" = ( @@ -8839,9 +8838,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/door/window{ - dir = 2 - }, +/obj/machinery/door/window, /obj/effect/decal/warning_stripes/yellow/hollow, /obj/structure/disposalpipe/segment{ dir = 1; @@ -9245,7 +9242,7 @@ /turf/simulated/floor/plasteel, /area/station/public/toilet) "aFR" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/supply/storage) "aFS" = ( @@ -9766,7 +9763,7 @@ /turf/space, /area/space/nearstation) "aGX" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarport) "aGY" = ( @@ -9776,7 +9773,7 @@ /turf/simulated/wall/r_wall, /area/station/maintenance/incinerator) "aHa" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/incinerator) "aHb" = ( @@ -10876,7 +10873,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "aJC" = ( @@ -10943,7 +10940,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "aJM" = ( @@ -12585,7 +12582,7 @@ }, /area/station/security/execution) "aNR" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -13048,7 +13045,7 @@ /area/station/security/execution) "aPh" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -13727,7 +13724,7 @@ /area/station/security/permabrig) "aQJ" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permasolitary) "aQK" = ( @@ -14289,7 +14286,7 @@ /turf/simulated/wall, /area/station/supply/qm) "aSa" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/supply/qm) "aSb" = ( @@ -14401,7 +14398,7 @@ }, /area/station/security/permabrig) "aSt" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -14457,7 +14454,7 @@ "aSz" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/visible, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/incinerator) "aSA" = ( @@ -15787,6 +15784,13 @@ /obj/machinery/atmospherics/unary/portables_connector{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/doors{ + dir = 8 + }, +/obj/machinery/door/window/reinforced/normal{ + name = "Riot Control"; + dir = 8 + }, /turf/simulated/floor/plating, /area/station/security/permabrig) "aVm" = ( @@ -15941,7 +15945,7 @@ }, /area/station/security/permasolitary) "aVx" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -16151,7 +16155,7 @@ }, /area/station/service/bar) "aVR" = ( -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "aVT" = ( @@ -16736,7 +16740,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permasolitary) "aWV" = ( @@ -18263,7 +18267,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "bak" = ( @@ -18466,7 +18470,7 @@ }, /area/station/service/hydroponics) "baJ" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -19491,7 +19495,7 @@ d2 = 8; icon_state = "1-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permasolitary) "bdf" = ( @@ -19892,7 +19896,6 @@ "bdR" = ( /obj/structure/table/reinforced, /obj/machinery/door/window{ - dir = 2; name = "Kitchen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, @@ -19918,7 +19921,6 @@ /obj/item/reagent_containers/food/condiment/peppermill, /obj/machinery/door/firedoor, /obj/machinery/door/window{ - dir = 2; name = "Kitchen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, @@ -20071,7 +20073,6 @@ }, /obj/effect/decal/warning_stripes/yellow, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Glass Door" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot, @@ -20408,7 +20409,6 @@ /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/window{ - dir = 2; name = "Kitchen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, @@ -20428,7 +20428,6 @@ /obj/item/storage/fancy/donut_box, /obj/machinery/door/firedoor, /obj/machinery/door/window{ - dir = 2; name = "Kitchen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, @@ -21789,7 +21788,6 @@ icon_state = "1-4" }, /obj/machinery/door/window/brigdoor{ - dir = 2; id = "Cell 2"; name = "Cell 2" }, @@ -23343,7 +23341,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -23368,7 +23366,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -23420,6 +23418,13 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, +/obj/machinery/door/window/reinforced/normal{ + name = "Warden's Desk"; + dir = 1 + }, +/obj/machinery/door/window/reinforced/normal{ + name = "Warden's Desk" + }, /turf/simulated/floor/plasteel{ icon_state = "darkredfull" }, @@ -24583,7 +24588,7 @@ }, /area/station/command/office/hos) "boO" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Magistrate" }, /obj/structure/cable, @@ -24649,7 +24654,7 @@ name = "Security Blast Door"; opacity = 0 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "boW" = ( @@ -24769,7 +24774,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -25412,7 +25417,7 @@ opacity = 0 }, /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bqA" = ( @@ -25505,7 +25510,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" }, /turf/simulated/floor/plating, @@ -25561,6 +25566,10 @@ name = "Evidence Deposit" }, /obj/structure/disposalpipe/trunk, +/obj/machinery/door/window/reinforced/normal{ + dir = 8; + name = "Evidence Deposit" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkred" @@ -25668,7 +25677,6 @@ /area/station/security/prison/cell_block) "brl" = ( /obj/machinery/door/window/brigdoor{ - dir = 2; id = "Cell 3"; name = "Cell 3" }, @@ -25711,7 +25719,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -25956,7 +25964,7 @@ /turf/simulated/wall, /area/station/engineering/tech_storage) "brX" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "brZ" = ( @@ -26731,7 +26739,7 @@ }, /area/station/hallway/primary/starboard) "btW" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -26817,7 +26825,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Interrogation" }, /turf/simulated/floor/plating, @@ -27101,7 +27109,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -27150,7 +27158,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "buN" = ( @@ -27168,7 +27176,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "buO" = ( @@ -27176,7 +27184,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "buP" = ( @@ -27312,7 +27320,7 @@ }, /area/station/hallway/primary/fore) "bvh" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /obj/structure/cable{ d1 = 1; @@ -27357,7 +27365,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -27421,7 +27429,7 @@ /turf/simulated/floor/plasteel/dark, /area/station/aisat) "bvw" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" }, /obj/structure/cable, @@ -27787,7 +27795,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bwd" = ( @@ -27807,7 +27815,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bwe" = ( @@ -27827,7 +27835,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bwf" = ( @@ -27845,7 +27853,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bwh" = ( @@ -27870,7 +27878,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bwi" = ( @@ -27885,7 +27893,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bwj" = ( @@ -27905,7 +27913,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bwk" = ( @@ -27925,7 +27933,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bwl" = ( @@ -27945,7 +27953,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bwm" = ( @@ -27966,7 +27974,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bwo" = ( @@ -27988,7 +27996,7 @@ /turf/simulated/wall/r_wall, /area/station/command/vault) "bws" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "bwt" = ( @@ -28015,7 +28023,7 @@ }, /area/station/hallway/primary/starboard) "bwz" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /obj/machinery/door/poddoor{ density = 0; @@ -28041,7 +28049,7 @@ icon_state = "1-4" }, /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" }, /turf/simulated/floor/plating, @@ -28295,7 +28303,7 @@ }, /area/station/engineering/atmos) "bxd" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -29230,7 +29238,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bza" = ( @@ -29266,7 +29274,7 @@ d2 = 4; icon_state = "1-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "bzg" = ( @@ -29301,7 +29309,7 @@ }, /area/station/security/brig) "bzm" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -29595,7 +29603,7 @@ /area/station/engineering/atmos) "bAc" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "bAd" = ( @@ -29916,7 +29924,7 @@ name = "Security Blast Door"; opacity = 0 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -30588,8 +30596,7 @@ /area/station/command/bridge) "bCs" = ( /obj/machinery/door/window/reinforced/reversed{ - name = "Captains seat"; - dir = 2 + name = "Captains seat" }, /obj/structure/cable{ d1 = 4; @@ -30945,7 +30952,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" }, /turf/simulated/floor/plating, @@ -31579,7 +31586,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bDY" = ( @@ -31841,7 +31848,7 @@ }, /area/station/hallway/primary/starboard) "bEw" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -31881,7 +31888,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/warden) "bED" = ( @@ -32132,7 +32139,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/break_room) "bFh" = ( @@ -32286,7 +32293,7 @@ opacity = 0 }, /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bFx" = ( @@ -32349,7 +32356,7 @@ opacity = 0 }, /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bFF" = ( @@ -32500,7 +32507,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/detective) "bFW" = ( @@ -32513,7 +32520,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/detective) "bFX" = ( @@ -32661,7 +32668,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "bGn" = ( @@ -33717,7 +33724,7 @@ /area/station/maintenance/fsmaint) "bIe" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/warden) "bIg" = ( @@ -33957,7 +33964,7 @@ /area/station/engineering/tech_storage) "bIK" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/break_room) "bIN" = ( @@ -34807,7 +34814,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/meeting_room) "bKF" = ( @@ -35208,7 +35215,6 @@ /area/station/security/prison/cell_block) "bLG" = ( /obj/machinery/door/window/brigdoor{ - dir = 2; id = "Cell 4"; name = "Cell 4" }, @@ -35956,6 +35962,10 @@ /obj/effect/mapping_helpers/airlock/windoor/access/any/security/forensics{ dir = 4 }, +/obj/machinery/door/window/reinforced/normal{ + dir = 4; + name = "Body Storage" + }, /turf/simulated/floor/plasteel/dark, /area/station/security/detective) "bNr" = ( @@ -36040,7 +36050,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "bNE" = ( @@ -36839,7 +36849,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/brig) "bPu" = ( @@ -37202,7 +37212,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CE" }, /turf/simulated/floor/plating, @@ -37586,7 +37596,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Detective" }, /turf/simulated/floor/plating, @@ -39164,7 +39174,7 @@ /area/station/command/office/ce) "bUm" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CE" }, /turf/simulated/floor/plating, @@ -39822,7 +39832,7 @@ d2 = 8; icon_state = "1-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Interrogation" }, /turf/simulated/floor/plating, @@ -40163,7 +40173,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CE" }, /turf/simulated/floor/plating, @@ -40180,7 +40190,7 @@ d2 = 8; icon_state = "1-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CE" }, /turf/simulated/floor/plating, @@ -40190,7 +40200,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CE" }, /turf/simulated/floor/plating, @@ -40386,6 +40396,10 @@ id_tag = "hop"; name = "Privacy Shutters" }, +/obj/machinery/door/window/reinforced/normal{ + name = "Head of Personnel's Desk"; + dir = 4 + }, /turf/simulated/floor/plasteel/dark, /area/station/command/office/hop) "bWQ" = ( @@ -40957,7 +40971,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/shutters/preopen{ dir = 8; id_tag = "hop"; @@ -41447,7 +41461,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/smes) "bZD" = ( @@ -43079,7 +43093,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/smes) "cdo" = ( @@ -43209,7 +43223,6 @@ /area/station/command/office/hop) "cdI" = ( /obj/machinery/door/window{ - dir = 2; name = "Desk Door" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/command/ntrep, @@ -43284,7 +43297,6 @@ /area/station/command/office/blueshield) "cdS" = ( /obj/machinery/door/window{ - dir = 2; name = "Desk Door" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/command/blueshield, @@ -43578,6 +43590,13 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, +/obj/machinery/door/window/reinforced/normal{ + dir = 8; + name = "Evidence Storage" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/doors{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -44305,10 +44324,6 @@ icon_state = "bot" }, /area/station/hallway/primary/central) -"cgG" = ( -/obj/effect/spawner/window/reinforced/plasma, -/turf/simulated/floor/plating, -/area/station/engineering/control) "cgI" = ( /obj/machinery/ai_status_display{ pixel_y = -32 @@ -44505,7 +44520,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "NT" }, /turf/simulated/floor/plating, @@ -44525,7 +44540,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "NT" }, /turf/simulated/floor/plating, @@ -44535,7 +44550,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "NT" }, /turf/simulated/floor/plating, @@ -45123,7 +45138,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "BS" }, /turf/simulated/floor/plating, @@ -45776,7 +45791,7 @@ /area/station/command/office/hop) "ckt" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "NT" }, /turf/simulated/floor/plating, @@ -45822,7 +45837,7 @@ /area/station/command/office/blueshield) "ckx" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "BS" }, /turf/simulated/floor/plating, @@ -46249,7 +46264,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/range) "clo" = ( @@ -47315,7 +47330,6 @@ /obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot, /obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Security Delivery" }, /turf/simulated/floor/plasteel, @@ -47334,7 +47348,7 @@ /area/station/maintenance/starboard2) "cnU" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/range) "cnV" = ( @@ -47573,7 +47587,7 @@ /area/station/service/library) "coA" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; id_tag = "hop"; @@ -47603,7 +47617,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/central/south) "coD" = ( @@ -47647,7 +47661,7 @@ /area/station/command/teleporter) "coH" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/teleporter) "coI" = ( @@ -47765,7 +47779,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "cpa" = ( @@ -47850,7 +47864,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/engineering/control) "cpk" = ( @@ -48619,7 +48633,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "cqJ" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "cqK" = ( @@ -49240,7 +49254,7 @@ /area/station/maintenance/starboard2) "csg" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "csh" = ( @@ -49504,7 +49518,7 @@ /turf/simulated/floor/plasteel, /area/station/command/teleporter) "csM" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /obj/machinery/door/poddoor{ density = 0; @@ -49517,7 +49531,7 @@ /area/station/security/prison/cell_block) "csN" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/central/south) "csO" = ( @@ -50007,7 +50021,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/central/south) "cua" = ( @@ -50113,7 +50127,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/central/south) "cuk" = ( @@ -50740,7 +50754,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/ai_monitored/storage/eva) "cvD" = ( @@ -50782,7 +50796,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/service/expedition) "cvJ" = ( @@ -50828,7 +50842,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/service/expedition) "cvQ" = ( @@ -51042,7 +51056,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/hardsuitstorage) "cwy" = ( @@ -51316,7 +51330,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/robotics/showroom) "cxa" = ( @@ -51398,7 +51412,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/service/expedition) "cxk" = ( @@ -51594,7 +51608,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/hardsuitstorage) "cxL" = ( @@ -52801,14 +52815,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/public/fitness) "cAx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/public/fitness) "cAy" = ( @@ -52821,7 +52835,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/public/fitness) "cAA" = ( @@ -52901,7 +52915,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/hardsuitstorage) "cAJ" = ( @@ -53478,7 +53492,7 @@ /area/station/public/fitness) "cCa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/public/fitness) "cCb" = ( @@ -53596,7 +53610,7 @@ /area/station/maintenance/port) "cCr" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/hardsuitstorage) "cCs" = ( @@ -53809,7 +53823,7 @@ /area/station/hallway/primary/central) "cCZ" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/service/expedition) "cDa" = ( @@ -54157,7 +54171,7 @@ /area/station/ai_monitored/storage/eva) "cEe" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/robotics/showroom) "cEg" = ( @@ -54165,7 +54179,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/robotics/showroom) "cEh" = ( @@ -54180,7 +54194,7 @@ icon_state = "1-8" }, /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/robotics/showroom) "cEi" = ( @@ -54188,7 +54202,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/robotics/showroom) "cEj" = ( @@ -54299,7 +54313,6 @@ /obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot, /obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/general, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Engineering Delivery" }, /turf/simulated/floor/plasteel, @@ -56615,7 +56628,7 @@ /turf/simulated/floor/plasteel, /area/station/public/fitness) "cJK" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/port) "cJL" = ( @@ -57277,7 +57290,7 @@ /area/station/science/robotics/chargebay) "cLw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/public/fitness) "cLx" = ( @@ -57876,7 +57889,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/xenobiology) "cNq" = ( @@ -57909,7 +57922,7 @@ icon_state = "0-8" }, /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/xenobiology) "cNs" = ( @@ -57966,7 +57979,7 @@ icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/xenobiology) "cNw" = ( @@ -57974,7 +57987,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/xenobiology) "cND" = ( @@ -58556,7 +58569,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/xenobiology) "cOL" = ( @@ -58889,7 +58902,7 @@ /turf/simulated/floor/wood, /area/station/medical/psych) "cPS" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "cPT" = ( @@ -59095,21 +59108,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/public/fitness) "cQq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/public/fitness) "cQr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/public/fitness) "cQs" = ( @@ -59196,7 +59209,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/xenobiology) "cQF" = ( @@ -60348,7 +60361,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/xenobiology) "cTr" = ( @@ -60529,8 +60542,7 @@ /obj/item/folder, /obj/item/pen, /obj/machinery/door/window/classic/normal{ - name = "Research Lab Desk"; - dir = 2 + name = "Research Lab Desk" }, /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; @@ -60681,7 +60693,6 @@ name = "Chemistry Desk Shutters" }, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Chemistry Desk" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry, @@ -60697,8 +60708,7 @@ /obj/machinery/door/firedoor, /obj/item/pen, /obj/machinery/door/window/classic/normal{ - name = "Chemistry Desk"; - dir = 2 + name = "Chemistry Desk" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, @@ -60738,8 +60748,7 @@ /obj/machinery/door/firedoor, /obj/item/pen, /obj/machinery/door/window/classic/normal{ - name = "Medbay Desk"; - dir = 2 + name = "Medbay Desk" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, /obj/effect/decal/warning_stripes/yellow, @@ -60753,8 +60762,7 @@ /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/window/classic/normal{ - name = "Medbay Desk"; - dir = 2 + name = "Medbay Desk" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, /obj/effect/decal/warning_stripes/yellow, @@ -61135,7 +61143,7 @@ /area/station/maintenance/electrical) "cUT" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/xenobiology) "cUU" = ( @@ -61790,7 +61798,7 @@ icon_state = "0-4" }, /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/xenobiology) "cWE" = ( @@ -62929,8 +62937,7 @@ /obj/item/folder/white, /obj/item/pen, /obj/machinery/door/window/classic/normal{ - name = "Medbay Desk"; - dir = 2 + name = "Medbay Desk" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -63687,7 +63694,7 @@ }, /area/station/maintenance/starboard) "dbz" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/abandonedbar) "dbA" = ( @@ -65308,7 +65315,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "RD" }, /turf/simulated/floor/plating, @@ -65318,7 +65325,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "RD" }, /turf/simulated/floor/plating, @@ -65333,7 +65340,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "RD" }, /turf/simulated/floor/plating, @@ -65348,7 +65355,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "RD" }, /turf/simulated/floor/plating, @@ -66309,7 +66316,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "RD" }, /turf/simulated/floor/plating, @@ -67445,10 +67452,6 @@ /obj/effect/landmark/start/roboticist, /turf/simulated/floor/plasteel, /area/station/science/robotics/chargebay) -"dlc" = ( -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/maintenance/apmaint) "dld" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -68373,7 +68376,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /turf/simulated/floor/plating, @@ -69340,7 +69343,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "RD" }, /turf/simulated/floor/plating, @@ -69558,7 +69561,7 @@ /area/station/medical/medbay) "dqG" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /turf/simulated/floor/plating, @@ -70552,7 +70555,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /turf/simulated/floor/plating, @@ -70761,7 +70764,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/research) "dtI" = ( @@ -71327,7 +71330,7 @@ /area/station/command/office/rd) "dvg" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "RD" }, /turf/simulated/floor/plating, @@ -71608,7 +71611,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/research) "dvQ" = ( @@ -72398,7 +72401,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/server) "dyJ" = ( @@ -72425,7 +72428,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/server) "dyL" = ( @@ -72478,7 +72481,6 @@ /obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/robotics, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Robotics Delivery" }, /turf/simulated/floor/plasteel, @@ -74115,7 +74117,7 @@ /turf/simulated/wall, /area/station/maintenance/aft) "dEq" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/aft) "dEr" = ( @@ -74137,7 +74139,7 @@ }, /area/station/medical/medbay) "dEt" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/service/theatre) "dEu" = ( @@ -74379,7 +74381,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/primary/aft) "dFC" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/aft) "dFE" = ( @@ -74404,7 +74406,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/medical/virology) "dFI" = ( @@ -74412,7 +74414,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/medical/virology) "dFJ" = ( @@ -74425,7 +74427,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/medical/virology) "dFO" = ( @@ -74487,7 +74489,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /turf/simulated/floor/plating, @@ -74807,7 +74809,7 @@ name = "Security Blast Door"; opacity = 0 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -75111,7 +75113,7 @@ /area/station/maintenance/apmaint) "dIc" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/medical/virology) "dId" = ( @@ -75334,11 +75336,11 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "dIO" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "dIW" = ( @@ -75812,7 +75814,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/medical/virology) "dKD" = ( @@ -77341,7 +77343,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "dOD" = ( @@ -77365,7 +77367,7 @@ d2 = 4; icon_state = "1-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/medical/virology) "dOF" = ( @@ -77642,7 +77644,7 @@ }, /area/station/medical/virology) "dPp" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "dPq" = ( @@ -77892,7 +77894,7 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/medical/virology) "dPU" = ( @@ -77952,7 +77954,7 @@ "dQc" = ( /obj/structure/barricade/wooden, /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "dQd" = ( @@ -78127,7 +78129,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/medical/virology) "dQw" = ( @@ -78248,7 +78250,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/medical/virology) "dQI" = ( @@ -78879,7 +78881,7 @@ name = "Security Blast Door"; opacity = 0 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /obj/structure/cable{ d1 = 1; @@ -79062,7 +79064,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "dTa" = ( @@ -79273,7 +79275,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "dTF" = ( @@ -79337,11 +79339,11 @@ /area/station/maintenance/portsolar) "dTW" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "dTX" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/service/chapel/office) "dTY" = ( @@ -79575,7 +79577,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "dUD" = ( @@ -79833,7 +79835,7 @@ icon_state = "1-2" }, /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "dVv" = ( @@ -80091,7 +80093,7 @@ /area/station/hallway/secondary/exit) "dWI" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "dWK" = ( @@ -81140,7 +81142,7 @@ name = "Security Blast Door"; opacity = 0 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -81262,6 +81264,10 @@ icon_state = "dark" }, /area/station/security/main) +"emu" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/prisonershuttle) "emI" = ( /obj/machinery/economy/arcade/claw, /obj/machinery/firealarm{ @@ -81457,6 +81463,10 @@ icon_state = "purplecorner" }, /area/station/hallway/primary/central) +"eyS" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) "ezR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -81918,7 +81928,7 @@ /area/station/security/warden) "fcg" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "fdI" = ( @@ -81948,7 +81958,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "feI" = ( @@ -82326,7 +82336,7 @@ opacity = 0 }, /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "fAb" = ( @@ -82398,7 +82408,7 @@ d2 = 8; icon_state = "1-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/warden) "fDS" = ( @@ -82504,6 +82514,10 @@ }, /obj/item/folder/red, /obj/item/folder/red, +/obj/machinery/door/window/reinforced/normal{ + dir = 1; + name = "Security Reception" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "redcorner" @@ -82753,6 +82767,10 @@ icon_state = "neutralcorner" }, /area/station/public/fitness) +"fRL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) "fRQ" = ( /obj/machinery/economy/vending/coffee, /obj/machinery/firealarm{ @@ -82842,7 +82860,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/brig) "fVi" = ( @@ -82903,7 +82921,7 @@ }, /area/station/maintenance/fsmaint) "gcN" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d1 = 2; d2 = 4; @@ -83034,8 +83052,8 @@ }, /area/station/security/main) "gpn" = ( -/obj/effect/spawner/window/reinforced/plasma, /obj/machinery/atmospherics/pipe/simple/insulated, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/mixing) "gpU" = ( @@ -83101,6 +83119,10 @@ icon_state = "neutralfull" }, /area/station/hallway/primary/fore) +"guY" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/primary/starboard) "gvO" = ( /obj/effect/turf_decal, /obj/effect/decal/cleanable/dirt, @@ -83141,7 +83163,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "gxu" = ( @@ -83185,8 +83207,7 @@ name = "Toxins Launcher" }, /obj/machinery/door/window/classic/reversed{ - name = "Toxins Launcher"; - dir = 2 + name = "Toxins Launcher" }, /turf/simulated/floor/plating, /area/station/science/toxins/launch) @@ -83233,7 +83254,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "gFm" = ( @@ -83273,7 +83294,6 @@ }, /area/station/security/permasolitary) "gHy" = ( -/obj/effect/spawner/window/reinforced/plasma, /obj/machinery/computer/security/telescreen{ desc = "Used for watching the test chamber."; dir = 4; @@ -83281,6 +83301,7 @@ name = "Test Chamber Telescreen"; network = list("Toxins") }, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/launch) "gHB" = ( @@ -83461,7 +83482,7 @@ /turf/simulated/wall/r_wall, /area/station/science/toxins/launch) "gSt" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -83677,7 +83698,7 @@ }, /area/station/science/research) "hdV" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -83848,6 +83869,13 @@ }, /turf/simulated/floor/plasteel, /area/station/public/storage/art) +"hpV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) "hqk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -84181,7 +84209,7 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "hLU" = ( @@ -84236,7 +84264,7 @@ d2 = 8; icon_state = "1-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/medical/virology) "hMD" = ( @@ -84337,9 +84365,13 @@ icon_state = "seadeep" }, /area/station/public/fitness) +"hSu" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) "hTk" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -84398,7 +84430,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "hXw" = ( @@ -84468,6 +84500,10 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/research) +"hZO" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/primary/central) "hZR" = ( /obj/structure/chair/stool{ dir = 4 @@ -84834,7 +84870,7 @@ name = "Security Blast Door"; opacity = 0 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "ipZ" = ( @@ -84844,6 +84880,10 @@ "iqc" = ( /turf/simulated/wall, /area/station/science/break_room) +"iqm" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) "iqq" = ( /obj/effect/decal/warning_stripes/east, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -85511,7 +85551,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "jhk" = ( @@ -85733,7 +85773,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Detective" }, /turf/simulated/floor/plating, @@ -85762,7 +85802,7 @@ }, /area/station/hallway/secondary/entry) "jvW" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -85776,6 +85816,13 @@ }, /turf/simulated/floor/plating, /area/station/security/storage) +"jwf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) "jzV" = ( /obj/machinery/sparker{ id = "toxinsigniter"; @@ -85801,7 +85848,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "jBy" = ( @@ -85820,7 +85867,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -86219,15 +86266,14 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/main) "jYY" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/window/classic/normal{ - name = "Medbay Desk"; - dir = 2 + name = "Medbay Desk" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, /obj/item/paper_bin, @@ -86579,8 +86625,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "kyU" = ( -/obj/effect/spawner/window/reinforced, /obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/port) "kBZ" = ( @@ -86678,6 +86724,10 @@ icon_state = "wood-broken6" }, /area/station/maintenance/library) +"kLf" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) "kLu" = ( /obj/machinery/airlock_controller/access_controller{ name = "Virology Lab Access Console"; @@ -87002,7 +87052,7 @@ /turf/simulated/wall, /area/station/public/pet_store) "lht" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -87070,7 +87120,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "llm" = ( @@ -87536,7 +87586,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "lNl" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /turf/simulated/floor/plating, /area/station/security/brig) @@ -87769,6 +87819,10 @@ icon_state = "neutralfull" }, /area/station/hallway/primary/starboard) +"meH" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/control) "meU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -88068,7 +88122,7 @@ /area/station/science/toxins/test) "mtE" = ( /obj/structure/sign/vacuum/external, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/supply/storage) "mtL" = ( @@ -88234,7 +88288,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/execution) "mGS" = ( @@ -88509,6 +88563,10 @@ }, /turf/simulated/floor/engine, /area/station/science/test_chamber) +"mTg" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) "mTs" = ( /turf/simulated/floor/plasteel{ dir = 8; @@ -88636,7 +88694,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/primary/aft) "naX" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -89186,7 +89244,7 @@ d2 = 4; icon_state = "1-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/medical/virology) "nGL" = ( @@ -89251,6 +89309,13 @@ }, /obj/effect/decal/warning_stripes/yellow, /obj/machinery/door/firedoor, +/obj/machinery/door/window/reinforced/normal{ + name = "Secure Armory" + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 1; + name = "Secure Armory" + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -89542,7 +89607,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "obL" = ( @@ -89921,7 +89986,7 @@ /turf/simulated/floor/plasteel, /area/station/science/toxins/launch) "oxO" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) @@ -90076,10 +90141,6 @@ }, /turf/simulated/floor/plasteel/white, /area/station/medical/virology) -"oEG" = ( -/obj/structure/grille, -/turf/simulated/floor/plating/airless, -/area/space/nearstation) "oFL" = ( /obj/machinery/power/apc{ dir = 8; @@ -90274,7 +90335,7 @@ /area/station/security/prison/cell_block) "oSH" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "oTo" = ( @@ -91218,7 +91279,7 @@ opacity = 0 }, /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/storage) "pSX" = ( @@ -91248,10 +91309,6 @@ }, /turf/simulated/floor/engine, /area/station/science/test_chamber) -"pUv" = ( -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/hallway/primary/starboard) "pUB" = ( /obj/machinery/atmospherics/unary/portables_connector, /turf/simulated/floor/plasteel{ @@ -91339,7 +91396,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "pWT" = ( @@ -91348,7 +91405,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "pXX" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -91377,7 +91434,7 @@ }, /area/station/security/prison/cell_block) "pYY" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" }, /obj/structure/cable{ @@ -91398,7 +91455,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permasolitary) "pZI" = ( @@ -91446,7 +91503,7 @@ /turf/space, /area/space) "qdl" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -91534,7 +91591,7 @@ name = "Security Blast Door"; opacity = 0 }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Magistrate" }, /turf/simulated/floor/plating, @@ -91626,7 +91683,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "qmW" = ( @@ -91921,6 +91978,10 @@ /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel, /area/station/maintenance/port) +"qIx" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/virology) "qIZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -91961,7 +92022,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "qKw" = ( @@ -92091,7 +92152,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "qUB" = ( @@ -92665,6 +92726,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) +"rtS" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/fitness) "rvc" = ( /turf/simulated/wall/r_wall, /area/space/nearstation) @@ -92772,10 +92837,6 @@ /obj/effect/decal/warning_stripes/west, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) -"rDp" = ( -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/maintenance/fsmaint) "rDQ" = ( /mob/living/carbon/human/monkey, /turf/simulated/floor/engine, @@ -92884,7 +92945,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Detective" }, /turf/simulated/floor/plating, @@ -93194,7 +93255,7 @@ }, /area/station/hallway/secondary/entry) "shb" = ( -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/launch) "shi" = ( @@ -93209,7 +93270,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "shs" = ( @@ -93248,14 +93309,6 @@ icon_state = "darkblue" }, /area/station/ai_monitored/storage/eva) -"siv" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA" - }, -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) "siJ" = ( /obj/machinery/economy/vending/medical, /obj/machinery/light{ @@ -94099,7 +94152,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d1 = 2; d2 = 4; @@ -94510,7 +94563,7 @@ name = "Security Blast Door"; opacity = 0 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -94880,8 +94933,8 @@ /turf/simulated/floor/plasteel/dark, /area/station/service/theatre) "tTk" = ( -/obj/effect/spawner/window/reinforced/plasma, /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/mixing) "tTM" = ( @@ -95739,6 +95792,14 @@ /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/plasteel, /area/station/security/permabrig) +"uUV" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) "uUX" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -95860,7 +95921,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -96067,6 +96128,10 @@ /obj/effect/landmark/spawner/rev, /turf/simulated/floor/engine, /area/station/science/test_chamber) +"vqY" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) "vrB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ @@ -96259,6 +96324,14 @@ }, /obj/effect/decal/warning_stripes/yellow, /obj/machinery/door/firedoor, +/obj/machinery/door/window/reinforced/normal{ + name = "Warden's Desk"; + dir = 4 + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 8; + name = "Warden's Desk" + }, /turf/simulated/floor/plasteel{ icon_state = "darkredfull" }, @@ -96833,7 +96906,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" }, /turf/simulated/floor/plating, @@ -97500,6 +97573,11 @@ icon_state = "red" }, /area/station/security/permabrig) +"xdc" = ( +/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical_shop) "xdd" = ( /obj/effect/spawner/random_spawners/wall_rusted_maybe, /turf/simulated/wall, @@ -97814,7 +97892,7 @@ name = "Security Blast Door"; opacity = 0 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -97841,6 +97919,10 @@ }, /turf/simulated/wall, /area/station/security/permabrig) +"xDz" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/supply/miningdock) "xDF" = ( /turf/simulated/floor/plasteel{ icon_state = "whitebluecorner" @@ -98217,7 +98299,7 @@ /area/station/science/explab) "xXw" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" }, /turf/simulated/floor/plating, @@ -98299,7 +98381,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "ydY" = ( @@ -111414,9 +111496,9 @@ aaa aaa abj abj -dyo +eyS dyn -dyo +eyS abj abj aaa @@ -111671,9 +111753,9 @@ aaa abj abj dyn -dyo +eyS dCy -dyo +eyS dyn abj abj @@ -111926,13 +112008,13 @@ aaa aaa abj abj -dyo -dyo +eyS +eyS dBE dCz dEc -dyo -dyo +eyS +eyS abj abj aaa @@ -112439,7 +112521,7 @@ aaa aaa aaa aaa -dyo +eyS dzv dAH dAH @@ -112447,7 +112529,7 @@ mtx dAH dAH dFf -dyo +eyS aaa aaa aaa @@ -112959,8 +113041,8 @@ dyo dCA dAH dEK -dyo -dyo +eyS +eyS abj abj aaa @@ -113213,9 +113295,9 @@ aaa abj abj dyn -dyo +eyS dAH -dyo +eyS dyn abj abj @@ -113470,9 +113552,9 @@ aaa aaa abj abj -dyo +eyS dDP -dyo +eyS abj abj aaa @@ -121348,21 +121430,21 @@ aOb aOg aOg aOg -bmN -aOb +hpV +mTg baj aYO -bmN -aOb +hpV +mTg baj aYO -bmN -aOb +hpV +mTg baj aOg baj -aOb -bmN +mTg +hpV aOg aOg bwP @@ -122159,13 +122241,13 @@ cdc abj cif cda -cgG -cgG -cgG +meH +meH +meH cpj -cgG -cgG -cgG +meH +meH +meH cda cif abj @@ -122413,19 +122495,19 @@ bZp hLU bXU bXU -cgG -cgG -cgG -cgG +meH +meH +meH +meH cmQ cpi crd cpi csp -cgG -cgG -cgG -cgG +meH +meH +meH +meH bXU bXU uVM @@ -122612,15 +122694,15 @@ aaa abj atd atd -axl +hSu axH -axl -axl +hSu +hSu atd atd -axl -axl -axl +hSu +hSu +hSu axH atd aGZ @@ -122673,13 +122755,13 @@ ceU cib cib cib -cgG +meH cmR cod cpl cqR csq -cgG +meH cib cib cib @@ -126743,19 +126825,19 @@ aOl aOg aOg aOg -aUi -aOb -aUi +jwf +mTg +jwf aYO -bmN -aOb +hpV +mTg baj aYO -bmN -aOb +hpV +mTg baj aOg -bmN +hpV aOg btw brR @@ -127245,8 +127327,8 @@ ayU atd aCk aDg -axl -axl +hSu +hSu atd atd atd @@ -128144,7 +128226,7 @@ dOQ kep dbp dSn -dlc +vqY abj aaa aaa @@ -128401,7 +128483,7 @@ dEi dOO djA dSp -dlc +vqY abj abj abj @@ -129258,10 +129340,10 @@ aaa abj abj abj -acC +iqm aef aef -acC +iqm abj abj abj @@ -129278,9 +129360,9 @@ abj abj abj abj -acC +iqm udZ -siv +uUV abj abj abj @@ -129515,29 +129597,29 @@ abj abj aaa aaa -acC +iqm afb afb -acC +iqm abj aaa aaa aaa aaa abj -acC -acC -acC -acC -acC -acC +iqm +iqm +iqm +iqm +iqm +iqm aaa aaa aaa abj -acC +iqm vcx -acC +iqm aaa aaa aaa @@ -129767,34 +129849,34 @@ aaa aaa aaa adb -acC +iqm adb -acC -acC -acC -acC +iqm +iqm +iqm +iqm aef aef adb -acC -acC +iqm +iqm adb -acC -acC -acC -acC +iqm +iqm +iqm +iqm aik aiE afb ajf -acC -acC -acC +iqm +iqm +iqm acC adb -acC +iqm xPJ -acC +iqm adb adb adb @@ -130021,9 +130103,9 @@ aaa aaa aaa aaa -acC -acC -acC +iqm +iqm +iqm vIN tXb adZ @@ -130535,9 +130617,9 @@ aaa aaa aaa aaa -acC -acC -acC +iqm +iqm +iqm adu sMV aeb @@ -130795,32 +130877,32 @@ aaa aaa aaa adb -acC +iqm adb -acC -acC -acC +iqm +iqm +iqm adb -acC -acC +iqm +iqm adb -acC -acC +iqm +iqm adb -acC -acC -acC -acC +iqm +iqm +iqm +iqm aio aiF aiI ajy -acC -acC -acC -acC +iqm +iqm +iqm +iqm adb -acC +iqm adb adb adb @@ -130829,7 +130911,7 @@ anK adb aaa apH -apH +xdc apH apH apG @@ -131067,12 +131149,12 @@ abj aaa aaa abj -acC -acC -acC -acC -acC -acC +iqm +iqm +iqm +iqm +iqm +iqm abj aaa abj @@ -131337,7 +131419,7 @@ abj abj abj abj -acC +iqm ant anP adb @@ -131484,7 +131566,7 @@ dEi dXs dbp dSn -dlc +vqY abj aaa aaa @@ -131594,7 +131676,7 @@ aaa aaa abj aaa -acC +iqm ant anP adb @@ -131741,7 +131823,7 @@ dbp dOO djA dRL -dlc +vqY abj abj abj @@ -131851,7 +131933,7 @@ aaa aaa abj aaa -acC +iqm ant anJ dyU @@ -132108,7 +132190,7 @@ aaa aaa abj aaa -acC +iqm ant anP adb @@ -132365,7 +132447,7 @@ aaa aaa abj aaa -acC +iqm ant anP aoo @@ -132622,7 +132704,7 @@ aaa aaa abj aaa -acC +iqm ant anP aoo @@ -133393,7 +133475,7 @@ aaa aaa abj aaa -acC +iqm ant anP aoo @@ -133650,7 +133732,7 @@ aaa aaa abj aaa -acC +iqm ant rBP aoo @@ -133907,7 +133989,7 @@ aaa aaa abj aaa -acC +iqm ant anP aoo @@ -134164,7 +134246,7 @@ aaa aaa abj aaa -acC +iqm ant alm ahy @@ -134213,9 +134295,9 @@ boo bqu hQe bsv -btH -btH -btH +hZO +hZO +hZO bwf bAr bCl @@ -134421,7 +134503,7 @@ aaa aaa abj aaa -acC +iqm akG als aoo @@ -134469,7 +134551,7 @@ aYZ boo bqu bIX -btH +hZO aaa abj aaa @@ -134663,22 +134745,22 @@ abj abj abj abj -acC +iqm ahz -acC +iqm abj abj abj abj -acC +iqm pHg -acC +iqm abj abj abj abj abj -acC +iqm ant anP aoo @@ -134726,7 +134808,7 @@ aYZ boo bqu bIX -btH +hZO aaa abj aaa @@ -134920,16 +135002,16 @@ aaa aaa abj aaa -acC +iqm afb -acC -acC -acC -acC -acC -acC +iqm +iqm +iqm +iqm +iqm +iqm afb -acC +iqm aaa abj aaa @@ -134983,7 +135065,7 @@ aYZ bop bqu bIX -btH +hZO aaa abj aaa @@ -135173,24 +135255,24 @@ adb adb adb adb -acC -acC +iqm +iqm adb -acC -acC +iqm +iqm ahz -acC +iqm aio aiH aiX ajy -acC +iqm pHg -acC -acC +iqm +iqm adb -acC -acC +iqm +iqm adb adb anp @@ -135497,7 +135579,7 @@ bmZ boo bqu bIX -btH +hZO aaa abj aaa @@ -135754,7 +135836,7 @@ bmZ boq bqq bIX -btH +hZO aaa abj aaa @@ -136011,7 +136093,7 @@ bmZ boo bqu bIX -btH +hZO aaa abj aaa @@ -136201,24 +136283,24 @@ adb adb adb adb -acC -acC +iqm +iqm adb -acC -acC +iqm +iqm ahA -acC +iqm aio aiI aiI ajy -acC +iqm ahA -acC -acC +iqm +iqm adb -acC -acC +iqm +iqm adb amN ant @@ -136462,16 +136544,16 @@ aaa aaa abj aaa -acC +iqm afb -acC -acC -acC -acC -acC -acC +iqm +iqm +iqm +iqm +iqm +iqm afb -acC +iqm aaa abj aaa @@ -136525,7 +136607,7 @@ bmZ boo bqu bIX -btH +hZO aaa bwc bqy @@ -136719,22 +136801,22 @@ abj abj abj abj -acC +iqm ahA -acC +iqm abj aaa aaa abj -acC +iqm ahA -acC +iqm abj abj abj abj abj -acC +iqm ant anP aop @@ -136782,7 +136864,7 @@ bmZ boo bqu bIX -btH +hZO aaa bwd bxm @@ -137039,7 +137121,7 @@ bmZ boo bqu bIX -btH +hZO aaa bwd bxn @@ -137248,7 +137330,7 @@ aaa aaa aaa aaa -acC +iqm anl anR asB @@ -137296,7 +137378,7 @@ aYZ fJp bqu bIX -btH +hZO aaa bwe bxo @@ -137505,7 +137587,7 @@ agE agF agE aaa -acC +iqm ant anT aow @@ -137762,7 +137844,7 @@ alv alH agF aaa -acC +iqm ant anT joU @@ -137810,7 +137892,7 @@ byN boo bqu bsm -btH +hZO aaa bwg bxq @@ -138019,7 +138101,7 @@ alw alH agF aaa -acC +iqm ant anU lML @@ -138067,7 +138149,7 @@ bMa bot bqt bsl -btH +hZO aaa bwh bxr @@ -138276,7 +138358,7 @@ alv alH agF aaa -acC +iqm ant anT wEA @@ -138324,7 +138406,7 @@ bMb bov aXY bsm -btH +hZO aaa bwi bxs @@ -138533,7 +138615,7 @@ agE agF agE aaa -acC +iqm ant anT aoA @@ -138790,7 +138872,7 @@ aaa aaa aaa aaa -acC +iqm ant anT aea @@ -138838,7 +138920,7 @@ bfq bov aXY bwm -btH +hZO aaa bwj bxu @@ -139095,7 +139177,7 @@ bfq bov aXY bwm -btH +hZO aaa bwk bxv @@ -139289,22 +139371,22 @@ abj abj abj abj -acC +iqm ahF -acC +iqm abj aaa aaa abj -acC +iqm ahF -acC +iqm abj abj abj abj abj -acC +iqm ant anP aoC @@ -139352,7 +139434,7 @@ bhU bov aXY bwm -btH +hZO aaa bwk bxw @@ -139546,16 +139628,16 @@ abj aaa aaa aaa -acC +iqm afb -acC -acC -acC -acC -acC -acC +iqm +iqm +iqm +iqm +iqm +iqm afb -acC +iqm aaa abj aaa @@ -139609,7 +139691,7 @@ bhU bov aXY bwm -btH +hZO aaa bwl bqy @@ -139803,20 +139885,20 @@ aaa abj abj aaa -acC +iqm ahF -acC +iqm pWw tRa ajd ajy -acC +iqm ahF -acC -acC +iqm +iqm adb -acC -acC +iqm +iqm adb amN ant @@ -140060,7 +140142,7 @@ aaa aaa aaa abj -acC +iqm aip afJ adZ @@ -140123,7 +140205,7 @@ bhU bov aXY bwm -btH +hZO aaa abj aaa @@ -140317,7 +140399,7 @@ aaa aaa aaa aaa -acC +iqm aFB ajZ ajZ @@ -140380,7 +140462,7 @@ bhU box bqx bwm -btH +hZO aaa abj aaa @@ -140574,7 +140656,7 @@ aaa aaa aaa aaa -acC +iqm aec akb aeb @@ -140637,7 +140719,7 @@ bfq bov aXY bwm -btH +hZO aaa abj aaa @@ -141151,7 +141233,7 @@ bdU boy aXY bwm -btH +hZO aaa abj aaa @@ -141408,7 +141490,7 @@ bbe boz aXY bwm -btH +hZO aaa abj aaa @@ -141665,7 +141747,7 @@ bbe boy aXY bwm -btH +hZO aaa abj aaa @@ -141923,9 +142005,9 @@ bov aXY ado bsv -btH -btH -btH +hZO +hZO +hZO bwf bAr bCl @@ -143208,11 +143290,11 @@ boK eNt bsv bsv -btH -btH +hZO +hZO bxA -btH -btH +hZO +hZO bsv bsv bgs @@ -143466,9 +143548,9 @@ eNt aaa abj aaa -btH +hZO bxA -btH +hZO aaa abj aaa @@ -144198,7 +144280,7 @@ abj acF acF abj -asc +fRL azf axy asd @@ -144451,9 +144533,9 @@ aph apY axm abj -asc -asc -asc +fRL +fRL +fRL uBS avs awB @@ -144708,7 +144790,7 @@ dZP dZS axm abj -asc +fRL asP uOZ auz @@ -144965,7 +145047,7 @@ dZR dZU axm abj -asc +fRL asQ auA awA @@ -145252,10 +145334,10 @@ aSb aSb aSb aSa -bbi +xDz bes -bbi -bbi +xDz +xDz bbe eNt eNt @@ -145479,7 +145561,7 @@ axm axm axm abj -asc +fRL aqG atV auB @@ -145736,14 +145818,14 @@ aaa aaa aaa abj -asc +fRL aqG aus auC avw ayH aCm -asc +fRL aaa aaa aaa @@ -146000,7 +146082,7 @@ auZ awE azS axD -asc +fRL aaa aaa aaa @@ -146039,7 +146121,7 @@ gxu gcp ume uaL -rDp +kLf aaa aaa bLn @@ -146296,7 +146378,7 @@ eNt bfH ume oeH -rDp +kLf aaa aaa bLn @@ -146553,7 +146635,7 @@ aZu uvD bOl fmg -rDp +kLf aaa aaa bFV @@ -147315,9 +147397,9 @@ ahh bwA eNt eNt -rDp +kLf eNt -rDp +kLf eNt eNt xGw @@ -147548,9 +147630,9 @@ eNt eNt eNt aZu -rDp -rDp -rDp +kLf +kLf +kLf aZu eNt eNt @@ -147839,8 +147921,8 @@ aTE lBR lBR lBR -pUv -pUv +guY +guY btT bHR brj @@ -148347,7 +148429,7 @@ aaa aaa aaa aaa -pUv +guY lBR btV bxJ @@ -148444,7 +148526,7 @@ dWV dPV dQy dXg -dNr +qIx aaa aaa aaa @@ -148861,7 +148943,7 @@ aaa aaa aaa aaa -bqM +emu bno btW bvn @@ -148958,7 +149040,7 @@ dWW dPW dQz dXg -dNr +qIx aaa aaa aaa @@ -149349,8 +149431,8 @@ bWr weH weH eNt -rDp -rDp +kLf +kLf eNt aaa tgE @@ -149375,7 +149457,7 @@ aaa aaa aaa aaa -bqM +emu bno bvl vEh @@ -152489,7 +152571,7 @@ cmG cnU aaa aaa -csj +rtS xpq cuK uGY @@ -152512,7 +152594,7 @@ rZD cUE cWe uHo -csj +rtS aaa cqJ dcK @@ -152746,7 +152828,7 @@ cnF cjr abj abj -csj +rtS cty cuL ubW @@ -152769,7 +152851,7 @@ cIo cUF coQ cJz -csj +rtS abj cqJ dcL @@ -153003,7 +153085,7 @@ cmI cmI aaa aaa -csj +rtS cty cFK quv @@ -153026,7 +153108,7 @@ cTe cUG cOt cJz -csj +rtS aaa cqJ cqJ @@ -153517,7 +153599,7 @@ abj btJ abj abj -csj +rtS cFK cFK nuq @@ -153540,7 +153622,7 @@ cuM cUI cWf cAu -csj +rtS abj aaa aaa @@ -153774,7 +153856,7 @@ aaa aaa aaa aaa -csj +rtS msA cFK nuq @@ -153797,7 +153879,7 @@ cuM cUJ cWg cAu -csj +rtS abj aaa aaa @@ -154031,7 +154113,7 @@ abj btJ abj abj -csj +rtS cFK cFK nuq @@ -154054,7 +154136,7 @@ cTf cUK kjB cWh -csj +rtS abj aaa aaa @@ -154543,9 +154625,9 @@ aaa aaa abj abj -oEG +btJ abj -csj +rtS rEQ cFK nuq @@ -154568,7 +154650,7 @@ cWh cWh cWh cXO -csj +rtS abj aaa aaa @@ -154802,30 +154884,30 @@ jQY aaa aaa aaa -csj +rtS rEQ cFK erQ csi -csj -csj -csj -csj +rtS +rtS +rtS +rtS cFE csi csj csj csi cJE -csj -csj -csj -csj +rtS +rtS +rtS +rtS csi cFK cWi cXP -csj +rtS abj aaa aaa @@ -155059,30 +155141,30 @@ jQY aaa aaa aaa -csj +rtS rlS cuN cws -csj +rtS aaa aaa abj -csj +rtS cFF csi mcD mcD csi cJF -csj +rtS abj aaa aaa -csj +rtS cUO iVJ cXQ -csj +rtS abj aaa aaa @@ -155317,9 +155399,9 @@ aaa aaa abj csi -csj -csj -csj +rtS +rtS +rtS csi abj cAw @@ -155336,9 +155418,9 @@ cLw cQp abj csi -csj -csj -csj +rtS +rtS +rtS csi abj aaa @@ -155577,7 +155659,7 @@ abj abj abj abj -csj +rtS aaa cAx cCb @@ -155592,7 +155674,7 @@ cCb cCb cQq aaa -csj +rtS abj abj abj @@ -155834,7 +155916,7 @@ aaa aaa aaa abj -csj +rtS aaa cAx cCb @@ -155849,7 +155931,7 @@ cCb cCb cQq aaa -csj +rtS abj aaa aaa @@ -156091,7 +156173,7 @@ aaa abj abj abj -csj +rtS abj cAy cCc @@ -156106,7 +156188,7 @@ cCb cOw cwl abj -csj +rtS abj aaa aaa @@ -156348,7 +156430,7 @@ aaa aaa aaa abj -csj +rtS aaa cAx cCb @@ -156363,7 +156445,7 @@ cCb cCb cQq aaa -csj +rtS abj aaa aaa @@ -156605,7 +156687,7 @@ aaa aaa aaa abj -csj +rtS aaa cAx cCb @@ -156620,7 +156702,7 @@ cCb cCb cQq aaa -csj +rtS abj aaa aaa @@ -157119,22 +157201,22 @@ aaa aaa aaa abj -csj +rtS aaa aaa abj aaa -csj +rtS cFF csi csi cJF -csj +rtS aaa abj aaa aaa -csj +rtS abj aaa aaa @@ -157376,22 +157458,22 @@ aaa aaa aaa abj -csj -csj -csj -csj -csj -csj +rtS +rtS +rtS +rtS +rtS +rtS cFE csj csj cJE -csj -csj -csj -csj -csj -csj +rtS +rtS +rtS +rtS +rtS +rtS abj aaa aaa @@ -157638,12 +157720,12 @@ abj abj abj abj -csj +rtS cFI cHb cIr cJI -csj +rtS abj abj abj @@ -158152,12 +158234,12 @@ aaa aaa aaa aaa -csj +rtS cFK cHd cIt cFK -csj +rtS aaa aaa aaa @@ -158409,12 +158491,12 @@ aaa aaa aaa aaa -csj -csj -csj -csj -csj -csj +rtS +rtS +rtS +rtS +rtS +rtS aaa aaa aaa diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index becd45fa5cba..0cfa0a04c841 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -231,7 +231,6 @@ pixel_x = -3 }, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Kitchen" }, /obj/effect/mapping_helpers/airlock/autoname, @@ -541,8 +540,8 @@ /turf/simulated/floor/carpet, /area/station/legal/magistrate) "afq" = ( -/obj/effect/spawner/window/reinforced, /obj/effect/spawner/airlock/long, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "afw" = ( @@ -717,11 +716,11 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos/distribution) "agX" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarport) "agY" = ( @@ -1296,11 +1295,11 @@ /turf/simulated/wall, /area/station/security/brig) "akH" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/xenobio_north) "akI" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal) "akL" = ( @@ -1568,7 +1567,7 @@ }, /area/station/service/kitchen) "alL" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "alW" = ( @@ -1715,7 +1714,7 @@ /turf/simulated/wall/r_wall, /area/station/security/brig) "amE" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 2; d2 = 4; @@ -2066,7 +2065,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/auxsolarport) "anN" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -2333,12 +2332,12 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "ape" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "apg" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) "aph" = ( @@ -2876,7 +2875,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/gravitygenerator) "asj" = ( @@ -2884,7 +2883,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/gravitygenerator) "asu" = ( @@ -4517,7 +4516,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/gravitygenerator) "axQ" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -4553,7 +4552,7 @@ d2 = 8; icon_state = "1-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/sign/electricshock{ pixel_x = 32 }, @@ -4809,7 +4808,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/gravitygenerator) "ayK" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/supply/miningdock) "ayN" = ( @@ -4920,7 +4919,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CE" }, /turf/simulated/floor/plating, @@ -5596,7 +5595,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast"; name = "Bridge Blast Doors" @@ -5613,7 +5612,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast"; name = "Bridge Blast Doors" @@ -5837,7 +5836,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/hardsuitstorage) "aCU" = ( @@ -5860,7 +5859,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast"; name = "Bridge Blast Doors" @@ -6117,7 +6116,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast"; name = "Bridge Blast Doors" @@ -6157,7 +6156,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore) "aEf" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -6174,7 +6173,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast"; name = "Bridge Blast Doors" @@ -6304,7 +6303,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast"; name = "Bridge Blast Doors" @@ -6602,7 +6601,6 @@ "aFr" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Cargo Desk" }, /obj/item/paper_bin{ @@ -6701,7 +6699,7 @@ /turf/simulated/wall, /area/station/maintenance/fsmaint) "aFP" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -6878,14 +6876,14 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/sign/securearea{ pixel_y = 32 }, /turf/simulated/floor/plating, /area/station/supply/lobby) "aGw" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/public/construction) "aGy" = ( @@ -7149,7 +7147,7 @@ /turf/simulated/floor/plating, /area/station/engineering/control) "aHj" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -7338,7 +7336,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/supply/lobby) "aHV" = ( @@ -7400,7 +7398,7 @@ /area/station/science/xenobiology) "aIb" = ( /obj/structure/cable/yellow, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast"; name = "Bridge Blast Doors" @@ -7669,7 +7667,7 @@ d2 = 8; icon_state = "1-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast"; name = "Bridge Blast Doors" @@ -7768,7 +7766,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/sign/electricshock{ pixel_x = 32 }, @@ -7796,7 +7794,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/supply/lobby) "aJa" = ( @@ -8121,7 +8119,7 @@ /area/station/engineering/hardsuitstorage) "aJJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/engineering/control) "aJK" = ( @@ -8229,7 +8227,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast"; name = "Bridge Blast Doors" @@ -8333,7 +8331,7 @@ /area/station/supply/lobby) "aKk" = ( /obj/structure/cable/yellow, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/fore) "aKl" = ( @@ -8345,7 +8343,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fore2) "aKo" = ( @@ -8353,7 +8351,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/fore) "aKq" = ( @@ -8361,7 +8359,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "hop"; name = "privacy shutters" @@ -9065,7 +9063,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/turret_protected/ai_upload) "aMh" = ( @@ -9338,7 +9336,7 @@ icon_state = "1-4" }, /obj/structure/cable/yellow, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/turret_protected/ai_upload) "aMQ" = ( @@ -9428,15 +9426,13 @@ /turf/simulated/floor/plasteel, /area/station/engineering/control) "aMY" = ( -/obj/effect/spawner/window/reinforced/polarized{ - id = "qm" - }, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/spawner/window/reinforced/polarized/grilled, /turf/simulated/floor/plating, /area/station/supply/qm) "aMZ" = ( @@ -9596,7 +9592,7 @@ icon_state = "1-8" }, /obj/structure/cable/yellow, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/turret_protected/ai_upload) "aNq" = ( @@ -10266,7 +10262,7 @@ /area/station/public/construction) "aPC" = ( /obj/structure/cable/yellow, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "hop"; name = "privacy shutters" @@ -11353,7 +11349,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -11543,7 +11539,7 @@ /turf/simulated/floor/plasteel, /area/station/public/locker) "aTy" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -11779,7 +11775,7 @@ /area/station/supply/storage) "aTU" = ( /obj/structure/sign/vacuum/external, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/supply/storage) "aTV" = ( @@ -11987,7 +11983,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/central) "aUs" = ( @@ -12114,7 +12110,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/station/engineering/smes) @@ -13408,7 +13404,7 @@ /turf/simulated/floor/plasteel, /area/station/supply/office) "aYx" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/central) "aYy" = ( @@ -13854,7 +13850,7 @@ /turf/simulated/wall/r_wall, /area/station/hallway/primary/central) "aZK" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -14131,7 +14127,7 @@ /turf/simulated/wall/r_wall, /area/station/command/office/ce) "ban" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/sign/electricshock{ pixel_x = -32 }, @@ -14656,7 +14652,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/checkpoint/secondary) "bbM" = ( @@ -14730,7 +14726,7 @@ /turf/simulated/floor/plating/airless, /area/space/nearstation) "bcc" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) "bcd" = ( @@ -18021,7 +18017,7 @@ /area/station/engineering/break_room) "bjP" = ( /obj/structure/cable/yellow, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/checkpoint/secondary) "bjQ" = ( @@ -18428,10 +18424,8 @@ /turf/simulated/wall/r_wall, /area/station/command/bridge) "bkX" = ( -/obj/effect/spawner/window/reinforced/polarized{ - id = "qm" - }, /obj/structure/cable/yellow, +/obj/effect/spawner/window/reinforced/polarized/grilled, /turf/simulated/floor/plating, /area/station/supply/qm) "bkY" = ( @@ -18937,7 +18931,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast"; name = "Bridge Blast Doors" @@ -19504,10 +19498,6 @@ }, /turf/simulated/floor/plating/airless, /area/shuttle/arrival/station) -"bnI" = ( -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/maintenance/fsmaint) "bnJ" = ( /obj/structure/rack{ dir = 8; @@ -19711,7 +19701,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast"; name = "Bridge Blast Doors" @@ -20877,7 +20867,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos/distribution) "brc" = ( @@ -23457,7 +23447,7 @@ /area/station/aisat) "bxo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/purple, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/medical/virology) "bxp" = ( @@ -23803,7 +23793,6 @@ icon_state = "1-2" }, /obj/machinery/door/window{ - dir = 2; name = "HoP's Desk" }, /obj/effect/mapping_helpers/airlock/windoor/access/all/command/hop, @@ -24098,7 +24087,6 @@ /area/station/command/bridge) "byz" = ( /obj/machinery/door/window{ - dir = 2; name = "Captain's Desk" }, /obj/structure/cable/yellow{ @@ -24135,7 +24123,6 @@ /obj/item/folder/blue, /obj/machinery/door/window{ base_state = "right"; - dir = 2; icon_state = "right"; name = "Captain's Desk" }, @@ -24567,7 +24554,7 @@ /turf/simulated/wall, /area/station/service/library) "bzL" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "bzM" = ( @@ -26294,7 +26281,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/bridge) "bEx" = ( @@ -26302,7 +26289,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -26382,7 +26369,7 @@ id_tag = "council blast"; name = "Council Blast Doors" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bFd" = ( @@ -26828,7 +26815,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bGk" = ( @@ -26845,7 +26832,7 @@ id_tag = "council blast"; name = "Council Blast Doors" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bGl" = ( @@ -26883,7 +26870,7 @@ id_tag = "council blast"; name = "Council Blast Doors" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bGv" = ( @@ -27129,7 +27116,7 @@ id_tag = "council blast"; name = "Council Blast Doors" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bHz" = ( @@ -27186,7 +27173,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "bHH" = ( @@ -27383,7 +27370,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "bIu" = ( @@ -28935,7 +28922,7 @@ }, /area/station/hallway/primary/central) "bNs" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -29097,7 +29084,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "RD" }, /obj/structure/cable/yellow{ @@ -29373,7 +29360,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/primary/central) "bOC" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "NT" }, /obj/structure/cable/yellow{ @@ -29389,7 +29376,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/spacehut) "bOH" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/bridge) "bOJ" = ( @@ -30529,7 +30516,7 @@ /turf/simulated/floor/carpet, /area/station/science/robotics/showroom) "bSb" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "SHOW" }, /obj/structure/cable/yellow{ @@ -31778,7 +31765,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "bVT" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -32855,7 +32842,7 @@ }, /area/station/ai_monitored/storage/eva) "bYx" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/port2) "bYy" = ( @@ -33176,7 +33163,7 @@ }, /area/station/service/expedition) "bZA" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "BS" }, /obj/structure/cable/yellow{ @@ -33241,7 +33228,7 @@ /turf/simulated/floor/wood, /area/station/service/theatre) "bZN" = ( -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "bZP" = ( @@ -33775,7 +33762,7 @@ /turf/simulated/floor/plasteel, /area/station/service/hydroponics) "cbo" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "cbq" = ( @@ -34192,7 +34179,7 @@ /turf/simulated/floor/engine, /area/station/engineering/control) "ccx" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -35138,7 +35125,7 @@ }, /area/station/hallway/primary/central) "cfs" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /obj/structure/cable/yellow{ @@ -35345,7 +35332,7 @@ }, /area/station/service/hydroponics) "cfU" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/station/medical/virology) @@ -35899,7 +35886,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/brig) "chC" = ( @@ -36781,7 +36768,7 @@ /turf/space, /area/space/nearstation) "ckp" = ( -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ d1 = 1; @@ -37199,8 +37186,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "clF" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/turbine) "clG" = ( @@ -37278,7 +37265,7 @@ }, /area/station/medical/virology) "clQ" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /obj/structure/cable/yellow{ @@ -37318,7 +37305,7 @@ /turf/simulated/floor/grass/no_creep, /area/station/medical/virology) "clX" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /obj/structure/cable/yellow, @@ -39797,7 +39784,7 @@ }, /area/station/medical/medbay) "cuN" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio1"; name = "Xenobio Pen 1 Blast Door" @@ -39944,7 +39931,7 @@ /turf/simulated/floor/plating, /area/station/medical/medbay) "cvj" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /obj/structure/cable/yellow, @@ -39981,7 +39968,7 @@ /turf/simulated/wall/r_wall, /area/station/maintenance/medmaint) "cvq" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ d1 = 1; @@ -40866,7 +40853,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "cyz" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -41125,7 +41112,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/medical/virology) "czs" = ( @@ -41383,7 +41370,7 @@ }, /area/station/maintenance/apmaint) "cAo" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -42450,7 +42437,7 @@ }, /area/station/medical/cryo) "cDP" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "cDS" = ( @@ -43561,7 +43548,7 @@ }, /area/station/medical/cryo) "cHi" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -43620,7 +43607,7 @@ }, /area/station/medical/virology) "cHp" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/launch) "cHq" = ( @@ -43964,7 +43951,7 @@ /turf/simulated/floor/plating, /area/station/medical/cryo) "cIr" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /obj/structure/cable/yellow{ @@ -44345,7 +44332,7 @@ /area/station/maintenance/apmaint) "cJP" = ( /obj/effect/spawner/airlock/e_to_w/long, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "cJR" = ( @@ -44956,7 +44943,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "cLT" = ( @@ -45706,7 +45693,7 @@ /turf/simulated/floor/grass/no_creep, /area/station/medical/virology) "cOI" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -46201,7 +46188,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/aft) "cQq" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -46244,7 +46231,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/medical/virology) "cQC" = ( @@ -46621,7 +46608,7 @@ }, /area/station/maintenance/starboard2) "cSb" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -46709,7 +46696,7 @@ /turf/simulated/wall, /area/space/nearstation) "cSA" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -46930,12 +46917,6 @@ }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) -"cTh" = ( -/obj/effect/spawner/window/reinforced/polarized{ - id = "CHAP" - }, -/turf/simulated/floor/plating, -/area/station/service/chapel) "cTk" = ( /obj/machinery/seed_extractor, /turf/simulated/floor/plating, @@ -47122,7 +47103,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "cTX" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "cUa" = ( @@ -47155,7 +47136,7 @@ /turf/simulated/wall, /area/station/maintenance/portsolar) "cUp" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "NT" }, /obj/structure/cable/yellow{ @@ -47875,7 +47856,7 @@ }, /area/station/public/recreation) "cWT" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -49027,9 +49008,7 @@ /turf/simulated/floor/grass, /area/station/maintenance/aft2) "dbL" = ( -/obj/effect/spawner/window/reinforced/polarized{ - id = "CHAP2" - }, +/obj/effect/spawner/window/reinforced/polarized/grilled, /turf/simulated/floor/plating, /area/station/service/chapel) "dbV" = ( @@ -49372,7 +49351,7 @@ }, /area/station/medical/break_room) "dei" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ d1 = 1; @@ -50046,7 +50025,7 @@ /turf/simulated/floor/plasteel, /area/station/security/prison/cell_block/A) "dig" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -50184,8 +50163,8 @@ }, /area/station/command/office/cmo) "dlM" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "dmE" = ( @@ -50321,7 +50300,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" }, /turf/simulated/floor/plating, @@ -50878,7 +50857,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "dHA" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "SHOW" }, /obj/structure/cable/yellow{ @@ -51093,7 +51072,6 @@ dir = 1 }, /obj/machinery/door/window{ - dir = 2; name = "Permabrig Kitchen" }, /turf/simulated/floor/plasteel{ @@ -51286,7 +51264,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "RD" }, /turf/simulated/floor/plating, @@ -51805,13 +51783,13 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "RD" }, /turf/simulated/floor/plating, /area/station/command/office/rd) "ehh" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "brig shutters" @@ -52084,7 +52062,7 @@ }, /area/station/security/armory/secure) "epM" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "brig shutters" @@ -52707,7 +52685,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Detective" }, /turf/simulated/floor/plating, @@ -52782,8 +52760,7 @@ "eDF" = ( /obj/machinery/smartfridge/medbay, /obj/machinery/door/window/classic/normal{ - name = "Chemistry Desk"; - dir = 2 + name = "Chemistry Desk" }, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -52878,7 +52855,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "eGw" = ( @@ -52913,7 +52890,7 @@ /area/station/hallway/secondary/entry) "eGL" = ( /obj/structure/cable/yellow, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/medical/virology) "eIg" = ( @@ -53314,7 +53291,7 @@ }, /area/station/command/office/cmo) "eTo" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -53488,7 +53465,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/aft) "eXF" = ( -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53738,7 +53715,7 @@ }, /area/station/engineering/atmos) "fcT" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -54006,8 +53983,8 @@ }, /area/station/science/robotics) "fjY" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "fkr" = ( @@ -54542,6 +54519,10 @@ icon_state = "white" }, /area/station/science/toxins/launch) +"fuJ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/supply/storage) "fuQ" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -54629,8 +54610,7 @@ /area/station/engineering/control) "fwR" = ( /obj/machinery/door/window/classic/normal{ - name = "Primate Pen"; - dir = 2 + name = "Primate Pen" }, /obj/effect/turf_decal/siding, /obj/effect/mapping_helpers/airlock/windoor/access/all/medical/genetics, @@ -55027,7 +55007,7 @@ }, /area/station/medical/virology) "fGt" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -55214,6 +55194,10 @@ }, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) +"fJN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/virology) "fKU" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/poddoor/preopen{ @@ -55880,7 +55864,7 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) "gbi" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -56047,7 +56031,7 @@ /area/station/security/permabrig) "gdM" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/engineering/control) "geC" = ( @@ -56330,7 +56314,7 @@ }, /area/station/science/break_room) "giK" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "brig shutters" @@ -57004,7 +56988,7 @@ /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/pod_2) "gFO" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -57133,7 +57117,7 @@ }, /area/station/engineering/atmos) "gIJ" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -57379,7 +57363,7 @@ id_tag = "Secure Gate"; name = "brig shutters" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "gOX" = ( @@ -57397,8 +57381,8 @@ /turf/simulated/floor/plasteel, /area/station/science/xenobiology) "gRw" = ( -/obj/effect/spawner/window/reinforced, /obj/effect/spawner/airlock/s_to_n, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) "gRF" = ( @@ -57518,6 +57502,10 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) +"gTI" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/engimaint) "gTL" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -57950,7 +57938,7 @@ /turf/simulated/floor/engine, /area/station/science/xenobiology) "hfT" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -58715,8 +58703,7 @@ dir = 8 }, /obj/machinery/door/window/classic/reversed{ - name = "Cryo Tank Storage"; - dir = 2 + name = "Cryo Tank Storage" }, /obj/effect/mapping_helpers/airlock/windoor/access/all/medical/general, /turf/simulated/floor/plasteel{ @@ -58748,8 +58735,7 @@ }, /obj/machinery/computer/aiupload, /obj/machinery/door/window/classic/reversed{ - name = "Upload Console Window"; - dir = 2 + name = "Upload Console Window" }, /obj/effect/mapping_helpers/airlock/windoor/access/all/command/ai_upload, /turf/simulated/floor/plasteel{ @@ -58871,7 +58857,7 @@ name = "brig shutters" }, /obj/structure/cable/yellow, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Detective" }, /turf/simulated/floor/plating, @@ -59361,7 +59347,7 @@ }, /area/station/maintenance/starboard) "hKK" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -59472,6 +59458,10 @@ icon_state = "bar" }, /area/station/service/bar) +"hMd" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/control) "hMv" = ( /obj/effect/landmark/spawner/rev, /obj/structure/morgue{ @@ -60892,8 +60882,7 @@ /obj/item/pen, /obj/machinery/door/firedoor, /obj/machinery/door/window/classic/normal{ - name = "Atmospherics Desk"; - dir = 2 + name = "Atmospherics Desk" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -60912,7 +60901,7 @@ /turf/simulated/floor/engine, /area/station/science/xenobiology) "ivU" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/xenobiology) "ivY" = ( @@ -61145,7 +61134,7 @@ }, /area/station/service/chapel) "izh" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio8"; name = "Xenobio Pen 8 Blast Door" @@ -61159,7 +61148,7 @@ /turf/simulated/floor/engine, /area/station/science/xenobiology) "izK" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -61321,7 +61310,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "iBR" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -61337,7 +61326,6 @@ /obj/structure/table/reinforced, /obj/item/reagent_containers/food/snacks/pie, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Kitchen" }, /obj/effect/mapping_helpers/airlock/autoname, @@ -62011,8 +61999,7 @@ name = "Service Desk Shutter" }, /obj/machinery/door/window/classic/normal{ - name = "Hydroponics Window"; - dir = 2 + name = "Hydroponics Window" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics, /turf/simulated/floor/plasteel, @@ -62589,7 +62576,7 @@ }, /area/station/hallway/primary/aft) "jmx" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -62702,7 +62689,7 @@ }, /area/station/command/office/cmo) "jqI" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "SHOW" }, /obj/structure/cable/yellow, @@ -62742,7 +62729,7 @@ }, /area/station/medical/exam_room) "jsH" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -62815,7 +62802,7 @@ }, /area/station/medical/storage) "juc" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -62998,6 +62985,10 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/aft2) +"jzx" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) "jzA" = ( /obj/structure/table, /obj/effect/turf_decal/tile/red, @@ -63041,7 +63032,6 @@ /area/station/science/xenobiology) "jAW" = ( /obj/machinery/door/window/reinforced/normal{ - dir = 2; name = "Justice Chamber" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig, @@ -63315,7 +63305,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "jFr" = ( @@ -63888,7 +63878,7 @@ /turf/simulated/floor/plasteel, /area/station/security/range) "jQz" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -63973,7 +63963,6 @@ opacity = 1 }, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Bar Delivery" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot, @@ -64154,7 +64143,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -64397,7 +64386,7 @@ }, /area/station/medical/virology) "kdi" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio1"; name = "Xenobio Pen 1 Blast Door" @@ -64444,7 +64433,7 @@ /turf/simulated/wall/r_wall, /area/station/engineering/engine/supermatter) "keN" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -64467,7 +64456,7 @@ /turf/simulated/floor/wood, /area/station/service/bar) "kfe" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 2; d2 = 4; @@ -64638,6 +64627,10 @@ icon_state = "white" }, /area/station/science/xenobiology) +"kkw" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/arcade) "kkP" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, @@ -64716,7 +64709,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "kmF" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "knc" = ( @@ -64812,8 +64805,7 @@ name = "Xenobio Pen 2 Blast Door" }, /obj/machinery/door/window/classic/reversed{ - name = "Containment Pen #2"; - dir = 2 + name = "Containment Pen #2" }, /obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio, /turf/simulated/floor/plasteel, @@ -65352,8 +65344,7 @@ /area/station/science/research) "kCy" = ( /obj/machinery/door/window/classic/normal{ - name = "Containment Pen #2"; - dir = 2 + name = "Containment Pen #2" }, /obj/structure/cable/yellow{ d1 = 4; @@ -65509,7 +65500,6 @@ /obj/item/paper, /obj/structure/table/reinforced, /obj/machinery/door/window/reinforced/normal{ - dir = 2; name = "Arrivals Security Checkpoint"; pixel_y = -8 }, @@ -65561,7 +65551,7 @@ }, /area/station/supply/office) "kFY" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -66323,7 +66313,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "kWT" = ( @@ -66489,14 +66479,13 @@ /turf/simulated/floor/plating, /area/station/maintenance/aft) "kZX" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "lae" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Kitchen" }, /obj/effect/mapping_helpers/airlock/autoname, @@ -67000,8 +66989,7 @@ dir = 1 }, /obj/machinery/door/window/classic/normal{ - name = "Request Window"; - dir = 2 + name = "Request Window" }, /obj/item/pen, /obj/item/paper, @@ -67015,7 +67003,7 @@ /turf/simulated/floor/wood, /area/station/service/bar) "lkE" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -67384,7 +67372,7 @@ }, /area/station/hallway/primary/central) "ltg" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -67426,7 +67414,7 @@ icon_state = "1-8" }, /obj/structure/cable/yellow, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Magistrate" }, /turf/simulated/floor/plating, @@ -67686,8 +67674,8 @@ }, /area/station/command/office/rd) "lCZ" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/aft2) "lDa" = ( @@ -67996,7 +67984,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Interrogation" }, /turf/simulated/floor/plating, @@ -68019,7 +68007,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -68079,7 +68067,7 @@ }, /area/station/science/break_room) "lJO" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -68368,7 +68356,7 @@ }, /area/station/medical/reception) "lQi" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -68401,7 +68389,7 @@ /turf/simulated/floor/plasteel, /area/station/supply/office) "lQH" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -68689,7 +68677,6 @@ dir = 1 }, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Reception Window" }, /obj/machinery/door/poddoor/preopen{ @@ -68786,7 +68773,6 @@ "mbB" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Kitchen" }, /obj/effect/mapping_helpers/airlock/autoname, @@ -69503,10 +69489,10 @@ /turf/simulated/floor/carpet, /area/station/service/theatre) "mpF" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "mpP" = ( @@ -69568,7 +69554,7 @@ }, /area/station/medical/exam_room) "msg" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -69856,7 +69842,6 @@ dir = 1 }, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Reception Window" }, /obj/machinery/door/poddoor/preopen{ @@ -70215,7 +70200,7 @@ }, /area/station/medical/reception) "mJF" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -71412,7 +71397,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/office/hos) "niH" = ( @@ -71739,7 +71724,7 @@ }, /area/station/security/storage) "nrs" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow, /obj/machinery/door/poddoor/preopen{ id_tag = "Perma Gate"; @@ -71898,7 +71883,7 @@ }, /area/station/security/armory) "nwK" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -72495,7 +72480,7 @@ /turf/simulated/floor/carpet, /area/station/science/robotics/showroom) "nKT" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -72542,7 +72527,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "HoS" }, /turf/simulated/floor/plating, @@ -73126,8 +73111,7 @@ dir = 1 }, /obj/machinery/door/window/classic/normal{ - name = "Mass Driver"; - dir = 2 + name = "Mass Driver" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/maintenance, /obj/effect/turf_decal/loading_area{ @@ -73264,7 +73248,7 @@ }, /area/station/science/storage) "oej" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "SHOW" }, /obj/structure/cable/yellow{ @@ -73284,7 +73268,7 @@ /turf/simulated/floor/plating, /area/station/science/robotics/showroom) "oeA" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -73407,7 +73391,7 @@ /turf/simulated/floor/wood, /area/station/service/cafeteria) "oiX" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -73527,8 +73511,8 @@ }, /area/station/science/rnd) "onG" = ( -/obj/effect/spawner/window/reinforced, /obj/effect/spawner/airlock/s_to_n, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarport) "oob" = ( @@ -73728,7 +73712,7 @@ }, /area/station/public/locker) "orw" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/control) "orY" = ( @@ -73894,7 +73878,6 @@ dir = 4 }, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "shower" }, /turf/simulated/floor/plasteel{ @@ -73902,7 +73885,7 @@ }, /area/station/public/recreation) "oAc" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -74276,6 +74259,10 @@ }, /turf/simulated/floor/plasteel, /area/station/security/permabrig) +"oJm" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) "oJo" = ( /obj/machinery/light_switch{ dir = 8; @@ -74604,7 +74591,7 @@ }, /area/station/security/range) "oQF" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -74746,7 +74733,7 @@ }, /area/station/security/permabrig) "oVK" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -74829,7 +74816,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "oWE" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -74997,7 +74984,7 @@ /area/station/public/locker) "pbP" = ( /obj/structure/cable/yellow, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" }, /turf/simulated/floor/plating, @@ -75484,7 +75471,7 @@ }, /area/station/engineering/atmos) "pmI" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/aft2) "pmT" = ( @@ -75734,7 +75721,7 @@ }, /area/station/medical/paramedic) "pte" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/station/security/permabrig) @@ -75777,7 +75764,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "pvo" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/station/security/warden) @@ -75876,7 +75863,6 @@ /area/station/medical/morgue) "pyA" = ( /obj/machinery/door/window/reinforced/normal{ - dir = 2; name = "Command Desk" }, /obj/effect/mapping_helpers/airlock/windoor/access/all/command/general, @@ -75932,7 +75918,7 @@ }, /area/station/medical/medbay) "pAE" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) @@ -76269,7 +76255,7 @@ }, /area/station/medical/medbay) "pJh" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -76447,7 +76433,7 @@ }, /area/station/science/research) "pMT" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -76475,10 +76461,8 @@ }, /area/station/science/xenobiology) "pNK" = ( -/obj/effect/spawner/window/reinforced/polarized{ - id = "qm" - }, /obj/structure/cable/yellow, +/obj/effect/spawner/window/reinforced/polarized/grilled, /turf/simulated/floor/plating, /area/station/supply/storage) "pOG" = ( @@ -76765,7 +76749,6 @@ pixel_x = 3 }, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Kitchen" }, /obj/effect/mapping_helpers/airlock/autoname, @@ -77053,8 +77036,7 @@ }, /obj/machinery/computer/borgupload, /obj/machinery/door/window/classic/normal{ - name = "Cyborg Upload Console Window"; - dir = 2 + name = "Cyborg Upload Console Window" }, /obj/effect/mapping_helpers/airlock/windoor/access/all/command/ai_upload, /turf/simulated/floor/plasteel{ @@ -77204,7 +77186,7 @@ }, /area/station/science/research) "qcP" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -77355,7 +77337,7 @@ }, /area/station/turret_protected/ai) "qfW" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -77627,7 +77609,7 @@ }, /area/station/maintenance/aft) "qoX" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio1"; name = "Xenobio Pen 1 Blast Door" @@ -77666,7 +77648,7 @@ id_tag = "Secure Gate"; name = "brig shutters" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "qpH" = ( @@ -78047,7 +78029,7 @@ }, /area/station/science/xenobiology) "qzz" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -78159,6 +78141,10 @@ /obj/machinery/light, /turf/simulated/floor/plasteel, /area/station/security/brig) +"qCW" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/recreation) "qDd" = ( /obj/structure/table/glass, /obj/item/roller{ @@ -78222,6 +78208,10 @@ /obj/item/kirbyplants, /turf/simulated/floor/wood, /area/station/maintenance/apmaint) +"qFG" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos/distribution) "qFI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 10 @@ -78401,6 +78391,10 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) +"qNs" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/research) "qNJ" = ( /obj/machinery/atmospherics/pipe/manifold/visible/blue{ dir = 1 @@ -78812,8 +78806,7 @@ "qYN" = ( /obj/structure/table/glass, /obj/machinery/door/window/classic/normal{ - name = "First-Aid Supplies"; - dir = 2 + name = "First-Aid Supplies" }, /obj/item/storage/firstaid/fire{ pixel_x = 3; @@ -80208,7 +80201,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "rEw" = ( @@ -80706,7 +80699,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/office/hos) "rOu" = ( @@ -80770,7 +80763,7 @@ /turf/simulated/floor/wood, /area/station/security/main) "rPy" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "rRp" = ( @@ -80930,7 +80923,7 @@ }, /area/station/legal/courtroom) "rWr" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/station/security/main) @@ -81192,7 +81185,7 @@ }, /area/station/public/sleep) "seE" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -81411,7 +81404,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos/distribution) "skD" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -81479,7 +81472,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/office/hos) "sls" = ( @@ -81698,7 +81691,7 @@ /turf/simulated/floor/carpet, /area/station/service/library) "sqa" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "hosspace"; name = "Space Shutters" @@ -81788,7 +81781,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" }, /turf/simulated/floor/plating, @@ -81948,7 +81941,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Magistrate" }, /turf/simulated/floor/plating, @@ -82039,7 +82032,6 @@ /obj/structure/plasticflaps, /obj/structure/disposalpipe/segment, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "delivery door" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot, @@ -82121,7 +82113,7 @@ }, /area/station/security/armory/secure) "sDN" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -82275,7 +82267,6 @@ }, /obj/effect/mapping_helpers/airlock/windoor/access/all/service/kitchen, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Kitchen" }, /turf/simulated/floor/plasteel{ @@ -82792,7 +82783,7 @@ }, /area/station/science/robotics) "sRo" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 2; d2 = 4; @@ -83544,7 +83535,7 @@ /turf/simulated/floor/carpet, /area/station/command/office/hop) "thW" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 2; d2 = 4; @@ -83657,11 +83648,11 @@ /turf/simulated/floor/plasteel, /area/station/public/construction) "tlr" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/xenobio_south) "tlw" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "tlO" = ( @@ -84291,8 +84282,7 @@ "tCs" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/classic/reversed{ - name = "Hydroponics Window"; - dir = 2 + name = "Hydroponics Window" }, /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; @@ -84371,7 +84361,7 @@ }, /area/station/medical/reception) "tDA" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "SHOW" }, /obj/structure/cable/yellow{ @@ -84550,7 +84540,6 @@ "tIZ" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Medical Reception" }, /obj/item/paper_bin{ @@ -85341,7 +85330,7 @@ /turf/simulated/floor/plasteel, /area/station/security/brig) "ufj" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/station/security/brig) @@ -85370,7 +85359,7 @@ /area/station/medical/psych) "ufI" = ( /obj/structure/cable/yellow, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" }, /turf/simulated/floor/plating, @@ -85489,7 +85478,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "ujg" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -86079,10 +86068,10 @@ /turf/simulated/floor/plasteel, /area/station/science/xenobiology) "uBl" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/xenobio_south) "uBK" = ( @@ -86288,7 +86277,7 @@ }, /area/station/security/permabrig) "uGy" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -86644,7 +86633,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "uOh" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -86928,8 +86917,7 @@ /area/station/hallway/secondary/entry) "uWQ" = ( /obj/machinery/door/window/classic/normal{ - name = "Court Cell"; - dir = 2 + name = "Court Cell" }, /obj/machinery/light/small{ dir = 8 @@ -87360,7 +87348,7 @@ /turf/simulated/wall, /area/station/security/prisonlockers) "vdH" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -87875,7 +87863,6 @@ opacity = 1 }, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Botany Delivery" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot, @@ -88213,7 +88200,7 @@ /turf/simulated/floor/plasteel, /area/station/supply/office) "vBK" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -88382,7 +88369,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "vHk" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "vHA" = ( @@ -88472,7 +88459,7 @@ }, /area/station/security/evidence) "vJv" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/aft) "vJB" = ( @@ -88546,7 +88533,7 @@ }, /area/station/science/storage) "vLP" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio8"; name = "Xenobio Pen 8 Blast Door" @@ -88622,7 +88609,6 @@ dir = 8 }, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "MiniSat Walkway Access" }, /turf/simulated/floor/plasteel{ @@ -88800,8 +88786,7 @@ pixel_y = -3 }, /obj/machinery/door/window/classic/reversed{ - name = "Chemistry Desk"; - dir = 2 + name = "Chemistry Desk" }, /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; @@ -88916,7 +88901,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "RD" }, /turf/simulated/floor/plating, @@ -88983,7 +88968,7 @@ }, /area/station/medical/morgue) "vXb" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -89038,7 +89023,6 @@ "vYV" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Medical Reception" }, /obj/item/reagent_containers/spray/cleaner, @@ -89591,7 +89575,6 @@ /obj/item/folder, /obj/item/folder, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "windoor" }, /obj/item/book/manual/wiki/hacking, @@ -89808,7 +89791,7 @@ }, /area/station/medical/surgery/observation) "wtN" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -90166,7 +90149,7 @@ }, /area/station/engineering/atmos/distribution) "wDf" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio8"; name = "Xenobio Pen 8 Blast Door" @@ -90347,8 +90330,7 @@ /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/window/classic/reversed{ - name = "Cargo Desk"; - dir = 2 + name = "Cargo Desk" }, /obj/item/paper/crumpled, /obj/effect/mapping_helpers/airlock/windoor/access/all/supply/general, @@ -90402,7 +90384,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" }, /turf/simulated/floor/plating, @@ -90437,7 +90419,7 @@ /turf/simulated/floor/wood, /area/station/command/office/hos) "wKV" = ( -/obj/effect/spawner/window, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/spacehut) "wLt" = ( @@ -90534,7 +90516,6 @@ network = list("SS13","MiniSat") }, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "MiniSat Walkway Access" }, /obj/machinery/light/small{ @@ -91599,10 +91580,10 @@ /turf/simulated/floor/carpet, /area/station/command/office/hop) "xnG" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/xenobio_north) "xnO" = ( @@ -91858,9 +91839,6 @@ }, /area/station/engineering/atmos) "xuz" = ( -/obj/effect/spawner/window/reinforced/polarized{ - id = "qm" - }, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -91870,6 +91848,7 @@ d2 = 4; icon_state = "2-4" }, +/obj/effect/spawner/window/reinforced/polarized/grilled, /turf/simulated/floor/plating, /area/station/supply/qm) "xuA" = ( @@ -92156,7 +92135,7 @@ /turf/simulated/floor/carpet, /area/station/public/vacant_office) "xBX" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -92360,7 +92339,7 @@ }, /area/station/supply/lobby) "xHy" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -92439,8 +92418,8 @@ }, /area/station/security/permabrig) "xIB" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/engimaint) "xJy" = ( @@ -92573,7 +92552,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Magistrate" }, /turf/simulated/floor/plating, @@ -92918,7 +92897,7 @@ id_tag = "Secure Gate"; name = "brig shutters" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "xUA" = ( @@ -92934,7 +92913,7 @@ }, /area/station/science/break_room) "xUC" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -92984,7 +92963,7 @@ id_tag = "Secure Gate"; name = "brig shutters" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "xWl" = ( @@ -107460,9 +107439,9 @@ aaa aaa dtE dtE -cFv -cFv -cFv +fJN +fJN +fJN dtE dtE cSb @@ -108499,7 +108478,7 @@ nsm cuP crb exI -cFv +fJN aaa aaa aaa @@ -109013,7 +108992,7 @@ ckJ bZm cFr crj -cFv +fJN abq abq abq @@ -109515,9 +109494,9 @@ uoQ bZP aaa aaa -cFv +fJN wjw -cFv +fJN aaa aaa dtE @@ -109772,9 +109751,9 @@ crG bZP aaa aaa -cFv +fJN wjw -cFv +fJN aaa aaa dtE @@ -110029,9 +110008,9 @@ crG bZP aaa aaa -cFv +fJN pko -cFv +fJN aaa aaa dtE @@ -110220,13 +110199,13 @@ ayK aCs aaa aaa -aKl +fuJ aOp aRm -aKl +fuJ aTT aRz -aKl +fuJ aaa aaa aZt @@ -110475,17 +110454,17 @@ aCw aHr aIN aCs -aKl -aKl -aKl +fuJ +fuJ +fuJ aPf aPH -aKl +fuJ aPH aVb -aKl -aKl -aKl +fuJ +fuJ +fuJ aZt bcV bfh @@ -116740,7 +116719,7 @@ gDK cFD bdq oiv -cTh +dbL aaa aaa aaa @@ -116997,7 +116976,7 @@ cDc cFD cUX oiv -cTh +dbL aaa aaa aaa @@ -117254,7 +117233,7 @@ cJM cyN cUK cqj -cTh +dbL aaa aaa aaa @@ -117511,7 +117490,7 @@ csw cFD cUX oiv -cTh +dbL aaa aaa aaa @@ -117768,7 +117747,7 @@ xJB cFD bdq oiv -cTh +dbL aaa aaa aaa @@ -128183,7 +128162,7 @@ aaa aaa aaa aaa -aeN +qCW ozg ams ajg @@ -128438,7 +128417,7 @@ aaa aaa aiY aiY -aij +kkw aiY aiY afb @@ -128693,7 +128672,7 @@ aaa laH aaa aaa -aij +kkw ajm apR ctw @@ -128950,7 +128929,7 @@ aaa laH aaa aaa -aij +kkw alb wzV alb @@ -129207,7 +129186,7 @@ aaa laH aaa aaa -aij +kkw akk apV akk @@ -129251,7 +129230,7 @@ aLl bPb aLl aLl -bnI +oJm aLl aLl bnk @@ -129720,7 +129699,7 @@ aaa aaa laH aaa -aij +kkw aiL akk apV @@ -129977,7 +129956,7 @@ aaa aaa laH aaa -aij +kkw ajk akk asE @@ -130234,7 +130213,7 @@ aaa aaa laH aaa -aij +kkw ajj akk rDe @@ -131006,7 +130985,7 @@ aaa aaa aaa aaa -aeN +qCW afF agg agG @@ -131781,7 +131760,7 @@ afb afH ajD afH -aeN +qCW air air air @@ -132038,7 +132017,7 @@ abq afH agk afH -aeN +qCW air air air @@ -132295,7 +132274,7 @@ iju aaa aaa aaa -aeN +qCW air air air @@ -132384,9 +132363,9 @@ cte aaa aaa aaa -cOm +qNs wVO -cOm +qNs aaa aaa aaa @@ -132552,7 +132531,7 @@ abq aaa aaa aaa -aeN +qCW air air air @@ -132641,9 +132620,9 @@ cte aaa aaa aaa -cOm +qNs wVO -cOm +qNs aaa aaa aaa @@ -132809,7 +132788,7 @@ abq aaa aaa aaa -aeN +qCW air air air @@ -132898,9 +132877,9 @@ aaa aaa aaa aaa -cOm +qNs wVO -cOm +qNs aaa aaa aaa @@ -133066,9 +133045,9 @@ abq aaa aaa aaa -aeN -aeN -aeN +qCW +qCW +qCW afb alh aeN @@ -133155,9 +133134,9 @@ aaa aaa aaa aaa -cOm +qNs wVO -cOm +qNs aaa aaa aaa @@ -133412,15 +133391,15 @@ aaa aaa aaa aaa -cOm +qNs ten cfw -cOm -cOm -cOm -cOm -cOm -cOm +qNs +qNs +qNs +qNs +qNs +qNs abq abq abq @@ -133669,7 +133648,7 @@ aaa aaa aaa aaa -cOm +qNs gpe cuw jvU @@ -133677,7 +133656,7 @@ jvU jvU jFN tlO -cOm +qNs aaa aaa aaa @@ -133841,9 +133820,9 @@ aaa abq aaa afb -aeN -aeN -aeN +qCW +qCW +qCW aLl aLl pep @@ -133926,15 +133905,15 @@ bNP abq iju abq -cOm -cOm -cOm -cOm -cOm -cOm +qNs +qNs +qNs +qNs +qNs +qNs cfw jTe -cOm +qNs aaa aaa aaa @@ -134189,9 +134168,9 @@ aaa aaa aaa aaa -cOm +qNs wVO -cOm +qNs aaa aaa aaa @@ -134359,7 +134338,7 @@ aef abq abq aLl -bnI +oJm aLl atU lEo @@ -137010,7 +136989,7 @@ laH aaa aaa aaa -wCn +jzx mdi ucO mdi @@ -137024,7 +137003,7 @@ izh mdi ucO mdi -wCn +jzx aaa aaa aaa @@ -137190,7 +137169,7 @@ aaa aaa aaa aaa -bnI +oJm pIi nbN pxj @@ -137267,7 +137246,7 @@ laH aaa aaa aaa -wCn +jzx mdi cIP mdi @@ -137281,7 +137260,7 @@ wDf mdi cIP mdi -wCn +jzx aaa aaa aaa @@ -137994,7 +137973,7 @@ wUa orY mKW xSv -bUv +gTI bsJ aXO aXO @@ -138251,7 +138230,7 @@ wUa tVa xNc rhb -bUv +gTI buW abq abq @@ -138261,9 +138240,9 @@ iRu iRu iRu agP -bvk +qFG brb -bvk +qFG bHG bzL bIt @@ -138739,8 +138718,8 @@ bfb aBZ aBZ aCg -aHi -aHi +hMd +hMd aCg fzN aJW @@ -138755,7 +138734,7 @@ fHC len nss bbC -aHi +hMd aaa wJN iab @@ -138990,7 +138969,7 @@ aef aef aaa aaa -bnI +oJm blA avA aBZ diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_althland_facility.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_althland_facility.dmm new file mode 100644 index 000000000000..69c6b2e5412b --- /dev/null +++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_althland_facility.dmm @@ -0,0 +1,3455 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"ab" = ( +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ae" = ( +/obj/structure/window/reinforced, +/obj/machinery/conveyor/west, +/obj/item/stack/ore/bluespace_crystal{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"af" = ( +/obj/structure/lattice/lava, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"ap" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"au" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer{ + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; + name = "Broken Computer" + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"aM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4; + invisibility = 101 + }, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"bc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mecha_wreckage/ripley, +/obj/effect/turf_decal/box/white, +/obj/effect/turf_decal/caution/stand_clear/white, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"be" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall/r_wall, +/area/lavaland/surface/outdoors) +"bL" = ( +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/mineral/volcanic/lava_land_surface, +/area/lavaland/surface/outdoors) +"bO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/under/rank/cargo/miner, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"bP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/door_assembly/door_assembly_ext{ + name = "Broken External Airlock" + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"bT" = ( +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"bU" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/mineral/volcanic/lava_land_surface, +/area/lavaland/surface/outdoors) +"bV" = ( +/turf/simulated/mineral/volcanic/lava_land_surface, +/area/lavaland/surface/outdoors) +"cb" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"cc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"cw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/smes, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"cJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mech_bay_recharge_port, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"dh" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"du" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/machinery/light_construct/small{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"dM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/simulated/floor/plating/airless, +/area/ruin/unpowered) +"eH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/ore/plasma, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"eV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer{ + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; + name = "Broken Computer" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"fc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"fd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"fm" = ( +/obj/machinery/light_construct/small{ + dir = 1 + }, +/obj/structure/sign/atmosplaque{ + desc = "A ruined and partially melted plaque bears words that are now faded and rusted, with some letters missing entirely. It reads: Est...ished by the Althland Mining...ration. In recog...on of the brave...who dared...harness...fiery heart...this world. May the...of our labor...shine as brightly...as the molten rivers...beneath our feet. The date of the facility's establishment at the bottom is obliterated, and the signatures of any founding miners are completely lost to time."; + pixel_y = 29; + name = "\improper Althland facility plaque" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"fs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"fv" = ( +/mob/living/simple_animal/hostile/asteroid/hivelord/legion, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"fB" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/structure/disposalpipe/segment{ + dir = 4; + invisibility = 101 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"fH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"fP" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"fY" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"gb" = ( +/obj/effect/landmark/damageturf, +/obj/structure/disposalpipe/segment{ + dir = 4; + invisibility = 101 + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"gC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/white/partial, +/obj/machinery/light_construct/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"gE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"gF" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/ruin/unpowered) +"hc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/ruin/unpowered) +"hj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"ho" = ( +/obj/structure/door_assembly/door_assembly_ext{ + name = "Broken External Airlock" + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"hx" = ( +/obj/item/shard, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"hE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"hP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced, +/obj/machinery/conveyor/west, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"hY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"ia" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/structure/disposalpipe/sortjunction{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ic" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"iq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced, +/obj/machinery/conveyor/west, +/obj/machinery/mineral/unloading_machine, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"jb" = ( +/obj/structure/lattice/catwalk/mining, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"jY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/white/hollow, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/machinery/light_construct/small{ + dir = 8 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"kn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/structure/sign/poster/official/air2{ + pixel_y = -32 + }, +/obj/item/clothing/under/rank/cargo/miner, +/mob/living/simple_animal/hostile/asteroid/hivelord/legion, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"kR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/tank/internals/oxygen, +/obj/item/storage/box/donkpockets/empty, +/obj/item/storage/box/donkpockets/empty, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"lr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"lZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/door_assembly/door_assembly_ext{ + name = "Broken External Airlock" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + invisibility = 101 + }, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"ms" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"nm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/airless, +/area/ruin/unpowered) +"no" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"nK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"nN" = ( +/obj/structure/grille/broken, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"nQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/white/hollow, +/obj/structure/ore_box, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"nX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/ore, +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/ruin/unpowered) +"oj" = ( +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"oG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"pn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/item/mounted/frame/apc_frame{ + pixel_x = -3; + pixel_y = 28 + }, +/obj/item/clothing/under/rank/cargo/miner, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"pP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"qh" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"qn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/glass, +/obj/structure/disposalpipe/segment{ + dir = 4; + invisibility = 101 + }, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"qQ" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"rd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"rf" = ( +/obj/structure/door_assembly/door_assembly_ext{ + name = "Broken External Airlock" + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"rw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"rY" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/under/rank/cargo/miner, +/obj/item/paper/fluff/ruins/althland/journal, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"sa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/west, +/obj/structure/window/reinforced, +/obj/item/stack/sheet/mineral/silver, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"sg" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"su" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"sv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall/r_wall, +/area/ruin/unpowered) +"sB" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"sQ" = ( +/obj/item/pickaxe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"to" = ( +/obj/structure/marker_beacon/dock_marker, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"tv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/constructable_frame/machine_frame, +/obj/item/stack/cable_coil, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"tD" = ( +/obj/effect/decal/warning_stripes/white/hollow, +/obj/machinery/light_construct/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"tS" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/effect/mapping_helpers/no_lava, +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ua" = ( +/obj/effect/turf_decal/caution/stand_clear/white, +/obj/effect/turf_decal/box/white, +/mob/living/simple_animal/hostile/asteroid/hivelord/legion, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"ub" = ( +/obj/item/clothing/under/rank/cargo/miner, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"uf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"ui" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/ruin/unpowered) +"um" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall/r_wall, +/area/ruin/unpowered) +"uC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"uM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/rack_parts, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"vf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/air1{ + pixel_x = 33 + }, +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"vl" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/belt/mining/alt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"vo" = ( +/obj/machinery/light_construct/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/item/clothing/under/rank/cargo/miner, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"vM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"wZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"xK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/obj/machinery/economy/vending/chinese, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"yV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced, +/obj/machinery/conveyor/west, +/obj/machinery/mineral/processing_unit, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"yX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/mob/living/simple_animal/hostile/asteroid/goliath/beast, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"zd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced, +/obj/machinery/conveyor/west, +/obj/machinery/light_construct/small{ + dir = 1 + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"zp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/shoes/workboots/mining, +/obj/structure/sign/poster/ripped{ + pixel_x = -1; + pixel_y = 32 + }, +/obj/machinery/light_construct/small{ + dir = 8 + }, +/obj/effect/landmark/burnturf, +/mob/living/simple_animal/hostile/asteroid/hivelord/legion, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"zq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/ore{ + pixel_y = -9; + pixel_x = -6 + }, +/obj/effect/landmark/burnturf, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"zE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/pickaxe, +/obj/effect/landmark/damageturf, +/obj/structure/disposalpipe/segment{ + dir = 4; + invisibility = 101 + }, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"zG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed, +/obj/machinery/light_construct/small{ + dir = 8 + }, +/obj/effect/landmark/damageturf, +/mob/living/simple_animal/hostile/asteroid/hivelord/legion, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"zO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"zR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/door_assembly/door_assembly_mhatch, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"zZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/west, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Au" = ( +/turf/simulated/wall/r_wall, +/area/ruin/unpowered) +"Az" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/obj/structure/door_assembly/door_assembly_mhatch, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"AE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"AH" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"AL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"AT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall/r_wall, +/area/ruin/unpowered) +"BB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/portable/pump, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"BG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"BM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"BO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/ruin/unpowered) +"BV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"BX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/structure/sign/poster/contraband/syndicate_recruitment{ + pixel_x = -3; + pixel_y = 31 + }, +/obj/item/clothing/under/rank/cargo/miner, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"CF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/electricshock{ + pixel_x = -31 + }, +/obj/machinery/light_construct/small{ + dir = 8 + }, +/obj/machinery/economy/vending/assist/free, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Dd" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"Dg" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/effect/mapping_helpers/no_lava, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Dp" = ( +/obj/machinery/disposal, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Dt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/donkpockets/empty, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Dv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/door_assembly/door_assembly_mhatch, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Dz" = ( +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"DM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/obj/effect/landmark/damageturf, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"DP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mineral/processing_unit_console{ + pixel_y = 22 + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Ec" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/southwest{ + dir = 5 + }, +/obj/structure/plasticflaps, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Ek" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/machinery/light_construct/small{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Fa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Fd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/ripped{ + pixel_x = -1; + pixel_y = 32 + }, +/obj/item/tank/internals/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"FX" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/obj/effect/landmark/burnturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Ge" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/burnturf, +/obj/structure/disposalpipe/segment{ + dir = 4; + invisibility = 101 + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Gk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/item/clothing/under/rank/cargo/miner, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Gt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Gz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"GF" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"GV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Hj" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Hp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/ore/plasma, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/landmark/burnturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Hx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/asteroid/hivelord/legion, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"HO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Ic" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/white/hollow, +/obj/structure/closet/crate/miningcar, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"In" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/burnturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Io" = ( +/obj/item/chair, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"IT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/white/hollow, +/obj/structure/ore_box, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Jw" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"JE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mech_bay_recharge_port, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"JT" = ( +/obj/structure/grille, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"KJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"KN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + invisibility = 101 + }, +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/ruin/unpowered) +"KT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"KZ" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/effect/mapping_helpers/no_lava, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Lg" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/disposalpipe/segment{ + dir = 4; + invisibility = 101 + }, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Ln" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/white/hollow, +/obj/structure/closet/crate/miningcar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Lq" = ( +/obj/machinery/light_construct/small{ + dir = 4 + }, +/obj/effect/landmark/burnturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"LA" = ( +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Ms" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"Mw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"MO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/asteroid/hivelord/legion, +/obj/structure/disposalpipe/segment{ + dir = 4; + invisibility = 101 + }, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"MY" = ( +/obj/effect/landmark/burnturf, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"Nu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Og" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/ruin/unpowered) +"Oh" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/fluff/ruins/althland/journal, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"OJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"OW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/t_scanner/adv_mining_scanner, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Pn" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/burnturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Po" = ( +/obj/structure/grille/broken, +/obj/item/shard, +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Px" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/door_assembly/door_assembly_ext{ + name = "Broken External Airlock" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + invisibility = 101 + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"PF" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"PJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"PY" = ( +/obj/structure/marker_beacon/dock_marker, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"Qj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/clothing/mask/gas/explorer, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Qu" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/structure/door_assembly/door_assembly_ext{ + name = "Broken External Airlock" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"QE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/ruin/unpowered) +"RL" = ( +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/obj/effect/landmark/burnturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"RX" = ( +/obj/structure/lattice/catwalk/mining, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"Ta" = ( +/obj/item/chair{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/red_rum{ + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"TN" = ( +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"TX" = ( +/obj/structure/disposalpipe/broken{ + dir = 2 + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"UP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/burnturf, +/obj/structure/disposalpipe/segment{ + dir = 4; + invisibility = 101 + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"UU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Vj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4; + invisibility = 101 + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"VJ" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/structure/sign/nosmoking_1{ + pixel_x = -2; + pixel_y = 35 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + invisibility = 101 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"VO" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Wb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/clothing/shoes/workboots/mining, +/obj/item/clothing/shoes/workboots/mining, +/obj/effect/landmark/damageturf, +/obj/item/mounted/frame/apc_frame{ + pixel_x = -3; + pixel_y = 28 + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Wl" = ( +/obj/structure/grille, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Wp" = ( +/obj/structure/grille/broken, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/burnturf, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"WQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/miningcar, +/obj/item/mounted/frame/apc_frame{ + pixel_x = -3; + pixel_y = 28 + }, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Xn" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/effect/mapping_helpers/no_lava, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/mineral/volcanic/lava_land_surface, +/area/lavaland/surface/outdoors) +"Xw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer{ + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; + name = "Broken Computer" + }, +/obj/item/paper/fluff/ruins/althland/geology, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"XD" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/under/rank/cargo/miner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"XO" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"XT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small, +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Yd" = ( +/obj/structure/grille, +/obj/item/shard, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"Yl" = ( +/obj/structure/girder, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Yt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/portable/canister/air, +/obj/machinery/light_construct/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Yx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/tank/oxygen_agent_b, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"YF" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"YK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"YN" = ( +/obj/structure/grille/broken, +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/lavaland/surface/outdoors) +"Zi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"Zr" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/structure/disposalpipe/broken{ + dir = 2 + }, +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ZA" = ( +/obj/structure/grille, +/obj/item/shard, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"ZB" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/effect/mapping_helpers/no_lava, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ZG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/burnturf, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) +"ZN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/white, +/obj/structure/sign/poster/ripped{ + pixel_x = -1; + pixel_y = 32 + }, +/turf/simulated/floor{ + temperature = 300; + oxygen = 14; + nitrogen = 23 + }, +/area/ruin/unpowered) + +(1,1,1) = {" +bV +bL +bL +bL +bL +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bL +bL +bL +bL +bL +bL +bL +bL +"} +(2,1,1) = {" +bV +bL +bL +bV +bV +bV +bV +ab +ab +bV +bV +bV +bV +ab +bV +bV +bV +bV +bV +ab +ab +ab +ab +GF +ab +ab +ab +bL +bV +bV +bV +bV +bL +bL +"} +(3,1,1) = {" +bV +bL +bV +bV +bV +bV +bV +bT +ab +bL +bL +bU +ab +KZ +ab +ab +bT +ab +ab +ab +ab +ab +YN +YN +Yd +Dd +af +bT +bV +bV +bV +bV +bV +bL +"} +(4,1,1) = {" +bV +bL +bL +ab +ab +bT +bT +bT +ab +ab +ab +cb +ab +ab +ab +bT +bT +ab +bL +bL +ab +Dg +rf +Lq +MY +Yd +af +bT +bT +bT +ab +bV +bV +bL +"} +(5,1,1) = {" +bV +bL +bL +ab +ab +bT +bT +sB +fP +dh +ui +ui +ui +ui +ui +bT +bT +ab +ab +bL +ab +ab +ui +ui +cc +ui +Au +ui +ui +ui +ab +ab +bV +bL +"} +(6,1,1) = {" +bV +bL +bV +bV +ab +bT +ab +bL +bL +tS +ui +nQ +jY +IT +ui +ab +bT +bT +bT +ab +ab +ab +ui +JE +KT +cJ +CF +tv +cw +ui +ab +ab +ab +bL +"} +(7,1,1) = {" +bV +bL +bV +bV +ab +bT +bT +bU +bU +ZB +hc +Pn +fv +zq +ui +ab +ab +bT +bT +be +ab +ab +ui +ua +gE +bc +Zi +AE +YF +ui +ab +ab +bL +bL +"} +(8,1,1) = {" +bV +bL +bV +ab +ab +bT +bL +Xn +KZ +ab +ui +ui +QE +Lg +ui +ab +ab +RX +RX +RX +ab +ab +ui +eV +OJ +Mw +Qj +fs +OW +ui +ab +ab +bV +bL +"} +(9,1,1) = {" +bV +bL +bV +ab +bT +bT +ab +cb +ab +af +ui +Ec +gC +UU +ui +ab +ab +jb +jb +jb +ab +ab +ui +QE +af +BM +yX +bO +In +dM +ab +ab +ab +bL +"} +(10,1,1) = {" +bV +bL +ab +bT +bT +bT +ab +cb +bT +af +af +hP +zE +ui +ui +ui +ab +be +bT +bT +ab +ab +ab +af +af +AT +Wb +kR +fc +gF +ab +ab +bL +bL +"} +(11,1,1) = {" +bV +bL +ab +af +ui +bT +ab +ab +bT +bT +XO +sa +FX +nm +Gt +DM +ia +fP +qQ +bT +bT +bT +bT +bT +bT +af +TX +rw +ms +ui +bT +ab +bV +bL +"} +(12,1,1) = {" +bV +bU +cb +bT +af +bT +ab +bT +bT +bT +JT +zZ +qn +nX +ui +ui +VJ +ab +ab +bT +bT +bT +bT +af +ui +bT +af +uM +gb +ui +bT +bT +bV +bL +"} +(13,1,1) = {" +bV +bU +cb +ab +bT +bT +ab +bT +bT +bT +ui +yV +UP +Ic +ui +ab +fB +Qu +ab +bT +bT +af +be +af +ui +vf +Yt +uC +Gz +ui +bT +bT +ab +bL +"} +(14,1,1) = {" +bV +bL +ab +ab +bT +bT +ab +ab +bT +bT +ui +ae +Ge +tD +ui +ab +fB +cb +ab +ab +bT +bT +bT +bT +um +um +ui +BO +zR +ui +bT +bT +ab +bL +"} +(15,1,1) = {" +bV +ab +ab +ab +bT +bT +bL +cb +ab +bT +ui +zd +aM +Ln +ui +cb +fB +ab +ab +ab +ab +bT +bT +bT +bT +ui +au +In +fH +ui +bT +ab +ab +bL +"} +(16,1,1) = {" +bV +bL +ab +ab +bT +bT +ab +KZ +cb +bT +ui +iq +MO +eH +BO +ab +ap +ab +ab +ab +ab +bT +bT +bT +bT +ui +Xw +fc +hE +ui +bT +bT +ab +bL +"} +(17,1,1) = {" +bV +bL +bL +ab +bT +bT +ab +bU +bU +ab +ui +ZN +Vj +sQ +ui +ab +ab +ab +ab +cb +ab +ab +bT +bT +bT +ui +Yx +HO +XT +ui +bT +bT +ab +bL +"} +(18,1,1) = {" +bV +bL +bL +ab +bT +bT +ab +bL +bU +ab +ui +DP +Vj +kn +ui +ab +ab +ab +ab +ab +ab +ab +bT +bT +bT +ui +Yx +Hx +rd +af +bT +ab +ab +bL +"} +(19,1,1) = {" +bV +bL +bV +ab +bT +bT +ab +ab +cb +ab +Au +WQ +Hp +fd +ui +ab +qh +ab +ab +ab +ab +ab +bT +bT +bT +ui +BB +KJ +af +bT +bT +ui +ab +bL +"} +(20,1,1) = {" +bV +bL +ab +ab +bT +bT +ab +ab +ab +ab +ui +ui +BO +ui +ui +ab +fB +ab +ab +cb +ab +ab +bT +bT +bT +ui +ui +ui +af +bT +bT +ab +ab +bL +"} +(21,1,1) = {" +bV +bL +ab +ab +af +bT +bT +bT +bL +ab +cb +Ek +ab +ab +ab +ab +Hj +Zr +fP +dh +du +ab +bT +bT +bT +bT +bT +bT +bT +ui +af +bT +ab +bL +"} +(22,1,1) = {" +bV +bL +ab +ab +ui +af +bT +bT +bT +bT +ab +ab +ab +ab +ab +ab +ab +ab +ui +Px +ui +ab +bT +bT +bT +bT +bT +bT +bT +bT +bT +ab +ab +bL +"} +(23,1,1) = {" +bV +ab +ab +ab +ab +ab +bT +bT +bT +ui +bT +bT +bT +ab +ab +ab +ab +ab +ui +Vj +ui +bT +bT +bT +bT +bT +bT +bT +bT +bT +ab +ab +ab +bL +"} +(24,1,1) = {" +bV +ab +ab +cb +ab +bT +ab +bT +bT +bT +bT +af +bT +bT +bT +ui +ui +nK +sv +lZ +ui +Yd +nN +ui +af +AL +af +af +ui +bT +ab +ab +ab +bL +"} +(25,1,1) = {" +bV +bL +bV +ab +ab +bT +bT +ui +bT +bT +af +af +ui +af +bT +ui +Dp +fY +hY +Nu +ui +af +af +zO +PJ +AL +PJ +lr +to +bT +bT +bT +ab +bL +"} +(26,1,1) = {" +bV +bL +bV +cb +ab +bT +PJ +ui +ui +ui +ui +af +bT +ui +ui +ui +um +Ta +Dt +Fa +ui +bT +Gk +PJ +af +af +XD +PJ +af +bT +bT +bT +ab +bU +"} +(27,1,1) = {" +bV +bL +bL +ab +bT +lr +lr +ui +zp +vl +ui +af +TN +ui +zG +Oh +um +fm +Jw +fc +bP +BV +BG +vM +bT +bT +oG +bT +af +bT +bT +bT +ab +bU +"} +(28,1,1) = {" +bV +bL +ab +ab +bT +bT +bT +ui +BX +ZG +ui +su +af +ui +Fd +ub +Au +pn +Io +hj +ui +vo +BV +rY +bT +PJ +PJ +lr +af +bT +bT +ab +ab +bL +"} +(29,1,1) = {" +bV +bL +ab +ab +aa +bT +bT +ui +ui +Dv +ui +ui +Og +ui +ui +ic +Au +LA +no +uf +ui +af +bT +PY +pP +bT +PJ +bT +af +bT +bT +bT +ab +bL +"} +(30,1,1) = {" +bV +bL +ab +ab +lr +bT +bT +bT +Ms +uf +fc +hj +fc +cc +YK +hj +Az +BV +hj +Dz +ui +bT +Wp +ui +af +af +af +af +ui +bT +bT +ab +cb +bL +"} +(31,1,1) = {" +bV +bL +ab +ab +ab +lr +bT +sg +ui +KN +GV +Yl +ui +ui +ui +ui +ui +VO +xK +wZ +ui +bT +bT +bT +bT +bT +bT +bT +bT +bT +ab +ab +cb +bL +"} +(32,1,1) = {" +bV +bL +bL +ab +ab +bT +bT +bT +bT +bT +bT +bT +af +af +af +af +ui +ui +BO +ho +ui +bT +ab +ab +ab +bT +bT +bT +bT +bT +ab +ab +cb +bL +"} +(33,1,1) = {" +bV +bL +bL +bL +ab +ab +ab +bT +bT +bT +bT +bT +bT +bT +ui +bT +bT +bT +Po +AH +Wl +bT +ab +bV +bV +ab +ab +ab +ab +ab +ab +ab +cb +bL +"} +(34,1,1) = {" +bV +bL +bL +bV +ab +ab +ab +ab +ab +ab +ab +bT +bT +bT +bT +bT +bT +bT +ZA +oj +hx +ab +ab +bV +bV +bV +ab +ab +ab +ab +bL +bL +bU +bL +"} +(35,1,1) = {" +bV +bL +bL +bV +bL +bU +bU +cb +cb +cb +cb +ab +ab +ab +bT +bT +bT +bT +PF +RL +Wl +ab +ab +ab +ab +ab +ab +cb +bV +bV +bL +bL +bU +bL +"} +(36,1,1) = {" +bV +bL +bL +bL +bL +bL +bL +bL +bL +bL +bL +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +bL +bL +bL +bL +bL +bL +bL +bL +bL +bU +bL +"} +(37,1,1) = {" +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ab +ab +ab +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +"} diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm deleted file mode 100644 index a23f8ea91f6c..000000000000 --- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm +++ /dev/null @@ -1,1619 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/template_noop, -/area/template_noop) -"ab" = ( -/obj/effect/mapping_helpers/no_lava, -/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"ac" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/mob/living/simple_animal/bot/cleanbot, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"ad" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass{ - nitrogen = 23; - oxygen = 14; - temperature = 300 - }, -/area/lavaland/surface/outdoors) -"ae" = ( -/turf/simulated/wall/mineral/titanium/nodiagonal, -/area/ruin/powered/animal_hospital) -"af" = ( -/obj/effect/spawner/window, -/turf/simulated/floor/plating, -/area/ruin/powered/animal_hospital) -"ag" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"ah" = ( -/obj/structure/toilet, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"ai" = ( -/obj/machinery/economy/vending/coffee, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"aj" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"ak" = ( -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/item/pen/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"al" = ( -/obj/structure/table/wood, -/obj/item/toy/plushie/carpplushie, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"am" = ( -/obj/machinery/economy/vending/snack, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"an" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"ao" = ( -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"ap" = ( -/obj/structure/table, -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/machinery/defibrillator_mount/loaded{ - pixel_y = 30 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"aq" = ( -/obj/structure/table, -/obj/item/surgicaldrill, -/obj/item/bonegel, -/obj/item/bonesetter, -/obj/item/FixOVein, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"ar" = ( -/obj/structure/table, -/obj/item/surgical_drapes, -/obj/item/razor, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"as" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"at" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"au" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"av" = ( -/obj/item/reagent_containers/glass/rag, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"aw" = ( -/obj/structure/bed/roller, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"ax" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/storage/bag/trash, -/obj/item/trash/cheesie, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/bodybag, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/turf/simulated/floor/grass{ - nitrogen = 23; - oxygen = 14; - temperature = 300 - }, -/area/lavaland/surface/outdoors) -"ay" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"az" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/obj/item/paper/fluff/henderson_report, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"aA" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"aB" = ( -/obj/machinery/computer/operating{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"aC" = ( -/obj/machinery/optable, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"aD" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/cautery{ - pixel_x = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"aE" = ( -/obj/effect/baseturf_helper/lava_land/surface, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"aF" = ( -/obj/machinery/door/airlock/titanium{ - name = "Restroom" - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"aG" = ( -/obj/structure/extinguisher_cabinet{ - name = "custom placement" - }, -/turf/simulated/wall/mineral/titanium/nodiagonal, -/area/ruin/powered/animal_hospital) -"aJ" = ( -/turf/simulated/floor/plasteel/grimy{ - nitrogen = 23; - oxygen = 14; - temperature = 300 - }, -/area/lavaland/surface/outdoors) -"aK" = ( -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"aL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"aN" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/iv_bag/blood/random, -/obj/item/reagent_containers/iv_bag/blood/random, -/obj/item/reagent_containers/iv_bag/blood/random, -/obj/item/reagent_containers/iv_bag/blood/random, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"aO" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"aP" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"aQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"aR" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"aS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"aT" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/cobweb, -/obj/item/ammo_casing/shotgun/dart, -/obj/item/ammo_casing/shotgun/dart, -/obj/item/gun/projectile/revolver/doublebarrel{ - desc = "For putting critters out to pasture." - }, -/obj/item/ammo_casing/shotgun/buckshot, -/obj/item/storage/box/bodybags, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/ruin/powered/animal_hospital) -"aU" = ( -/turf/simulated/floor/plating, -/area/ruin/powered/animal_hospital) -"aV" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"aW" = ( -/obj/machinery/economy/vending/wallmed{ - pixel_y = 28 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"aX" = ( -/obj/item/stack/cable_coil/random, -/obj/item/stack/sheet/mineral/titanium{ - amount = 30 - }, -/turf/simulated/floor/plating, -/area/ruin/powered/animal_hospital) -"aY" = ( -/obj/structure/morgue, -/turf/simulated/floor/plating, -/area/ruin/powered/animal_hospital) -"aZ" = ( -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor/plating, -/area/ruin/powered/animal_hospital) -"ba" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker, -/obj/item/storage/backpack/duffel/medical, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"bb" = ( -/obj/structure/table/reinforced, -/obj/item/laser_pointer, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"bc" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"bd" = ( -/obj/structure/table/glass, -/obj/item/storage/box/gloves, -/obj/item/storage/box/masks{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"be" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/plating, -/area/ruin/powered/animal_hospital) -"bf" = ( -/obj/structure/table, -/obj/item/storage/fancy/cigarettes/dromedaryco, -/obj/item/storage/box/matches, -/turf/simulated/floor/plating, -/area/ruin/powered/animal_hospital) -"bg" = ( -/mob/living/simple_animal/cockroach, -/turf/simulated/floor/plating, -/area/ruin/powered/animal_hospital) -"bh" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/brute, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"bi" = ( -/obj/item/toy/cattoy, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"bj" = ( -/obj/structure/table/glass, -/obj/item/lazarus_injector, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"bk" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/flashlight/flare/glowstick, -/obj/item/flashlight/flare/glowstick, -/obj/item/flashlight/flare/glowstick, -/turf/simulated/floor/plating, -/area/ruin/powered/animal_hospital) -"bl" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/cookie{ - name = "doggie biscuit" - }, -/obj/item/reagent_containers/food/snacks/cookie{ - name = "doggie biscuit" - }, -/obj/item/reagent_containers/food/snacks/cookie{ - name = "doggie biscuit" - }, -/obj/item/reagent_containers/food/snacks/cookie{ - name = "doggie biscuit" - }, -/obj/item/reagent_containers/food/snacks/cookie{ - name = "doggie biscuit" - }, -/obj/item/reagent_containers/food/snacks/cookie{ - name = "doggie biscuit" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/economy/vending/crittercare/free, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bn" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"bo" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"bp" = ( -/obj/structure/closet/crate, -/obj/item/trash/pistachios, -/obj/item/lipstick/random, -/obj/item/seeds/apple, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bq" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"br" = ( -/obj/structure/chair/office, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bs" = ( -/obj/structure/table/reinforced, -/obj/item/phone, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bt" = ( -/obj/item/kirbyplants, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bu" = ( -/obj/structure/chair/comfy/teal{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bv" = ( -/obj/effect/mob_spawn/human/alive/doctor/lavaland{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"bx" = ( -/obj/machinery/door/airlock/medical{ - name = "Rejuvenation Pods" - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"by" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bz" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/regular, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bA" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen/multi, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bB" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/hug, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bD" = ( -/mob/living/simple_animal/bot/medbot{ - desc = "A little medical robot. It's programmed to only act in emergencies."; - heal_threshold = 40; - name = "emergency Medibot" - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"bE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/closet/critter/random, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bG" = ( -/obj/structure/chair/comfy/teal{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bH" = ( -/obj/structure/table, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/tank/internals/oxygen, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bI" = ( -/obj/structure/sign/medbay/alt{ - name = "animal hospital" - }, -/turf/simulated/wall/mineral/titanium/nodiagonal, -/area/ruin/powered/animal_hospital) -"bJ" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Ian's Pet Care" - }, -/obj/structure/fans/tiny/invisible, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bL" = ( -/turf/simulated/floor/grass{ - nitrogen = 23; - oxygen = 14; - temperature = 300 - }, -/area/lavaland/surface/outdoors) -"bM" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/grass{ - nitrogen = 23; - oxygen = 14; - temperature = 300 - }, -/area/lavaland/surface/outdoors) -"bO" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass{ - nitrogen = 23; - oxygen = 14; - temperature = 300 - }, -/area/lavaland/surface/outdoors) -"bP" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/fire, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"bQ" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"bR" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/melee/baton/cattleprod{ - desc = "On-the-fly rabies treatment."; - name = "cattle prod" - }, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bS" = ( -/obj/structure/closet, -/obj/item/defibrillator/loaded, -/obj/item/storage/belt/medical, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bT" = ( -/obj/item/pickaxe, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/no_lava, -/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"bU" = ( -/obj/effect/decal/remains/human, -/obj/effect/mapping_helpers/no_lava, -/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"bV" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/no_lava, -/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"bW" = ( -/obj/structure/fans/tiny/invisible, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"bX" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/turf/simulated/floor/grass{ - nitrogen = 23; - oxygen = 14; - temperature = 300 - }, -/area/lavaland/surface/outdoors) -"bY" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/grass{ - nitrogen = 23; - oxygen = 14; - temperature = 300 - }, -/area/lavaland/surface/outdoors) -"bZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/turf/simulated/floor/grass{ - nitrogen = 23; - oxygen = 14; - temperature = 300 - }, -/area/lavaland/surface/outdoors) -"ca" = ( -/obj/machinery/atmospherics/unary/tank/air{ - dir = 1 - }, -/turf/simulated/floor/grass{ - nitrogen = 23; - oxygen = 14; - temperature = 300 - }, -/area/lavaland/surface/outdoors) -"cb" = ( -/obj/machinery/atmospherics/binary/valve, -/turf/simulated/floor/grass{ - nitrogen = 23; - oxygen = 14; - temperature = 300 - }, -/area/lavaland/surface/outdoors) -"cc" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/wall/mineral/titanium/nodiagonal, -/area/ruin/powered/animal_hospital) -"cd" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"ce" = ( -/obj/machinery/atmospherics/unary/portables_connector{ - dir = 1 - }, -/obj/machinery/atmospherics/portable/pump, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"cf" = ( -/obj/structure/closet/l3closet, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"cg" = ( -/obj/machinery/door/airlock/titanium{ - name = "Break Room" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"ch" = ( -/obj/machinery/door/airlock/titanium{ - name = "Operating Theatre" - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"ci" = ( -/obj/structure/fans/tiny/invisible, -/obj/machinery/door/airlock/titanium{ - desc = "There's a smudged note wedged into it that says something about pizza dropoffs."; - name = "Staff Entrance" - }, -/turf/simulated/floor/plating, -/area/ruin/powered/animal_hospital) -"cj" = ( -/obj/machinery/door/airlock/titanium{ - name = "Morgue" - }, -/turf/simulated/floor/plating, -/area/ruin/powered/animal_hospital) -"ck" = ( -/obj/machinery/door/airlock/titanium{ - name = "Medical Supplies" - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"cl" = ( -/obj/machinery/door/airlock/titanium{ - name = "Safety Supplies" - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"cm" = ( -/obj/machinery/door/airlock/titanium{ - name = "Storage" - }, -/turf/simulated/floor/plating, -/area/ruin/powered/animal_hospital) -"cn" = ( -/obj/machinery/light, -/turf/simulated/floor/grass{ - nitrogen = 23; - oxygen = 14; - temperature = 300 - }, -/area/lavaland/surface/outdoors) -"cp" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/mapping_helpers/no_lava, -/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"cq" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"cr" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"cs" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"cv" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"cw" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"cx" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/grass{ - nitrogen = 23; - oxygen = 14; - temperature = 300 - }, -/area/lavaland/surface/outdoors) -"cy" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"cz" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/ruin/powered/animal_hospital) -"cC" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/grass{ - nitrogen = 23; - oxygen = 14; - temperature = 300 - }, -/area/lavaland/surface/outdoors) -"cD" = ( -/obj/structure/flora/ausbushes/sunnybush, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/grass{ - nitrogen = 23; - oxygen = 14; - temperature = 300 - }, -/area/lavaland/surface/outdoors) -"cE" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/mapping_helpers/no_lava, -/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"cG" = ( -/obj/machinery/door/airlock/titanium{ - desc = "There's a smudged note wedged into it that says something about pizza dropoffs."; - name = "Staff Entrance" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"cI" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/toxin, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) -"cJ" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/ruin/powered/animal_hospital) - -(1,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(2,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -"} -(3,1,1) = {" -aa -aa -aa -aa -aa -ab -ab -ab -ab -aJ -ab -ab -cx -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -bU -bV -ab -ab -"} -(4,1,1) = {" -aa -aa -aa -aa -aa -ab -cp -ax -bL -aJ -bL -ae -ae -ae -ae -ae -aa -aa -aa -aa -ab -ab -ab -bT -ab -ab -ab -ab -"} -(5,1,1) = {" -aa -aa -aa -aa -ae -ae -ae -ae -ae -ci -ae -ae -aT -aY -bf -ae -ae -ae -ae -ae -ae -bL -ab -ab -ab -ab -ab -ab -"} -(6,1,1) = {" -aa -aa -aa -ab -ae -ag -cq -ay -ae -aK -aK -cj -aU -aZ -bg -cj -aK -bp -by -bF -ae -cC -bL -ab -ab -ab -ab -ab -"} -(7,1,1) = {" -aa -ab -ab -ab -ae -ah -ag -ag -aF -aK -aK -ae -ae -ae -ae -ae -cz -bq -bz -aP -af -ad -bL -bL -ab -ab -bL -bL -"} -(8,1,1) = {" -aa -ab -ab -cn -ae -ae -ae -ae -aG -aL -cw -ae -aV -ba -cI -aG -aL -br -bA -aP -af -bL -bL -bL -bL -ab -ab -ab -"} -(9,1,1) = {" -ab -ab -bL -bL -ae -ai -cr -as -cg -aK -aP -ae -aW -ao -bi -ae -aL -bs -bB -aP -bI -bM -bL -ab -ab -ab -ab -ab -"} -(10,1,1) = {" -ab -ab -ab -bL -af -aj -at -as -ae -aL -aK -ck -ao -bb -ao -ck -aK -aK -aK -aK -bJ -aJ -aJ -aJ -ab -ab -ab -ab -"} -(11,1,1) = {" -ab -bL -bL -bL -af -ak -as -az -ae -cv -aP -ae -ae -ae -ae -ae -bl -bt -aE -aK -bW -aJ -aJ -ab -ab -bL -ab -ab -"} -(12,1,1) = {" -ab -bL -bL -ad -af -al -au -as -ae -aL -aK -cl -ao -bc -ao -cl -aK -aK -aK -aP -ae -cD -bL -bL -ab -ab -ab -ab -"} -(13,1,1) = {" -ab -ab -bL -bL -ae -am -cs -as -cG -aK -ac -ae -aW -ao -ao -ae -bm -bu -bu -bG -ae -bL -bO -bL -ab -ab -ab -ab -"} -(14,1,1) = {" -ab -bL -bX -ca -ae -ae -ae -ae -aG -aL -aP -ae -cf -bd -bj -ae -ae -ae -ae -ae -ae -ae -ae -ae -ab -ab -aa -aa -"} -(15,1,1) = {" -ab -ab -bY -ca -ae -cd -an -aA -ae -cv -aP -ae -ae -ae -ae -ae -bh -bv -bv -cJ -bn -bv -bP -ae -cE -ab -aa -aa -"} -(16,1,1) = {" -aa -ab -bZ -cb -cc -ce -ao -ao -ch -aK -aK -cm -aX -be -bk -ae -bo -ao -bD -ao -ao -ao -bQ -ae -ab -aa -aa -aa -"} -(17,1,1) = {" -aa -ab -ab -cn -ae -ap -ao -aB -ae -aL -aP -ae -ae -ae -ae -ae -af -bx -af -ae -af -bx -af -ae -aa -aa -aa -aa -"} -(18,1,1) = {" -aa -aa -ab -bL -ae -aq -ao -aC -ae -aN -aQ -aS -aS -aS -aS -aS -av -aK -bE -bH -aS -aK -bR -ae -aa -aa -aa -aa -"} -(19,1,1) = {" -aa -aa -ab -ab -ae -ar -aw -aD -ae -aO -aR -aR -cy -aR -aR -aR -cy -aR -aR -aR -cy -aR -bS -ae -aa -aa -aa -aa -"} -(20,1,1) = {" -aa -aa -aa -ab -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -aa -aa -aa -"} diff --git a/_maps/map_files/RandomRuins/SpaceRuins/abandonedtele.dmm b/_maps/map_files/RandomRuins/SpaceRuins/abandonedtele.dmm index c0ef0afc2ae8..692fb9b06487 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/abandonedtele.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/abandonedtele.dmm @@ -36,9 +36,7 @@ /turf/simulated/floor/plating/airless, /area/ruin/space/abandtele) "j" = ( -/obj/effect/spawner/window/reinforced{ - useFull = 0 - }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating/airless, /area/ruin/space/abandtele) "k" = ( diff --git a/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm b/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm index 59e24208ce12..390bf2401ea0 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm @@ -14,12 +14,12 @@ /turf/simulated/floor/plating/airless, /area/ruin/space/unpowered) "ac" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/unpowered) "ad" = ( @@ -67,7 +67,7 @@ /turf/simulated/floor/plating/airless, /area/ruin/space/unpowered) "ag" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/unpowered) "ah" = ( @@ -81,12 +81,12 @@ /turf/simulated/floor/plating/asteroid/airless, /area/ruin/space/unpowered) "ak" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/unpowered) "al" = ( diff --git a/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm b/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm index 48f5e43beb80..86f648e16b17 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm @@ -681,6 +681,10 @@ }, /turf/simulated/floor/plating/airless, /area/ruin/space/tcommsat) +"Th" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating/airless, +/area/ruin/space/tcommsat) "Tt" = ( /obj/structure/kitchenspike, /obj/effect/decal/cleanable/blood, @@ -1780,7 +1784,7 @@ Is Wc Wc Is -QN +Th PO PO PO @@ -1835,7 +1839,7 @@ Is Wc Wc rM -QN +Th nX nX Zi @@ -1889,7 +1893,7 @@ Em Bq ko KR -QN +Th nX nX SS @@ -1943,7 +1947,7 @@ Wc Wc WC Up -QN +Th nX nX Zi @@ -1996,7 +2000,7 @@ Wc Wc Is Wc -QN +Th PO PO PO diff --git a/_maps/map_files/RandomRuins/SpaceRuins/derelict2.dmm b/_maps/map_files/RandomRuins/SpaceRuins/derelict2.dmm index a964752abf81..b2789d61ecab 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/derelict2.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/derelict2.dmm @@ -31,7 +31,7 @@ /turf/simulated/wall, /area/ruin/space/powered) "g" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/powered) "h" = ( diff --git a/_maps/map_files/RandomRuins/SpaceRuins/moonoutpost19.dmm b/_maps/map_files/RandomRuins/SpaceRuins/moonoutpost19.dmm index 0a93480dd923..955f79d52c40 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/moonoutpost19.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/moonoutpost19.dmm @@ -25,7 +25,7 @@ id_tag = "Awaybiohazard"; name = "Acid-Proof biohazard containment door" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/unpowered) "ai" = ( @@ -247,7 +247,7 @@ name = "Acid-Proof containment chamber blast door" }, /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/unpowered) "aF" = ( @@ -636,7 +636,7 @@ id_tag = "Awaylab"; name = "Acid-Proof containment chamber blast door" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/unpowered) "br" = ( @@ -1328,7 +1328,7 @@ name = "Acid-Proof containment chamber blast door" }, /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/unpowered) "cD" = ( @@ -1521,7 +1521,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/unpowered) "cU" = ( @@ -2948,7 +2948,7 @@ }, /area/ruin/space/unpowered) "fM" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating/airless{ name = "plating" }, @@ -4216,7 +4216,7 @@ desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; name = "\improper HOSTILE ATMOSPHERE AHEAD" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/unpowered) "iB" = ( @@ -4896,7 +4896,7 @@ /area/ruin/space/unpowered) "kg" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/unpowered) "kh" = ( @@ -4980,6 +4980,10 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel/airless, /area/ruin/space/unpowered) +"Wd" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/ruin/space/unpowered) (1,1,1) = {" aa @@ -6156,7 +6160,7 @@ ag fC bB gH -bX +Wd ad hu ij @@ -6216,7 +6220,7 @@ af fD bB gI -bX +Wd ad hu ik @@ -6276,7 +6280,7 @@ ag fE bA gH -bX +Wd ad hO ij @@ -6396,7 +6400,7 @@ ag fG gd gH -bX +Wd hu hP hP @@ -6456,7 +6460,7 @@ af fD ge gI -bX +Wd hu hQ im @@ -6516,13 +6520,13 @@ ag fH gf gI -bX +Wd ad ad ad -bX +Wd iV -bX +Wd ad ad ad @@ -6582,7 +6586,7 @@ ad ad iA bP -bX +Wd ad ad ad @@ -6638,13 +6642,13 @@ gh gK aM aM -bX -bX -bX +Wd +Wd +Wd iW -bX -bX -bX +Wd +Wd +Wd aM aM aM @@ -6819,12 +6823,12 @@ ak hg hx hT -bX -bX +Wd +Wd aM -bX -bX -bX +Wd +Wd +Wd aM jL jV @@ -6879,7 +6883,7 @@ gN aL aL aL -bX +Wd ad iY ad @@ -7531,7 +7535,7 @@ ad ad ad ad -bX +Wd fp ak gf @@ -7591,7 +7595,7 @@ ad ad ad ad -bX +Wd fq ak gd @@ -8309,7 +8313,7 @@ ad ad ad ad -bX +Wd eO fe fv @@ -8369,7 +8373,7 @@ ad ad ad ad -bX +Wd eP ff fv @@ -8429,7 +8433,7 @@ ad ad ad ad -bX +Wd eQ fg fw @@ -8621,7 +8625,7 @@ hJ ia ib iN -bX +Wd ad ad ad @@ -8681,7 +8685,7 @@ dL ib ia iO -bX +Wd ad ad ad @@ -8741,7 +8745,7 @@ dL ia ia iP -bX +Wd ad ad ad @@ -8913,7 +8917,7 @@ ab aL aL aM -bX +Wd aL aL aL diff --git a/_maps/map_files/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/map_files/RandomRuins/SpaceRuins/oldstation.dmm index 5a9170d64f6c..9d516a618b19 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/oldstation.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/oldstation.dmm @@ -59,10 +59,10 @@ /turf/simulated/wall, /area/ruin/ancientstation/comm) "an" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor{ id_tag = "ancient" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/ancientstation/comm) "ao" = ( @@ -578,7 +578,7 @@ /turf/simulated/wall, /area/ruin/ancientstation) "bM" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/ancientstation/thetacorridor) "bN" = ( @@ -639,13 +639,13 @@ /turf/template_noop, /area/template_noop) "bW" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/transit_tube, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating/airless, /area/ruin/ancientstation/betanorth) "bX" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/transit_tube, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/ancientstation) "bY" = ( @@ -742,8 +742,8 @@ /turf/simulated/floor/plasteel, /area/ruin/ancientstation) "cj" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/transit_tube, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/ancientstation/thetacorridor) "ck" = ( @@ -1672,7 +1672,7 @@ /turf/simulated/floor/plating/airless, /area/ruin/ancientstation/betanorth) "eC" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/ancientstation/engi) "eD" = ( @@ -2182,7 +2182,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -2414,7 +2414,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -2429,12 +2429,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/spawner/window/reinforced, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/ancientstation/thetacorridor) "ga" = ( @@ -4131,7 +4131,7 @@ /turf/simulated/floor/engine/vacuum, /area/ruin/ancientstation/atmo) "jL" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating/airless, /area/ruin/ancientstation/atmo) "jM" = ( @@ -4471,7 +4471,7 @@ /turf/simulated/floor/engine, /area/ruin/ancientstation/atmo) "kE" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/ancientstation/proto) "kF" = ( @@ -5041,6 +5041,10 @@ /obj/structure/lattice, /turf/template_noop, /area/space/nearstation) +"AP" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/ruin/ancientstation) "AY" = ( /obj/machinery/recharge_station, /obj/effect/decal/cleanable/dirt, @@ -5062,6 +5066,10 @@ /obj/machinery/door/airlock/maintenance_hatch, /turf/simulated/floor/plating, /area/ruin/ancientstation/thetacorridor) +"TF" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating/airless, +/area/ruin/ancientstation/betanorth) "Xq" = ( /mob/living/simple_animal/hostile/hivebot, /obj/effect/decal/cleanable/dirt, @@ -5514,9 +5522,9 @@ aa aa aa bf -bz +TF bW -bz +TF bf uQ uQ @@ -6282,9 +6290,9 @@ aa aa aa az -bA +AP bX -bA +AP cU eJ dN @@ -6741,7 +6749,7 @@ kJ bC jP bC -bA +AP aa aa aa @@ -6837,7 +6845,7 @@ kK dV jQ kG -bA +AP aa aa aa @@ -6933,7 +6941,7 @@ jP bC jP bC -bA +AP aa aa aa @@ -7338,9 +7346,9 @@ aa aa aa az -bA +AP bX -bA +AP dg el eI @@ -7354,9 +7362,9 @@ eQ lG lM dg -bA +AP bX -bA +AP az aa aa diff --git a/_maps/map_files/RandomRuins/SpaceRuins/onehalf.dmm b/_maps/map_files/RandomRuins/SpaceRuins/onehalf.dmm index f7ed945514fe..4f107ee8cf6a 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/onehalf.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/onehalf.dmm @@ -53,7 +53,7 @@ /turf/simulated/wall, /area/ruin/space/onehalf/dorms_med) "ah" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/onehalf/dorms_med) "ai" = ( @@ -400,8 +400,8 @@ /turf/simulated/floor/plasteel, /area/ruin/space/onehalf/drone_bay) "bc" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/disposalpipe/segment, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/onehalf/drone_bay) "bd" = ( @@ -582,7 +582,7 @@ /turf/simulated/floor/plating, /area/ruin/space/onehalf/drone_bay) "bt" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/onehalf/drone_bay) "bu" = ( @@ -689,9 +689,7 @@ /turf/simulated/floor/plating/airless, /area/ruin/space/onehalf/hallway) "bK" = ( -/obj/machinery/economy/vending/coffee{ - name = "\improper Solar's Best Hot Drinks" - }, +/obj/machinery/economy/vending/coffee, /obj/effect/landmark/damageturf, /turf/simulated/floor/plasteel/airless, /area/ruin/space/onehalf/hallway) @@ -758,11 +756,11 @@ /turf/simulated/floor/plating/airless, /area/ruin/space/onehalf/hallway) "cc" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/preopen{ id_tag = "onehalf bridge"; name = "bridge blast door" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/onehalf/abandonedbridge) "cd" = ( @@ -841,7 +839,6 @@ /turf/template_noop, /area/space/nearstation) "co" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -849,6 +846,7 @@ id_tag = "onehalf bridge"; name = "bridge blast door" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/onehalf/abandonedbridge) "cp" = ( @@ -892,7 +890,7 @@ /turf/simulated/floor/plasteel, /area/ruin/space/onehalf/abandonedbridge) "cu" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -962,7 +960,6 @@ /turf/simulated/floor/plasteel, /area/ruin/space/onehalf/abandonedbridge) "cD" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -972,6 +969,7 @@ id_tag = "onehalf bridge"; name = "bridge blast door" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/onehalf/abandonedbridge) "cE" = ( @@ -1060,7 +1058,7 @@ /turf/template_noop, /area/ruin/space/onehalf/hallway) "cU" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/onehalf/hallway) "cV" = ( @@ -1082,7 +1080,7 @@ /turf/simulated/floor/plasteel, /area/ruin/space/onehalf/abandonedbridge) "cY" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -1154,7 +1152,7 @@ /turf/simulated/floor/plating/airless, /area/ruin/space/onehalf/hallway) "dk" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -1170,7 +1168,6 @@ /turf/simulated/floor/plating, /area/ruin/space/onehalf/abandonedbridge) "dl" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -1181,10 +1178,10 @@ id_tag = "onehalf bridge"; name = "bridge blast door" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/onehalf/abandonedbridge) "dm" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -1201,10 +1198,11 @@ id_tag = "onehalf bridge"; name = "bridge blast door" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/onehalf/abandonedbridge) "dn" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" diff --git a/_maps/map_files/RandomRuins/SpaceRuins/spacebar.dmm b/_maps/map_files/RandomRuins/SpaceRuins/spacebar.dmm index a68837612a79..73a5c1395adf 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/spacebar.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/spacebar.dmm @@ -23,12 +23,9 @@ }, /area/ruin/space/powered/bar) "af" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/powered) -"ag" = ( -/turf/simulated/floor/plating/asteroid/ancient, -/area/ruin/space/powered) "ah" = ( /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/blood, @@ -173,7 +170,7 @@ /turf/simulated/floor/plating/airless, /area/ruin/space/powered) "aQ" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/ruin/space/powered/bar) "aS" = ( @@ -336,7 +333,7 @@ /area/space/nearstation) "bt" = ( /obj/effect/decal/warning_stripes/south, -/turf/simulated/floor/plating/airless, +/turf/simulated/floor/plating, /area/ruin/space/powered) "bF" = ( /obj/machinery/light/small{ @@ -608,7 +605,7 @@ /turf/simulated/floor/plating, /area/ruin/space/powered/bar) "zy" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/space/nearstation) "zC" = ( @@ -894,7 +891,7 @@ "RX" = ( /obj/effect/decal/warning_stripes/south, /obj/structure/marker_beacon/dock_marker, -/turf/simulated/floor/plating/airless, +/turf/simulated/floor/plating, /area/ruin/space/powered) "Sy" = ( /turf/simulated/floor/plasteel{ @@ -1136,7 +1133,7 @@ ac ac ab ab -ag +JK ai ai aG @@ -1187,24 +1184,24 @@ ad ab ab ab -ag +JK bj ai -ag +JK Nr -ag -ag -ag +JK +JK +JK aG af af af af aG -ag -ag -ag -ag +JK +JK +JK +JK aG ab ab @@ -1240,23 +1237,23 @@ ab ab ab ai -ag +JK Ow -ag -ag -ag +JK +JK +JK bj -ag +JK Nr -ag -ag -ag -ag +JK +JK +JK +JK Nr -ag -ag -ag -ag +JK +JK +JK +JK QG ai ai @@ -1290,29 +1287,29 @@ ad ad ab ab -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK ai ai -ag +JK bj ai ai -ag +JK ai -ag -ag +JK +JK Ow bj -ag +JK af ad ad @@ -1343,26 +1340,26 @@ ab ab ab bj -ag +JK aj aj aj aA -ag -ag -ag -ag +JK +JK +JK +JK bj ai ai ai ai Ow -ag +JK bj -ag -ag -ag +JK +JK +JK bq aJ aJ @@ -1395,27 +1392,27 @@ ab ab ab ai -ag +JK ak Cx ax aB -ag -ag -ag +JK +JK +JK ai -ag -ag +JK +JK ai ai ai ai -ag -ag -ag -ag -ag -ag +JK +JK +JK +JK +JK +JK RX au aP @@ -1447,27 +1444,27 @@ ab ac ab ab -ag +JK aj aj aj aA -ag -ag -ag -ag -ag +JK +JK +JK +JK +JK ai ai -ag +JK bj -ag -ag -ag -ag +JK +JK +JK +JK bj -ag -ag +JK +JK bt au bo @@ -1501,25 +1498,25 @@ ac ab ai Ow -ag -ag -ag +JK +JK +JK bj -ag -ag -ag +JK +JK +JK Ow -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK bt au bo @@ -1553,25 +1550,25 @@ ab ab ai ai -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK bt au bo @@ -1603,27 +1600,27 @@ ab ab ab ab -ag -ag -ag +JK +JK +JK aj aj aj aA -ag -ag -ag -ag +JK +JK +JK +JK aj aj aj aA -ag -ag -ag -ag -ag -ag +JK +JK +JK +JK +JK +JK RX au aP @@ -1655,26 +1652,26 @@ ac ab ab Ow -ag +JK bj -ag +JK ak ax ax aB -ag -ag +JK +JK bj -ag +JK ak ax ax aB -ag -ag -ag +JK +JK +JK bj -ag +JK bq aJ aJ @@ -1706,25 +1703,25 @@ ac ab ab ab -ag +JK Nl -ag -ag +JK +JK aj aj aj aA -ag -ag -ag -ag +JK +JK +JK +JK aj aj aj aA -ag -ag -ag +JK +JK +JK Ow Nl Ow @@ -1761,20 +1758,20 @@ Np ai Ow Ow -ag -ag -ag -ag -ag -ag -ag -ag +JK +JK +JK +JK +JK +JK +JK +JK bj -ag -ag -ag -ag -ag +JK +JK +JK +JK +JK Ow bj ai @@ -1813,20 +1810,20 @@ ab ab ab ai -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK +JK ai ai ai @@ -1864,16 +1861,16 @@ ab ab ab ai -ag +JK ai -ag +JK ai vT FO rN -ag -ag -ag +JK +JK +JK JW KO ai @@ -1881,8 +1878,8 @@ ai ai ai ai -ag -ag +JK +JK ai ai ab @@ -1917,7 +1914,7 @@ ab ab ab ab -ag +JK ai ai am @@ -1934,8 +1931,8 @@ ai ai JK ai -ag -ag +JK +JK ab ab ab diff --git a/_maps/map_files/cerestation/cerestation.dmm b/_maps/map_files/cerestation/cerestation.dmm index f6a8135e5a89..97c8ed64c755 100644 --- a/_maps/map_files/cerestation/cerestation.dmm +++ b/_maps/map_files/cerestation/cerestation.dmm @@ -21,7 +21,7 @@ /turf/simulated/wall/r_wall, /area/station/science/toxins/test) "aae" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating/airless, /area/station/maintenance/disposal/external/north) "aaf" = ( @@ -114,7 +114,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/external/north) "aaS" = ( @@ -267,7 +267,7 @@ /turf/space, /area/space) "abO" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/firedoor, /obj/structure/cable/orange{ d1 = 4; @@ -288,7 +288,7 @@ /turf/simulated/floor/plating, /area/station/security/permabrig) "abP" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/firedoor, /obj/structure/cable/orange{ d2 = 8; @@ -327,7 +327,7 @@ /area/station/hallway/primary/port/north) "abV" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/external/north) "abW" = ( @@ -1030,7 +1030,7 @@ "afR" = ( /obj/machinery/power/terminal, /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/shutters/preopen{ dir = 1; id_tag = "aisat" @@ -1997,7 +1997,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/north) "alS" = ( @@ -2037,7 +2037,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/northeast) "amo" = ( @@ -2072,7 +2072,7 @@ /turf/simulated/floor/plating/airless, /area/station/maintenance/disposal/north) "amx" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/northeast) "amy" = ( @@ -2187,7 +2187,7 @@ /area/station/maintenance/gambling_den) "amU" = ( /obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -2213,7 +2213,7 @@ /area/station/maintenance/disposal/north) "and" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/north) "ang" = ( @@ -2427,7 +2427,7 @@ /turf/simulated/floor/plasteel, /area/station/supply/office) "aox" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -2703,7 +2703,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/turret_protected/aisat/interior/secondary) "aqb" = ( @@ -2789,10 +2789,10 @@ /turf/simulated/floor/plating/airless, /area/station/maintenance/disposal) "aqq" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal) "aqt" = ( @@ -3018,11 +3018,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating/airless, /area/station/maintenance/disposal) "arV" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -3071,7 +3071,7 @@ /turf/simulated/wall/r_wall, /area/station/security/brig) "ase" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -3222,7 +3222,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/disposal/northeast) "asY" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "hos" }, /obj/structure/cable/orange{ @@ -3275,6 +3275,10 @@ /obj/item/shovel, /turf/simulated/floor/plating, /area/station/maintenance/fore2) +"atp" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "atr" = ( /obj/structure/table, /obj/item/restraints/handcuffs, @@ -3362,7 +3366,7 @@ /area/station/maintenance/disposal) "aug" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/northeast) "auh" = ( @@ -3778,7 +3782,7 @@ /turf/simulated/floor/plating/airless, /area/station/maintenance/disposal/northeast) "awp" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/sign/securearea, /obj/structure/cable/orange, /turf/simulated/floor/plating, @@ -3831,14 +3835,14 @@ }, /area/station/security/brig) "awD" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "hos" }, /obj/structure/cable/orange, /turf/simulated/floor/plating, /area/station/command/office/hos) "awE" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -4024,7 +4028,7 @@ }, /area/station/telecomms/chamber) "axu" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -5376,7 +5380,7 @@ }, /area/station/security/storage) "aGX" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "aHa" = ( @@ -5887,7 +5891,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore) "aKG" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -5907,7 +5911,7 @@ /turf/simulated/floor/plating, /area/station/security/warden) "aKH" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d1 = 4; d2 = 8; @@ -5996,7 +6000,7 @@ }, /area/station/security/main) "aLq" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "process" }, /obj/structure/cable/orange{ @@ -6455,7 +6459,7 @@ /turf/simulated/wall, /area/station/command/bridge) "aOg" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -7168,7 +7172,7 @@ }, /area/station/supply/office) "aSl" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d1 = 4; d2 = 8; @@ -7288,7 +7292,7 @@ name = "Security Blast Door"; opacity = 0 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "aSG" = ( @@ -7305,7 +7309,7 @@ /turf/simulated/floor/plating, /area/station/hallway/primary/central) "aSH" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange, /obj/structure/cable/orange{ d1 = 1; @@ -7334,7 +7338,7 @@ name = "Security Blast Door"; opacity = 0 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -7555,7 +7559,7 @@ }, /area/station/security/prison/cell_block/A) "aTY" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -7656,7 +7660,7 @@ }, /area/station/security/prison/cell_block/A) "aUu" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -9208,7 +9212,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore) "bcg" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "cmo" }, /obj/structure/cable/orange{ @@ -9714,7 +9718,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/ai_monitored/storage/eva) "bet" = ( @@ -9788,7 +9792,7 @@ }, /area/station/hallway/primary/starboard/north) "beE" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -10001,7 +10005,7 @@ /turf/simulated/floor/plasteel/freezer, /area/station/medical/virology) "bfs" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/firedoor, /obj/structure/cable/orange{ d2 = 4; @@ -10826,7 +10830,7 @@ /turf/space, /area/space/nearstation) "bjG" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "cmo" }, /obj/structure/cable/orange{ @@ -10853,7 +10857,7 @@ /turf/simulated/floor/plating, /area/station/command/office/cmo) "bjH" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "cmo" }, /obj/structure/cable/orange{ @@ -13753,7 +13757,7 @@ }, /area/station/public/fitness) "bvY" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange, /obj/structure/cable/orange{ d1 = 1; @@ -14942,11 +14946,11 @@ /turf/simulated/floor/plating/asteroid/ancient, /area/station/maintenance/storage) "bAD" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; id_tag = "hopshutter" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/office/hop) "bAE" = ( @@ -15295,7 +15299,7 @@ }, /area/station/medical/medbay) "bCm" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/firedoor, /obj/structure/cable/orange{ d1 = 1; @@ -15381,7 +15385,7 @@ /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) "bCC" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/disposalpipe/segment, /obj/machinery/door/poddoor/preopen{ id_tag = "XenoPod1"; @@ -17675,7 +17679,7 @@ }, /area/station/engineering/control) "bLX" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -17687,7 +17691,7 @@ /turf/simulated/floor/plating, /area/station/command/office/ce) "bLY" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -17704,7 +17708,7 @@ /turf/simulated/floor/plating, /area/station/command/office/ce) "bLZ" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d1 = 1; d2 = 4; @@ -17723,7 +17727,7 @@ /turf/simulated/floor/plating, /area/station/command/office/ce) "bMb" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -18810,7 +18814,7 @@ /turf/simulated/wall, /area/station/engineering/atmos) "bQC" = ( -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -19486,7 +19490,6 @@ id_tag = "kitchen2" }, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Kitchen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, @@ -20014,7 +20017,7 @@ }, /area/station/engineering/atmos) "bVa" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -20950,7 +20953,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/storage) "bZA" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarport) "bZB" = ( @@ -21231,7 +21234,7 @@ }, /area/station/security/processing) "ccG" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -21239,7 +21242,7 @@ /turf/simulated/floor/plating, /area/station/security/warden) "ccI" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -21258,7 +21261,6 @@ dir = 1 }, /obj/machinery/door/window/reinforced/normal{ - dir = 2; name = "Secure Armory" }, /obj/machinery/door/firedoor, @@ -21841,7 +21843,7 @@ /turf/simulated/floor/plating/asteroid/ancient, /area/station/maintenance/asmaint) "cfL" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "process" }, /obj/structure/cable/orange{ @@ -21858,7 +21860,7 @@ /turf/simulated/floor/plating, /area/station/security/processing) "cfM" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "process" }, /obj/structure/cable/orange, @@ -22200,7 +22202,7 @@ /turf/simulated/floor/plasteel, /area/station/security/lobby) "chC" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -22558,7 +22560,7 @@ name = "Biohazard Shutter"; opacity = 0 }, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/mixing) "cjM" = ( @@ -23232,7 +23234,7 @@ }, /area/station/security/warden) "coo" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange, /turf/simulated/floor/plating, /area/station/security/armory/secure) @@ -23472,7 +23474,7 @@ }, /area/station/science/xenobiology) "cpJ" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -23611,7 +23613,7 @@ name = "Biohazard Shutter"; opacity = 0 }, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/launch) "cqi" = ( @@ -23764,7 +23766,7 @@ }, /area/station/maintenance/fsmaint) "cra" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -23943,7 +23945,7 @@ }, /area/station/science/hallway) "csG" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "csK" = ( @@ -23982,7 +23984,7 @@ /turf/simulated/mineral/ancient/outer, /area/station/maintenance/disposal/northwest) "csQ" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "XenoPod6"; name = "containment door 6" @@ -24267,7 +24269,7 @@ /turf/simulated/floor/plasteel/white, /area/station/science/hallway) "cuF" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "rd" }, /obj/structure/cable/orange{ @@ -24577,7 +24579,7 @@ /turf/simulated/floor/engine, /area/station/science/explab/chamber) "cwF" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -24685,7 +24687,7 @@ }, /area/station/maintenance/apmaint) "cxp" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d1 = 1; d2 = 2; @@ -24747,7 +24749,7 @@ }, /area/station/maintenance/port) "cxE" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d1 = 1; d2 = 8; @@ -24785,7 +24787,7 @@ }, /area/station/science/toxins/mixing) "cxO" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -24798,7 +24800,7 @@ /turf/simulated/floor/plating, /area/station/security/warden) "cxQ" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -25493,7 +25495,7 @@ }, /area/station/security/lobby) "cBP" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -26279,7 +26281,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "cGc" = ( @@ -26304,7 +26306,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "cGh" = ( @@ -27449,7 +27451,6 @@ /area/station/supply/office) "cLE" = ( /obj/machinery/door/window/brigdoor{ - dir = 2; id = "Cell 6"; name = "Cell 6" }, @@ -27568,7 +27569,7 @@ }, /area/station/supply/office) "cMg" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "bridge" }, /obj/structure/cable/orange{ @@ -28209,7 +28210,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "cOz" = ( @@ -28278,7 +28279,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "cOL" = ( @@ -29585,7 +29586,6 @@ dir = 1 }, /obj/machinery/door/window{ - dir = 2; name = "Desk Door" }, /obj/item/desk_bell{ @@ -29974,7 +29974,7 @@ /area/station/maintenance/turbine) "cVb" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/turbine) "cVd" = ( @@ -30186,7 +30186,7 @@ /turf/simulated/floor/transparent/glass/reinforced, /area/station/maintenance/fore) "cWa" = ( -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -30222,7 +30222,7 @@ /turf/simulated/floor/plasteel, /area/station/command/office/ce) "cWc" = ( -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -30802,7 +30802,6 @@ icon_state = "1-8" }, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Containment Pen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, @@ -31130,7 +31129,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/maintenance/storage) "ddC" = ( @@ -31358,7 +31357,7 @@ }, /area/station/engineering/atmos) "deg" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -31683,7 +31682,6 @@ dir = 8 }, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Cryo Tank Storage" }, /obj/machinery/light{ @@ -32436,7 +32434,7 @@ /area/mine/unexplored/cere/cargo) "dlc" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/west) "dld" = ( @@ -32534,7 +32532,7 @@ }, /area/station/security/lobby) "dlt" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange, /obj/machinery/door/poddoor{ density = 0; @@ -32546,7 +32544,7 @@ /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "dlu" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -32640,7 +32638,7 @@ }, /area/station/command/bridge) "dmp" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d1 = 1; d2 = 2; @@ -33189,7 +33187,7 @@ /turf/simulated/floor/plasteel, /area/station/security/prisonershuttle) "dqe" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -33793,7 +33791,7 @@ }, /area/station/hallway/primary/fore/west) "dth" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange, /turf/simulated/floor/plating, /area/station/security/brig) @@ -33868,6 +33866,10 @@ icon_state = "redcorner" }, /area/station/hallway/primary/fore/west) +"dtJ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/quantum/cargo) "dtP" = ( /obj/machinery/light{ dir = 4 @@ -34926,10 +34928,6 @@ /obj/machinery/atmospherics/meter, /turf/simulated/floor/engine, /area/station/engineering/control) -"dzg" = ( -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/hallway/spacebridge/cargocom) "dzk" = ( /turf/simulated/wall, /area/station/service/janitor) @@ -35385,8 +35383,7 @@ dir = 1 }, /obj/machinery/door/window/classic/normal{ - name = "Chemistry Desk"; - dir = 2 + name = "Chemistry Desk" }, /obj/item/desk_bell{ pixel_x = 7; @@ -35660,7 +35657,7 @@ }, /area/station/medical/virology) "dCM" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -35727,8 +35724,7 @@ "dDA" = ( /obj/machinery/smartfridge/medbay, /obj/machinery/door/window/classic/normal{ - name = "Public Fridge"; - dir = 2 + name = "Public Fridge" }, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor{ @@ -35816,7 +35812,7 @@ /turf/simulated/floor/wood, /area/station/service/bar) "dEj" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -36258,7 +36254,6 @@ icon_state = "1-8" }, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Containment Pen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, @@ -36421,7 +36416,7 @@ }, /area/station/hallway/primary/fore/west) "dND" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/spacebridge/servsci) "dNJ" = ( @@ -36528,7 +36523,7 @@ /turf/simulated/wall/r_wall, /area/station/maintenance/apmaint) "dOo" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "rd" }, /obj/structure/cable/orange, @@ -36538,7 +36533,7 @@ /obj/structure/disposalpipe/segment/corner{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/external/southwest) "dOw" = ( @@ -36562,7 +36557,7 @@ }, /area/station/engineering/atmos) "dOB" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "rd" }, /obj/structure/cable/orange{ @@ -37522,7 +37517,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/west) "ehV" = ( @@ -37722,7 +37717,7 @@ }, /area/station/medical/virology) "ell" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -38065,7 +38060,7 @@ /turf/simulated/mineral/ancient/outer, /area/station/maintenance/disposal) "erJ" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -38235,7 +38230,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "evG" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "XenoPod7"; layer = 2.6; @@ -38672,7 +38667,7 @@ /area/station/medical/medbay) "eFk" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/northwest) "eFm" = ( @@ -38709,7 +38704,7 @@ /area/shuttle/arrival/station) "eGh" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/external/southwest) "eGr" = ( @@ -38827,7 +38822,7 @@ /area/station/security/brig) "eHy" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/external/east) "eIl" = ( @@ -40617,7 +40612,7 @@ }, /area/station/science/hallway) "fvI" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "XenoPod1"; name = "containment door 1" @@ -40888,7 +40883,7 @@ /area/station/science/rnd) "fCt" = ( /obj/structure/girder, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/spacebridge/scidock) "fCy" = ( @@ -41669,8 +41664,7 @@ opacity = 0 }, /obj/machinery/door/window/classic/reversed{ - name = "Toxins Launcher"; - dir = 2 + name = "Toxins Launcher" }, /obj/machinery/door/window/classic/reversed{ dir = 1; @@ -41870,7 +41864,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/entry/south) "fVG" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Detective" }, /obj/structure/cable/orange{ @@ -41880,7 +41874,7 @@ /turf/simulated/floor/plating, /area/station/security/detective) "fVX" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/fore) "fWe" = ( @@ -41989,7 +41983,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "bs" }, /turf/simulated/floor/plating, @@ -42027,7 +42021,7 @@ /turf/simulated/floor/wood, /area/station/command/office/blueshield) "fXV" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "bs" }, /obj/structure/cable/orange{ @@ -42323,7 +42317,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "ntr" }, /turf/simulated/floor/plating, @@ -42442,7 +42436,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "ntr" }, /turf/simulated/floor/plating, @@ -42611,7 +42605,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/engineering/control) "gii" = ( @@ -43433,6 +43427,10 @@ }, /turf/simulated/floor/plating, /area/station/public/vacant_office) +"gyX" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/quantum/security) "gzl" = ( /obj/structure/chair/stool{ dir = 8 @@ -43696,7 +43694,7 @@ /turf/simulated/floor/plasteel/white, /area/station/science/hallway) "gDL" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -44534,7 +44532,7 @@ /area/station/maintenance/starboard) "gRM" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/east) "gRZ" = ( @@ -44788,7 +44786,7 @@ /turf/simulated/floor/plating, /area/station/hallway/primary/fore) "gXs" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d1 = 2; d2 = 4; @@ -45129,7 +45127,6 @@ icon_state = "1-8" }, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Containment Pen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, @@ -45196,7 +45193,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/launch) "hcB" = ( @@ -45206,7 +45203,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "hcG" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/disposalpipe/segment, /obj/machinery/door/poddoor/preopen{ id_tag = "XenoPod5"; @@ -46305,7 +46302,7 @@ /obj/item/radio/intercom{ name = "custom placement" }, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/launch) "hyR" = ( @@ -46464,7 +46461,7 @@ /turf/simulated/floor/plating, /area/station/hallway/primary/fore/west) "hAI" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d1 = 2; d2 = 8; @@ -47206,13 +47203,6 @@ }, /turf/simulated/wall, /area/station/hallway/primary/central) -"hOc" = ( -/obj/effect/spawner/window/reinforced/plasma, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/station/engineering/control) "hOg" = ( /obj/machinery/light, /obj/structure/disposalpipe/trunk{ @@ -47669,7 +47659,7 @@ /turf/simulated/floor/plasteel/dark/telecomms, /area/station/science/server/coldroom) "hTy" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "rd" }, /obj/structure/cable/orange{ @@ -48151,7 +48141,7 @@ /turf/simulated/floor/wood, /area/station/command/office/ntrep) "idn" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/firedoor, /obj/structure/cable/orange{ d1 = 2; @@ -48456,8 +48446,7 @@ "ihy" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/classic/normal{ - name = "Hydroponics"; - dir = 2 + name = "Hydroponics" }, /obj/machinery/door/window/classic/normal{ name = "Kitchen"; @@ -49254,8 +49243,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/disposal/external/north) "iuu" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/disposalpipe/segment, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/supply/miningdock) "iuy" = ( @@ -49386,7 +49375,7 @@ opacity = 0 }, /obj/structure/cable/orange, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "iwA" = ( @@ -50103,7 +50092,7 @@ name = "Security Blast Door"; opacity = 0 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "iIv" = ( @@ -51160,7 +51149,7 @@ /turf/simulated/floor/plasteel, /area/station/security/storage) "jaa" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -51970,7 +51959,7 @@ /turf/simulated/wall, /area/station/hallway/secondary/exit) "jpv" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal) "jpz" = ( @@ -52087,7 +52076,7 @@ }, /area/station/hallway/secondary/exit) "jrs" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/spacebridge/serveng) "jrw" = ( @@ -52508,7 +52497,7 @@ /turf/simulated/floor/plasteel/airless/indestructible, /area/station/science/toxins/test) "jwB" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/disposalpipe/segment, /obj/machinery/door/poddoor/preopen{ id_tag = "XenoPod6"; @@ -53199,7 +53188,7 @@ /turf/simulated/mineral/ancient/outer, /area/station/hallway/primary/port/north) "jHZ" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "jIb" = ( @@ -53652,8 +53641,7 @@ name = "Research Emergency Lockdown" }, /obj/machinery/door/window/classic/normal{ - name = "R&D Desk"; - dir = 2 + name = "R&D Desk" }, /obj/machinery/door/firedoor, /obj/item/paper_bin, @@ -54062,7 +54050,7 @@ }, /area/station/engineering/atmos) "jWE" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/service/janitor) "jWF" = ( @@ -54367,7 +54355,7 @@ }, /area/station/security/processing) "kcH" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d1 = 1; d2 = 8; @@ -55136,7 +55124,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/disposal/southwest) "kqL" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d1 = 4; d2 = 8; @@ -55212,7 +55200,7 @@ }, /area/station/command/vault) "krB" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/robotics/chargebay) "krP" = ( @@ -55426,7 +55414,7 @@ }, /area/station/hallway/secondary/entry/south) "ktF" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/disposalpipe/segment, /obj/structure/cable/orange{ d2 = 8; @@ -55658,7 +55646,7 @@ /turf/simulated/floor/plating/asteroid/ancient, /area/station/hallway/primary/fore/west) "kxx" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/spacebridge/scidock) "kxy" = ( @@ -55837,7 +55825,7 @@ }, /area/station/public/quantum/docking) "kAb" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/disposalpipe/segment, /obj/machinery/door/poddoor/preopen{ id_tag = "XenoPod3"; @@ -56296,10 +56284,10 @@ /turf/simulated/floor/plasteel/freezer, /area/station/public/toilet) "kHT" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/red{ dir = 6 }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/turret_protected/aisat/interior/secondary) "kIm" = ( @@ -56433,8 +56421,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "kJS" = ( -/obj/effect/spawner/window/reinforced, /obj/effect/spawner/airlock/e_to_w, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar/aft) "kKg" = ( @@ -56944,7 +56932,7 @@ /turf/simulated/floor/plasteel, /area/station/supply/qm) "kRY" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/disposalpipe/segment, /obj/machinery/door/poddoor/preopen{ id_tag = "XenoPod7"; @@ -56971,7 +56959,7 @@ /turf/simulated/floor/plasteel/white, /area/station/medical/virology) "kSr" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "bridge" }, /obj/structure/cable/orange{ @@ -58440,7 +58428,7 @@ /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 1 }, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/engineering/control) "lpe" = ( @@ -58449,13 +58437,8 @@ /obj/item/rpd, /turf/simulated/floor/engine, /area/station/engineering/control) -"lpm" = ( -/obj/machinery/door/firedoor, -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/command/office/ntrep) "lpq" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Detective" }, /obj/structure/cable/orange{ @@ -59222,7 +59205,7 @@ /area/station/service/kitchen) "lAE" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/westalt) "lAN" = ( @@ -59721,7 +59704,7 @@ }, /area/station/security/detective) "lKk" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/office/ntrep) "lKl" = ( @@ -60011,8 +59994,8 @@ }, /area/station/service/kitchen) "lQq" = ( +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/girder, -/obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/station/hallway/spacebridge/sercom) "lQB" = ( @@ -60086,7 +60069,7 @@ }, /area/station/maintenance/port) "lRc" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/spacebridge/sercom) "lRq" = ( @@ -60275,7 +60258,6 @@ /area/station/public/sleep) "lUn" = ( /obj/machinery/door/window/brigdoor{ - dir = 2; id = "Cell 8"; name = "Cell 8" }, @@ -61527,7 +61509,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/westalt) "mte" = ( @@ -61661,7 +61643,6 @@ id_tag = "kitchen2" }, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Kitchen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, @@ -61830,7 +61811,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "mxH" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/spacebridge/medcargo) "mxO" = ( @@ -61874,8 +61855,8 @@ }, /area/station/security/permabrig) "mzv" = ( +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/girder, -/obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/station/hallway/spacebridge/medcargo) "mzA" = ( @@ -62139,8 +62120,7 @@ dir = 1 }, /obj/machinery/door/window/classic/normal{ - name = "Hydroponics"; - dir = 2 + name = "Hydroponics" }, /obj/machinery/door/firedoor, /obj/item/desk_bell{ @@ -63134,7 +63114,7 @@ }, /area/station/maintenance/fore2) "mVA" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -63147,7 +63127,7 @@ /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "mVN" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -63202,6 +63182,11 @@ icon_state = "escape" }, /area/station/hallway/secondary/entry) +"mWB" = ( +/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/garden) "mWE" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -63398,8 +63383,7 @@ dir = 4 }, /obj/machinery/door/window/classic/normal{ - name = "Library Desk Door"; - dir = 2 + name = "Library Desk Door" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/library, /turf/simulated/floor/wood, @@ -63469,7 +63453,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboard) "naD" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "XenoPod5"; name = "containment door 5" @@ -63674,6 +63658,10 @@ icon_state = "dark" }, /area/station/engineering/tech_storage) +"ndR" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/spacebridge/cargocom) "ndS" = ( /obj/structure/cable, /obj/structure/cable{ @@ -63681,7 +63669,7 @@ d2 = 4; icon_state = "1-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "ndT" = ( @@ -63802,7 +63790,7 @@ }, /area/station/hallway/spacebridge/comeng) "nfW" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -63880,7 +63868,7 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/turbine) "nhh" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar/aft) "nhi" = ( @@ -63945,7 +63933,6 @@ name = "Criminal Delivery Chute" }, /obj/machinery/door/window/reinforced/normal{ - dir = 2; name = "Criminal Deposit" }, /obj/structure/disposalpipe/trunk{ @@ -64484,11 +64471,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) -"nrX" = ( -/obj/effect/spawner/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/east) "nsa" = ( /obj/machinery/door/airlock/public/glass{ name = "Walkway" @@ -64924,7 +64906,7 @@ /area/station/hallway/spacebridge/scidock) "nzl" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "XenoPod2"; name = "containment door 2" @@ -65195,7 +65177,7 @@ /obj/structure/disposalpipe/segment/corner{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/east) "nEh" = ( @@ -65330,7 +65312,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "nFW" = ( @@ -65424,7 +65406,7 @@ /turf/simulated/floor/carpet, /area/station/security/detective) "nHI" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "nHK" = ( @@ -65487,7 +65469,7 @@ /turf/simulated/floor/carpet/cyan, /area/station/public/fitness) "nJH" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /obj/structure/cable{ d1 = 1; @@ -65509,7 +65491,7 @@ }, /area/station/security/brig) "nJN" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -65659,7 +65641,6 @@ icon_state = "1-2" }, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Containment Pen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, @@ -66116,7 +66097,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/primary/aft/east) "nUM" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "nUP" = ( @@ -66855,7 +66836,7 @@ }, /area/station/hallway/primary/aft/west) "okm" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Detective" }, /obj/structure/cable/orange{ @@ -67449,7 +67430,7 @@ opacity = 0 }, /obj/structure/cable/orange, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "ore" = ( @@ -67716,7 +67697,7 @@ }, /area/station/maintenance/starboard) "owX" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "owY" = ( @@ -68251,7 +68232,7 @@ }, /area/station/hallway/primary/central) "oHW" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -68273,12 +68254,12 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "oIk" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "oIu" = ( @@ -68699,8 +68680,8 @@ }, /area/station/service/bar) "oOL" = ( -/obj/effect/spawner/window/reinforced, /obj/effect/spawner/airlock/s_to_n, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarport) "oOP" = ( @@ -69092,7 +69073,6 @@ icon_state = "1-8" }, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Containment Pen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, @@ -69427,7 +69407,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "oYD" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d1 = 2; d2 = 8; @@ -69906,7 +69886,7 @@ /turf/simulated/floor/plating/asteroid/ancient, /area/station/maintenance/asmaint) "piY" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -70487,7 +70467,7 @@ }, /area/station/service/hydroponics) "prS" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/disposalpipe/segment, /obj/machinery/door/poddoor/preopen{ id_tag = "XenoPod4"; @@ -70900,7 +70880,7 @@ /turf/simulated/floor/plating, /area/station/science/xenobiology) "pAa" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -71646,7 +71626,7 @@ /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "pMu" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -71888,6 +71868,10 @@ }, /turf/simulated/wall, /area/station/maintenance/port2) +"pQI" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/garden) "pQL" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -72167,8 +72151,7 @@ name = "Chemistry Lobby Shutters" }, /obj/machinery/door/window/classic/normal{ - name = "Chemistry Desk"; - dir = 2 + name = "Chemistry Desk" }, /obj/item/folder/yellow, /obj/machinery/door/window/classic/normal{ @@ -73093,7 +73076,6 @@ anchored = 1 }, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Kitchen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, @@ -74977,7 +74959,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/electrical_shop) "qON" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "cmo" }, /obj/structure/cable/orange{ @@ -74998,7 +74980,7 @@ /turf/simulated/floor/wood, /area/station/service/theatre) "qPf" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "cmo" }, /obj/structure/cable/orange{ @@ -75280,7 +75262,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/computer/aiupload, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Console Access" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/command/ai_upload, @@ -75553,6 +75534,10 @@ icon_state = "dark" }, /area/station/command/bridge) +"raX" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/quantum/docking) "rbj" = ( /obj/machinery/atmospherics/portable/canister/nitrogen, /obj/machinery/atmospherics/unary/portables_connector{ @@ -75777,7 +75762,7 @@ /turf/simulated/floor/plasteel, /area/station/security/prisonlockers) "rgO" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d1 = 4; d2 = 8; @@ -76036,10 +76021,10 @@ }, /area/station/turret_protected/aisat/interior) "rlT" = ( -/obj/effect/spawner/window/reinforced/plasma, /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 1 }, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/mixing) "rlX" = ( @@ -77626,7 +77611,7 @@ }, /area/station/hallway/primary/starboard/north) "rOJ" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange, /obj/structure/disposalpipe/segment{ dir = 4 @@ -78083,7 +78068,7 @@ /turf/simulated/wall, /area/station/hallway/primary/port/south) "rXn" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating/airless, /area/station/science/toxins/test) "rXV" = ( @@ -78310,7 +78295,7 @@ }, /area/station/maintenance/starboard) "sbh" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "rd" }, /obj/structure/cable/orange{ @@ -78498,7 +78483,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/south) "seK" = ( @@ -78591,7 +78576,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/external/southeast) "sfZ" = ( @@ -78612,7 +78597,7 @@ }, /area/station/medical/morgue) "sgm" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "XenoPod3"; layer = 2.6; @@ -78979,6 +78964,10 @@ icon_state = "purplefull" }, /area/station/hallway/primary/aft/west) +"slI" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/control) "slQ" = ( /obj/effect/landmark/spawner/nukedisc_respawn, /obj/effect/decal/cleanable/dirt, @@ -79536,8 +79525,8 @@ }, /area/station/hallway/primary/aft/east) "suP" = ( +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/girder, -/obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/station/hallway/spacebridge/dockmed) "suS" = ( @@ -79872,7 +79861,7 @@ }, /area/station/medical/virology) "sAu" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -79911,7 +79900,7 @@ }, /area/station/hallway/primary/fore/west) "sAP" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -80061,6 +80050,10 @@ }, /turf/simulated/floor/engine, /area/station/science/explab/chamber) +"sCZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/quantum/science) "sDk" = ( /obj/machinery/conveyor/auto{ dir = 8 @@ -81846,7 +81839,7 @@ /turf/simulated/floor/engine, /area/station/science/xenobiology) "tjD" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry/south) "tjL" = ( @@ -82055,7 +82048,7 @@ /turf/simulated/wall, /area/station/maintenance/disposal/external/southwest) "tmU" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/spacebridge/dockmed) "tnb" = ( @@ -82080,7 +82073,7 @@ /turf/simulated/mineral/ancient, /area/station/hallway/primary/starboard/north) "tnz" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange, /obj/structure/cable/orange{ d1 = 1; @@ -82241,7 +82234,7 @@ }, /area/station/maintenance/port) "tpR" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/firedoor, /obj/structure/cable/orange{ d2 = 8; @@ -82979,7 +82972,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "tDn" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/north) "tDr" = ( @@ -83556,7 +83549,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/storage) "tRo" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/spacebridge/engmed) "tRr" = ( @@ -84168,6 +84161,10 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating/asteroid/ancient, /area/station/maintenance/port) +"uaZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/supply/office) "uba" = ( /obj/structure/cable/orange{ d1 = 1; @@ -84823,7 +84820,7 @@ }, /area/station/hallway/primary/central) "umg" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) "umM" = ( @@ -85965,12 +85962,12 @@ }, /area/station/service/bar) "uHv" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "uHx" = ( @@ -87363,7 +87360,7 @@ }, /area/station/service/hydroponics) "vcH" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -87575,7 +87572,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboard) "vgt" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "vgJ" = ( @@ -87720,7 +87717,7 @@ }, /area/station/public/storage/tools) "vkb" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange, /turf/simulated/floor/plating, /area/station/security/processing) @@ -88081,7 +88078,7 @@ }, /area/station/medical/medbay) "vpw" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d1 = 1; d2 = 4; @@ -88516,7 +88513,6 @@ /area/station/hallway/secondary/entry/south) "vvl" = ( /obj/machinery/door/window/brigdoor{ - dir = 2; id = "Cell 7"; name = "Cell 7" }, @@ -89109,7 +89105,7 @@ }, /area/station/supply/office) "vED" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "XenoPod4"; name = "containment door 4" @@ -89672,7 +89668,7 @@ }, /area/station/service/bar) "vMA" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/port) "vME" = ( @@ -89870,10 +89866,10 @@ /turf/simulated/floor/plating, /area/station/maintenance/electrical_shop) "vQm" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/disposalpipe/segment{ color = "#954535" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/checkpoint/secondary) "vQv" = ( @@ -90106,6 +90102,10 @@ icon_state = "neutralfull" }, /area/station/public/storage/tools) +"vTr" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/gambling_den) "vTI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -90352,7 +90352,7 @@ icon_state = "1-2" }, /obj/structure/cable/orange, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "vXR" = ( @@ -90859,7 +90859,7 @@ /area/station/maintenance/fore2) "why" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/external/southeast) "whM" = ( @@ -91928,7 +91928,7 @@ /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "wvz" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/spacebridge/comeng) "wvJ" = ( @@ -92250,7 +92250,7 @@ /turf/simulated/floor/engine, /area/station/science/test_chamber) "wzo" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/south) "wzA" = ( @@ -92330,7 +92330,7 @@ }, /area/station/hallway/primary/fore/west) "wAh" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/checkpoint/secondary) "wAp" = ( @@ -92646,7 +92646,7 @@ }, /area/station/hallway/primary/port/south) "wEh" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/sign/securearea, /obj/structure/cable/orange{ d2 = 2; @@ -93227,7 +93227,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) "wNm" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prisonershuttle) "wNA" = ( @@ -93691,7 +93691,7 @@ /area/station/hallway/primary/port/north) "wWB" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/southwest) "wWC" = ( @@ -94282,7 +94282,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/disposal/southwest) "xgi" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "XenoPod2"; name = "containment door 2" @@ -94947,7 +94947,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/disposal/northwest) "xtF" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/east) "xtN" = ( @@ -96042,7 +96042,7 @@ }, /area/station/command/bridge) "xMj" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/southwest) "xMp" = ( @@ -96149,7 +96149,7 @@ }, /area/station/science/robotics) "xNI" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -96240,6 +96240,10 @@ icon_state = "neutralfull" }, /area/station/hallway/primary/port/east) +"xPm" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/supply/miningdock) "xPv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/orange{ @@ -96438,7 +96442,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal/northwest) "xSR" = ( @@ -114854,7 +114858,7 @@ kgd bKI ugt bTV -oTv +gyX abE abE rNK @@ -115111,7 +115115,7 @@ nla mmY hYD fSn -oTv +gyX abE rNK rNK @@ -115368,7 +115372,7 @@ onY iyj tYi sed -oTv +gyX abE rNK rNK @@ -121605,10 +121609,10 @@ hUU aXn aXn uJT -cxW -cxW -cxW -cxW +vTr +vTr +vTr +vTr uJT hUU hUU @@ -124639,11 +124643,11 @@ rNK rNK lzH rNK -fph -fph -fph -fph -fph +pQI +pQI +pQI +pQI +pQI lWT aXD aYg @@ -124896,7 +124900,7 @@ rNK rNK lzH lzH -fph +pQI beR kZW aYa @@ -125150,10 +125154,10 @@ rNK rNK lzH lzH -fph -fph -fph -fph +pQI +pQI +pQI +pQI cbZ baI beR @@ -125404,10 +125408,10 @@ rNK rNK rNK lzH -fph -fph -fph -fph +pQI +pQI +pQI +pQI bbl aZI bcx @@ -125659,8 +125663,8 @@ rNK rNK rNK rNK -fph -fph +pQI +pQI fph aYa aXP @@ -125916,7 +125920,7 @@ rNK rNK rNK lzH -fph +pQI aXP aZe beR @@ -125998,8 +126002,8 @@ ftr ccW ccW lyI -fPc -fPc +sCZ +sCZ lyI lyI oHv @@ -126173,7 +126177,7 @@ rNK rNK rNK lzH -fph +pQI aYa xut lwc @@ -126429,8 +126433,8 @@ rNK rNK rNK rNK -fph -fph +pQI +pQI hqg xut aXP @@ -126686,7 +126690,7 @@ lzH lzH lzH lzH -fph +pQI kMs aXP aZg @@ -126943,7 +126947,7 @@ rNK rNK rNK lzH -fph +pQI wsL hqg aXP @@ -127199,8 +127203,8 @@ rNK rNK rNK rNK -fph -fph +pQI +pQI aYn aXP ooA @@ -127456,7 +127460,7 @@ rNK rNK rNK lzH -fph +pQI ixW beR beR @@ -127713,7 +127717,7 @@ rNK rNK rNK lzH -fph +pQI aYb aXP kZW @@ -127969,8 +127973,8 @@ ayb rNK rNK rNK -fph -fph +pQI +pQI aYc hqg aXP @@ -128226,7 +128230,7 @@ rNK rNK rNK lzH -fph +pQI aXN aXP aYp @@ -128483,7 +128487,7 @@ rNK rNK rNK lzH -fph +pQI aXO aXO aXO @@ -128740,7 +128744,7 @@ rNK rNK rNK lzH -fph +mWB hqg aYd beR @@ -128997,7 +129001,7 @@ rNK rNK rNK lzH -fph +pQI aXQ aYe aYq @@ -129792,7 +129796,7 @@ dcG dcG dcG biK -hOc +log eZM ugj xJg @@ -133390,7 +133394,7 @@ wuh bhQ bhQ dcG -xIu +slI dze uMo uCi @@ -133907,7 +133911,7 @@ cJu lzH bqD sxg -xIu +slI uvp kmB lDo @@ -135160,7 +135164,7 @@ jHB kdB kuj kuj -lpm +lKk rNK rNK rNK @@ -135417,7 +135421,7 @@ ibP ibP kuJ kPx -lpm +lKk rNK rNK rNK @@ -135764,8 +135768,8 @@ hUU hUU hUU nFW -pLr -pLr +raX +raX nFW nFW eiE @@ -138746,11 +138750,11 @@ abE rNK euP dkw -dzg +ndR dBd bCJ feQ -dzg +ndR mWE ayb ayb @@ -139003,11 +139007,11 @@ rNK rNK euP dkw -dzg +ndR dBd bCJ feQ -dzg +ndR mWE rNK rNK @@ -139517,11 +139521,11 @@ rNK rNK euP dkw -dzg +ndR dBd bCJ feQ -dzg +ndR mWE rNK rNK @@ -139774,11 +139778,11 @@ rNK rNK euP dkw -dzg +ndR dBd bCJ feQ -dzg +ndR mWE rNK rNK @@ -140031,11 +140035,11 @@ rNK rNK euP dkw -dzg +ndR dBd bCJ feQ -dzg +ndR mWE rNK rNK @@ -140288,11 +140292,11 @@ sRU sRU awJ dkx -dzg +ndR dBd bCJ feQ -dzg +ndR mWE rNK rNK @@ -140533,18 +140537,18 @@ bke bke bke cXJ -dzg -dzg -dzg +ndR +ndR +ndR cXJ -dzg -dzg -dzg +ndR +ndR +ndR cXJ -dzg -dzg -dzg -dzg +ndR +ndR +ndR +ndR cXJ dBi dZv @@ -140806,7 +140810,7 @@ dnC cXi bCJ feQ -dzg +ndR mWE rNK rNK @@ -141063,7 +141067,7 @@ cXi bCJ bCJ byr -dzg +ndR mWE rNK rNK @@ -141320,7 +141324,7 @@ cXi cXi bCJ feQ -dzg +ndR mWE rNK rNK @@ -141561,18 +141565,18 @@ hrp bke bke cXJ -dzg -dzg -dzg +ndR +ndR +ndR cXJ -dzg -dzg -dzg +ndR +ndR +ndR cXJ -dzg -dzg -dzg -dzg +ndR +ndR +ndR +ndR cXJ dBq cXi @@ -141830,11 +141834,11 @@ rNK rNK rNK rNK -dzg +ndR dBs bCJ bIg -dzg +ndR mWE rNK rNK @@ -142087,11 +142091,11 @@ rNK rNK rNK rNK -dzg +ndR dBs bCJ bIg -dzg +ndR mWE rNK rNK @@ -142344,11 +142348,11 @@ rNK rNK rNK rNK -dzg +ndR dBs bCJ bIg -dzg +ndR mWE rNK rNK @@ -142601,11 +142605,11 @@ rNK rNK rNK rNK -dzg +ndR dBs bCJ bIg -dzg +ndR mWE rNK rNK @@ -143115,11 +143119,11 @@ rNK rNK rNK rNK -dzg +ndR dBs bCJ bIg -dzg +ndR mWE rNK rNK @@ -143372,11 +143376,11 @@ rNK rNK rNK rNK -dzg +ndR dBs bCJ bIg -dzg +ndR mWE rNK rNK @@ -144139,9 +144143,9 @@ alc alc lCC cHq -cMQ -cMQ -cMQ +dtJ +dtJ +dtJ cHq kaS woL @@ -147203,15 +147207,15 @@ uWf iys pKq rIu -ayP -ayP -ayP +uaZ +uaZ +uaZ vtS aGw any aGw cLD -ayP +uaZ dKI dKI dKI @@ -147462,13 +147466,13 @@ rIu rIu rNK rNK -ayP +uaZ bcU aDG -ayP +uaZ aGv bGm -ayP +uaZ bTv cbG mCQ @@ -147719,16 +147723,16 @@ rzh rzh rNK rNK -ayP +uaZ vtS cLx -ayP +uaZ cLx cLD -ayP -ayP -ayP -ayP +uaZ +uaZ +uaZ +uaZ any kdf dhn @@ -148243,7 +148247,7 @@ rNK rNK rNK rNK -ayP +uaZ woa cqa lkS @@ -148500,7 +148504,7 @@ rNK rNK rNK rNK -ayP +uaZ woa scI any @@ -148757,7 +148761,7 @@ rNK rNK rNK rNK -ayP +uaZ woa scI any @@ -149014,7 +149018,7 @@ rNK rNK rNK rNK -ayP +uaZ woa fgS any @@ -149271,7 +149275,7 @@ rNK rNK rNK rNK -ayP +uaZ woa cqm any @@ -153119,11 +153123,11 @@ alc alc lCC lCC -iss +xPm tro iLv eEC -iss +xPm rNK rNK rNK @@ -153376,11 +153380,11 @@ alc alc lCC rzh -iss +xPm byg mxO bOW -iss +xPm rNK rNK rNK @@ -153634,9 +153638,9 @@ alc lCC rNK uKL -iss +xPm bHB -iss +xPm hWG rNK rNK @@ -154237,7 +154241,7 @@ gFg iNe jsE mqm -lCh +atp rNK rNK rNK @@ -154494,7 +154498,7 @@ jsE jsE gvx pep -lCh +atp rNK rNK rNK @@ -155261,8 +155265,8 @@ vHH gFg itf fMl -lCh -lCh +atp +atp fMl fMl rNK @@ -157560,7 +157564,7 @@ wdb wdb wdb ycO -nrX +gRM cNN idV rXV diff --git a/_maps/map_files/cyberiad/cyberiad.dmm b/_maps/map_files/cyberiad/cyberiad.dmm index 391212223239..f371c4df4a6c 100644 --- a/_maps/map_files/cyberiad/cyberiad.dmm +++ b/_maps/map_files/cyberiad/cyberiad.dmm @@ -163,7 +163,7 @@ /turf/simulated/floor/plasteel, /area/station/security/range) "aci" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/main) "acj" = ( @@ -421,7 +421,7 @@ /turf/simulated/floor/plating, /area/station/security/range) "adj" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -471,7 +471,7 @@ }, /area/station/security/main) "adq" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "HoS" }, /obj/structure/cable{ @@ -683,7 +683,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prisonlockers) "aeh" = ( @@ -691,7 +691,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prisonlockers) "aei" = ( @@ -704,7 +704,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/warden) "aej" = ( @@ -1194,7 +1194,7 @@ }, /area/station/security/brig) "afU" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -1248,7 +1248,7 @@ }, /area/station/medical/medbay2) "agk" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -1678,7 +1678,7 @@ /turf/simulated/floor/plasteel, /area/station/security/storage) "aic" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/disposal) "aid" = ( @@ -2727,7 +2727,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "HoS" }, /turf/simulated/floor/plating, @@ -2793,7 +2793,7 @@ name = "Prison Lockdown Blast Doors" }, /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "akU" = ( @@ -2875,7 +2875,7 @@ /area/station/security/brig) "alc" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "IAA" }, /obj/machinery/door/poddoor/preopen{ @@ -3059,7 +3059,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "HoS" }, /turf/simulated/floor/plating, @@ -3093,7 +3093,6 @@ /area/station/command/office/hos) "alJ" = ( /obj/machinery/door/window/reinforced/normal{ - dir = 2; name = "Accused" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig, @@ -3104,7 +3103,7 @@ /area/station/legal/courtroom) "alK" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/brig) "alM" = ( @@ -3128,7 +3127,7 @@ /area/station/security/brig) "alN" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -3172,12 +3171,12 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/warden) "alW" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/warden) "alX" = ( @@ -3194,7 +3193,7 @@ /area/station/security/armory/secure) "alY" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/armory/secure) "ama" = ( @@ -3280,7 +3279,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/main) "amr" = ( @@ -3389,7 +3388,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/warden) "amE" = ( @@ -3623,7 +3622,7 @@ /turf/space, /area/station/engineering/solar/auxstarboard) "anq" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -3632,7 +3631,7 @@ /turf/simulated/floor/plating, /area/station/security/permabrig) "ant" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d1 = 2; d2 = 8; @@ -3665,7 +3664,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/main) "any" = ( @@ -4010,7 +4009,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -4526,7 +4525,7 @@ /area/station/security/storage) "apm" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/main) "apn" = ( @@ -4646,7 +4645,7 @@ /area/station/security/storage) "apD" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/storage) "apE" = ( @@ -4731,7 +4730,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/warden) "apQ" = ( @@ -4755,7 +4754,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/main) "apS" = ( @@ -4900,7 +4899,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/warden) "aqx" = ( @@ -4913,7 +4912,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/warden) "aqA" = ( @@ -4921,7 +4920,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/main) "aqC" = ( @@ -4934,7 +4933,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/main) "aqF" = ( @@ -5016,7 +5015,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "IAA" }, /obj/machinery/door/poddoor/preopen{ @@ -5084,7 +5083,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -5180,7 +5179,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -5426,7 +5425,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/evidence) "arP" = ( @@ -5448,7 +5447,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/evidence) "arR" = ( @@ -5779,7 +5778,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "IAA" }, /turf/simulated/floor/plating, @@ -5944,7 +5943,7 @@ /area/station/security/lobby) "asZ" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -6305,7 +6304,7 @@ /turf/simulated/floor/plasteel, /area/station/security/permabrig) "atS" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -6402,7 +6401,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/storage) "auj" = ( @@ -6540,7 +6539,7 @@ d2 = 4; icon_state = "1-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -6549,7 +6548,7 @@ /area/station/security/lobby) "auE" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/processing) "auF" = ( @@ -6569,7 +6568,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -6586,7 +6585,7 @@ d2 = 8; icon_state = "1-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -6634,7 +6633,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -6646,7 +6645,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -6750,7 +6749,7 @@ icon_state = "1-2" }, /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "HoS" }, /turf/simulated/floor/plating, @@ -6982,7 +6981,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" }, /turf/simulated/floor/plating, @@ -7191,7 +7190,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" }, /turf/simulated/floor/plating, @@ -7449,7 +7448,7 @@ /turf/simulated/wall, /area/station/security/detective) "axh" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fore) "axi" = ( @@ -7969,7 +7968,7 @@ /turf/simulated/floor/plating, /area/station/security/execution) "ayC" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -8163,7 +8162,7 @@ /area/station/security/prison/cell_block/A) "ayY" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" }, /turf/simulated/floor/plating, @@ -8173,7 +8172,7 @@ /area/station/security/processing) "azc" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Interrogation" }, /turf/simulated/floor/plating, @@ -8232,7 +8231,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "azt" = ( @@ -8624,14 +8623,14 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore) "aAd" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarport) "aAf" = ( /turf/simulated/wall, /area/station/maintenance/abandonedbar) "aAg" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/abandonedbar) "aAm" = ( @@ -8868,7 +8867,7 @@ d2 = 4; icon_state = "1-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -9174,7 +9173,7 @@ /turf/simulated/floor/grass, /area/station/security/permabrig) "aBN" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /obj/structure/cable{ d1 = 1; @@ -9544,7 +9543,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/brig) "aCL" = ( @@ -9955,10 +9954,6 @@ icon_state = "cult" }, /area/station/legal/magistrate) -"aDS" = ( -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/maintenance/auxsolarstarboard) "aDU" = ( /obj/structure/cable{ d1 = 4; @@ -10549,7 +10544,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Detective" }, /turf/simulated/floor/plating, @@ -10598,7 +10593,7 @@ /area/station/security/detective) "aFE" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Detective" }, /obj/machinery/door/poddoor/preopen{ @@ -11116,7 +11111,7 @@ /area/station/legal/courtroom) "aHq" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "HoS" }, /turf/simulated/floor/plating, @@ -11285,7 +11280,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "aHN" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "aHO" = ( @@ -11532,10 +11527,6 @@ icon_state = "wood-broken3" }, /area/station/maintenance/fpmaint2) -"aII" = ( -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/maintenance/fpmaint2) "aIJ" = ( /obj/machinery/atmospherics/unary/portables_connector{ dir = 1 @@ -12733,7 +12724,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -13337,11 +13328,11 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/preopen{ id_tag = "atmos"; name = "Atmos Blast Door" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "aOm" = ( @@ -13947,7 +13938,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "aQg" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "aQh" = ( @@ -14750,7 +14741,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -14763,7 +14754,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "aSx" = ( @@ -14780,7 +14771,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "aSz" = ( @@ -16867,7 +16858,7 @@ d2 = 8; icon_state = "1-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "aXZ" = ( @@ -17136,7 +17127,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/port) "aYT" = ( @@ -17283,7 +17274,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/port) "aZh" = ( @@ -17535,7 +17526,7 @@ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "aZQ" = ( @@ -18297,7 +18288,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "bcm" = ( @@ -18602,7 +18593,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/port) "bcZ" = ( @@ -19300,7 +19291,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/port) "beL" = ( @@ -19308,7 +19299,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/port) "beM" = ( @@ -19334,7 +19325,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/port) "beO" = ( @@ -19383,7 +19374,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/port) "beT" = ( @@ -19499,13 +19490,13 @@ /area/station/service/expedition) "bfg" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/ai_monitored/storage/eva) "bfh" = ( /obj/structure/cable, /obj/structure/sign/securearea, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/ai_monitored/storage/eva) "bfi" = ( @@ -21654,7 +21645,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "bku" = ( @@ -22284,7 +22275,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast north"; name = "Bridge Blast Doors" @@ -22321,7 +22312,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast north"; name = "Bridge Blast Doors" @@ -22333,7 +22324,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast north"; name = "Bridge Blast Doors" @@ -22341,7 +22332,7 @@ /turf/simulated/floor/plating, /area/station/command/bridge) "bmb" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/central/nw) "bmc" = ( @@ -22362,7 +22353,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast north"; name = "Bridge Blast Doors" @@ -22426,7 +22417,7 @@ }, /area/station/service/kitchen) "bmi" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/primary/central/ne) "bmk" = ( @@ -22450,7 +22441,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "bmo" = ( @@ -24087,7 +24078,7 @@ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "bqq" = ( @@ -24859,7 +24850,7 @@ icon_state = "0-2" }, /obj/machinery/door/firedoor, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bsv" = ( @@ -26235,7 +26226,7 @@ "bwg" = ( /obj/structure/cable, /obj/machinery/door/firedoor, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) "bwh" = ( @@ -31244,7 +31235,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "bKv" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/port) "bKw" = ( @@ -31591,12 +31582,9 @@ "bLz" = ( /obj/structure/closet/coffin, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Coffin Storage" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/chapel_office{ - dir = 2 - }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/chapel_office, /obj/structure/window/reinforced{ dir = 8 }, @@ -32480,7 +32468,7 @@ /area/station/hallway/primary/central/west) "bOb" = ( /obj/structure/sign/vacuum/external, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "bOd" = ( @@ -32744,7 +32732,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/gravitygenerator) "bOF" = ( @@ -32772,7 +32760,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/gravitygenerator) "bOJ" = ( @@ -32799,7 +32787,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/gravitygenerator) "bON" = ( @@ -32820,7 +32808,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/gravitygenerator) "bOQ" = ( @@ -33058,7 +33046,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "rd" }, /turf/simulated/floor/plating, @@ -33135,7 +33123,7 @@ /area/station/supply/office) "bPT" = ( /obj/structure/sign/vacuum/external, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/supply/storage) "bPV" = ( @@ -33849,7 +33837,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/shutters/preopen{ dir = 8; name = "Privacy Shutters"; @@ -34501,7 +34489,7 @@ d2 = 4; icon_state = "1-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/shutters/preopen{ dir = 8; name = "Privacy Shutters"; @@ -36363,8 +36351,8 @@ }, /area/station/supply/office) "bYL" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/cable, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/supply/qm) "bYM" = ( @@ -36400,7 +36388,7 @@ }, /area/station/hallway/primary/central/sw) "bYP" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/supply/miningdock) "bYR" = ( @@ -36672,7 +36660,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /turf/simulated/floor/plating, @@ -37893,7 +37881,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "rd" }, /turf/simulated/floor/plating, @@ -38535,7 +38523,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "rd" }, /turf/simulated/floor/plating, @@ -38897,7 +38885,7 @@ d2 = 4; icon_state = "1-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /turf/simulated/floor/plating, @@ -39191,14 +39179,14 @@ "cgY" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "BS" }, /turf/simulated/floor/plating, /area/station/command/office/blueshield) "cgZ" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "BS" }, /turf/simulated/floor/plating, @@ -39360,7 +39348,7 @@ /area/station/medical/storage/secondary) "chz" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /turf/simulated/floor/plating, @@ -39790,7 +39778,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /turf/simulated/floor/plating, @@ -39800,7 +39788,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /turf/simulated/floor/plating, @@ -40740,7 +40728,7 @@ /area/station/medical/virology) "cmx" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "rd" }, /turf/simulated/floor/plating, @@ -40893,10 +40881,6 @@ /obj/effect/turf_decal/bot, /turf/simulated/floor/plasteel, /area/station/science/storage) -"cng" = ( -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/maintenance/apmaint) "cnk" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'BOMB RANGE"; @@ -43601,7 +43585,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "cwQ" = ( @@ -43619,7 +43603,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "cwR" = ( @@ -43636,11 +43620,11 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "cwV" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -44150,7 +44134,7 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/obj/effect/spawner/window/reinforced/tinted, +/obj/effect/spawner/window/reinforced/tinted/grilled, /turf/simulated/floor/plating, /area/station/maintenance/incinerator) "cyp" = ( @@ -44170,7 +44154,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "cys" = ( @@ -45506,7 +45490,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/aft) "cBP" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio4"; name = "Chamber 4 Containment Blast Doors" @@ -45670,7 +45654,7 @@ d2 = 4; icon_state = "1-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "cCN" = ( @@ -45688,7 +45672,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "cCO" = ( @@ -46667,7 +46651,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CE" }, /turf/simulated/floor/plating, @@ -46994,7 +46978,7 @@ }, /area/station/service/expedition) "cHa" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CE" }, /obj/structure/cable{ @@ -47064,7 +47048,7 @@ /area/station/hallway/primary/aft) "cHk" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CE" }, /turf/simulated/floor/plating, @@ -47350,7 +47334,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/smes) "cHU" = ( @@ -47403,7 +47387,7 @@ }, /area/station/maintenance/aft) "cIb" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -47538,7 +47522,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "cIs" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio5"; name = "Chamber 5 Containment Blast Doors" @@ -47566,7 +47550,7 @@ d2 = 8; icon_state = "1-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CE" }, /turf/simulated/floor/plating, @@ -47576,7 +47560,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CE" }, /turf/simulated/floor/plating, @@ -48655,7 +48639,7 @@ }, /area/station/maintenance/aft) "cMj" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -48834,7 +48818,7 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/aft) "cMI" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -48881,7 +48865,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos/control) "cMQ" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio7"; name = "Chamber 7 Containment Blast Doors" @@ -48938,7 +48922,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "cNa" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio7"; name = "Chamber 7 Containment Blast Doors" @@ -49343,7 +49327,7 @@ /turf/simulated/floor/engine, /area/station/science/test_chamber) "cOx" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/apmaint2) "cOy" = ( @@ -49841,11 +49825,11 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/preopen{ id_tag = "atmos"; name = "Atmos Blast Door" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos/distribution) "cQn" = ( @@ -50117,11 +50101,11 @@ /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10 }, -/obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/preopen{ id_tag = "atmos"; name = "Atmos Blast Door" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos/distribution) "cRd" = ( @@ -50311,7 +50295,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "cRz" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "cRA" = ( @@ -50356,7 +50340,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CE" }, /turf/simulated/floor/plating, @@ -50495,7 +50479,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cRY" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -50600,11 +50584,11 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/preopen{ id_tag = "atmos"; name = "Atmos Blast Door" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos/distribution) "cSr" = ( @@ -50955,7 +50939,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos/distribution) "cTo" = ( -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "cTp" = ( @@ -50974,11 +50958,11 @@ /area/station/engineering/atmos) "cTr" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/preopen{ id_tag = "atmos"; name = "Atmos Blast Door" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos/distribution) "cTs" = ( @@ -51700,11 +51684,11 @@ /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 4 }, -/obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/preopen{ id_tag = "atmos"; name = "Atmos Blast Door" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos/distribution) "cVS" = ( @@ -51739,7 +51723,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CE" }, /turf/simulated/floor/plating, @@ -52298,11 +52282,11 @@ /area/station/engineering/atmos) "cYb" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/preopen{ id_tag = "atmos"; name = "Atmos Blast Door" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "cYe" = ( @@ -52589,11 +52573,11 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/preopen{ id_tag = "atmos"; name = "Atmos Blast Door" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "cZg" = ( @@ -54412,7 +54396,7 @@ /area/station/maintenance/storage) "dfD" = ( /obj/structure/transit_tube, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/storage) "dfE" = ( @@ -54528,7 +54512,7 @@ }, /area/station/maintenance/storage) "dgc" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/storage) "dgd" = ( @@ -54726,11 +54710,11 @@ /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 9 }, -/obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/preopen{ id_tag = "atmos"; name = "Atmos Blast Door" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "dgX" = ( @@ -54894,11 +54878,11 @@ }, /area/station/engineering/atmos) "dhI" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/preopen{ id_tag = "atmos"; name = "Atmos Blast Door" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "dhJ" = ( @@ -54924,10 +54908,10 @@ }, /area/station/public/toilet) "dhL" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/turbine) "dhO" = ( @@ -55002,8 +54986,8 @@ id_tag = "atmos"; name = "Atmos Blast Door" }, -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "dik" = ( @@ -55012,7 +54996,7 @@ id_tag = "atmos"; name = "Atmos Blast Door" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/atmos) "dil" = ( @@ -56106,8 +56090,8 @@ }, /area/station/aisat/service) "dll" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/turbine) "dln" = ( @@ -56225,7 +56209,7 @@ }, /area/station/aisat/service) "dlT" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "dlX" = ( @@ -56252,7 +56236,7 @@ icon_state = "1-2" }, /obj/structure/cable, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "dmb" = ( @@ -56334,8 +56318,8 @@ }, /area/station/aisat/hall) "dmt" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/aft) "dmv" = ( @@ -56404,7 +56388,7 @@ /turf/simulated/floor/engine, /area/station/maintenance/turbine) "dmB" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/turret_protected/aisat/interior) "dmD" = ( @@ -56562,7 +56546,7 @@ /area/space/nearstation) "dmZ" = ( /obj/structure/transit_tube, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/turret_protected/aisat/interior) "dna" = ( @@ -56906,7 +56890,7 @@ /obj/structure/sign/securearea{ pixel_y = -32 }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/turret_protected/aisat/interior) "dnW" = ( @@ -56938,10 +56922,10 @@ /obj/structure/sign/securearea{ pixel_y = -32 }, -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/turret_protected/aisat/interior) "dof" = ( @@ -57968,7 +57952,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prisonlockers) "dsN" = ( @@ -58770,7 +58754,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/aft) "dLz" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -59291,7 +59275,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /turf/simulated/floor/plating, @@ -59777,6 +59761,10 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos/distribution) +"ehK" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) "ehQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/ash, @@ -59873,7 +59861,6 @@ layer = 2.5 }, /obj/machinery/door/window/reinforced/normal{ - dir = 2; name = "Security Reception" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/security/general, @@ -61181,8 +61168,7 @@ /area/station/maintenance/aft) "eYJ" = ( /obj/machinery/door/window/classic/reversed{ - name = "Primate Pen"; - dir = 2 + name = "Primate Pen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/genetics, /obj/effect/decal/cleanable/dirt, @@ -61537,6 +61523,10 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) +"fhc" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/dorms) "fhe" = ( /obj/structure/cable{ d1 = 1; @@ -62164,13 +62154,11 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos/control) "fxC" = ( -/obj/effect/spawner/window/reinforced/polarized{ - id = "qm" - }, /obj/structure/cable{ d2 = 8; icon_state = "0-8" }, +/obj/effect/spawner/window/reinforced/polarized/grilled, /turf/simulated/floor/plating, /area/station/supply/qm) "fxD" = ( @@ -62729,7 +62717,6 @@ }, /obj/effect/decal/warning_stripes/yellow/hollow, /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Bridge Delivery" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot, @@ -63153,7 +63140,7 @@ }, /area/station/science/hallway) "gbw" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio3"; name = "Chamber 3 Containment Blast Doors" @@ -63839,7 +63826,6 @@ "gvm" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor{ - dir = 2; id = "Cell 4"; name = "Cell 4" }, @@ -63995,7 +63981,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/disposal) "gyS" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio4"; @@ -65246,7 +65232,6 @@ /area/station/maintenance/apmaint2) "hgC" = ( /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Glass Door" }, /obj/structure/cable{ @@ -65414,7 +65399,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/sign/electricshock{ pixel_x = -32 }, @@ -65444,7 +65429,6 @@ name = "Security Blast Door" }, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Security Delivery" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot, @@ -65461,7 +65445,7 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/asmaint) "hlG" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Prison Gate"; name = "Prison Lockdown Blast Doors" @@ -66095,8 +66079,7 @@ /area/station/science/xenobiology) "hEA" = ( /obj/machinery/door/window/classic/reversed{ - name = "Containment Pen"; - dir = 2 + name = "Containment Pen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, /obj/machinery/door/poddoor/preopen{ @@ -66621,7 +66604,7 @@ }, /area/station/medical/medbay2) "hTu" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "Prison Gate"; name = "Prison Lockdown Blast Doors" @@ -67122,6 +67105,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "ifN" = ( @@ -67306,7 +67294,7 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) "ilj" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio4"; name = "Chamber 4 Containment Blast Doors" @@ -67585,7 +67573,7 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/port) "iun" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio1"; name = "Chamber 1 Containment Blast Doors" @@ -67675,7 +67663,7 @@ }, /area/station/maintenance/asmaint2) "ivZ" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio6"; name = "Chamber 6 Containment Blast Doors" @@ -67733,6 +67721,10 @@ icon_state = "white" }, /area/station/science/xenobiology) +"ixO" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/supply/storage) "iyj" = ( /obj/structure/cable{ d1 = 1; @@ -67927,7 +67919,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 10 }, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/engineering/control) "iFh" = ( @@ -68469,6 +68461,10 @@ icon_state = "cautioncorner" }, /area/station/maintenance/asmaint2) +"iWz" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) "iXD" = ( /turf/simulated/floor/light, /area/station/maintenance/asmaint) @@ -68688,13 +68684,11 @@ }, /area/station/medical/virology) "jdi" = ( -/obj/effect/spawner/window/reinforced/polarized{ - id = "qm" - }, /obj/structure/cable{ d2 = 4; icon_state = "0-4" }, +/obj/effect/spawner/window/reinforced/polarized/grilled, /turf/simulated/floor/plating, /area/station/supply/qm) "jdz" = ( @@ -69180,7 +69174,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "jtc" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio2"; name = "Chamber 2 Containment Blast Doors" @@ -69352,8 +69346,7 @@ /area/station/maintenance/aft) "jxr" = ( /obj/machinery/door/window/classic/reversed{ - name = "Kill Chamber"; - dir = 2 + name = "Kill Chamber" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, /obj/machinery/door/poddoor/preopen{ @@ -69546,7 +69539,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /turf/simulated/floor/plating, @@ -69583,7 +69576,7 @@ }, /area/station/telecomms/chamber) "jEQ" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio3"; @@ -70434,7 +70427,6 @@ /area/station/medical/chemistry) "keS" = ( /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Glass Door" }, /obj/structure/cable{ @@ -70477,6 +70469,10 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) +"khg" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/service/chapel) "khl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -70727,7 +70723,6 @@ icon_state = "2-8" }, /obj/machinery/door/window/brigdoor{ - dir = 2; id = "Cell 2"; name = "Cell 2" }, @@ -71136,7 +71131,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast north"; name = "Bridge Blast Doors" @@ -71248,7 +71243,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint2) "kzo" = ( -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/mixing) "kzB" = ( @@ -72798,7 +72793,6 @@ /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Medical Reception" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, @@ -72980,7 +72974,7 @@ }, /area/station/security/permabrig) "lvb" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/misc_lab) "lvk" = ( @@ -73022,7 +73016,6 @@ "lvp" = ( /obj/effect/turf_decal/delivery/red, /obj/machinery/door/window/reinforced/normal{ - dir = 2; name = "Body Delivery System" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/morgue, @@ -73412,7 +73405,6 @@ /area/station/maintenance/asmaint) "lHA" = ( /obj/machinery/door/window/classic/normal{ - dir = 2; name = "Containment Pen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, @@ -73511,7 +73503,6 @@ "lKB" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/reinforced/normal{ - dir = 2; name = "Secure Armory" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/security/general, @@ -73640,6 +73631,10 @@ }, /turf/simulated/floor/plasteel, /area/station/command/bridge) +"lNj" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) "lNE" = ( /obj/structure/rack{ dir = 8; @@ -73746,6 +73741,15 @@ /obj/effect/spawner/random_spawners/fungus_maybe, /turf/simulated/wall, /area/station/legal/courtroom) +"lQH" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) "lQS" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -74751,7 +74755,7 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/asmaint) "muq" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio3"; name = "Chamber 3 Containment Blast Doors" @@ -74935,6 +74939,11 @@ /area/station/maintenance/apmaint2) "mAv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "mBl" = ( @@ -74951,7 +74960,6 @@ /area/station/maintenance/asmaint) "mBF" = ( /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Do Not Revive" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/morgue, @@ -75184,7 +75192,7 @@ id_tag = "Biohazard"; name = "Biohazard Shutter" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/launch) "mJC" = ( @@ -76783,11 +76791,11 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/atmos{ - name = "Aft-Starboard Atmospherics Maintenance" - }, /obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/atmos{ + name = "Fore-Port Secondary Atmospherics Maintenance" + }, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "nMd" = ( @@ -76950,7 +76958,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint2) "nQT" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -77366,7 +77374,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced/tinted, +/obj/effect/spawner/window/reinforced/tinted/grilled, /turf/simulated/floor/plating, /area/station/maintenance/assembly_line) "oeO" = ( @@ -78576,6 +78584,10 @@ icon_state = "whitepurple" }, /area/station/science/xenobiology) +"oMe" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/control) "oMz" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -80352,8 +80364,7 @@ /area/station/medical/morgue) "pQp" = ( /obj/machinery/door/window/classic/reversed{ - name = "Toxins Launcher"; - dir = 2 + name = "Toxins Launcher" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/tox, /obj/machinery/door/window/classic/reversed{ @@ -80442,6 +80453,10 @@ }, /turf/simulated/floor/engine, /area/station/science/test_chamber) +"pSH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) "pTa" = ( /obj/machinery/status_display, /turf/simulated/wall, @@ -80561,6 +80576,10 @@ /obj/structure/window/reinforced, /turf/simulated/floor/wood, /area/station/public/dorms) +"pVM" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) "pWn" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -80732,11 +80751,11 @@ }, /area/station/public/toilet) "qcH" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE" }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating/airless, /area/station/science/toxins/test) "qcN" = ( @@ -80769,7 +80788,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "qdm" = ( @@ -80854,8 +80873,8 @@ /turf/simulated/wall, /area/station/public/construction) "qgC" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/turret_protected/aisat/interior) "qgH" = ( @@ -80973,7 +80992,7 @@ }, /area/station/science/hallway) "qkA" = ( -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ id_tag = "Prison Gate"; @@ -81015,6 +81034,15 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) +"qmp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) "qms" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -81213,10 +81241,10 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "qpf" = ( -/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/purple{ dir = 4 }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "qpi" = ( @@ -81266,7 +81294,7 @@ /area/station/maintenance/asmaint) "qri" = ( /obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "IAA" }, /obj/machinery/door/poddoor/preopen{ @@ -81564,7 +81592,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced/tinted, +/obj/effect/spawner/window/reinforced/tinted/grilled, /turf/simulated/floor/plating, /area/station/maintenance/assembly_line) "qzV" = ( @@ -81642,7 +81670,7 @@ /turf/simulated/floor/engine, /area/station/engineering/control) "qBH" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -81902,7 +81930,7 @@ id_tag = "Biohazard"; name = "Biohazard Shutter" }, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/launch) "qHc" = ( @@ -82045,7 +82073,7 @@ }, /area/station/science/robotics/chargebay) "qKN" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -82424,7 +82452,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) "qXe" = ( @@ -82634,7 +82662,7 @@ }, /area/station/medical/virology) "rcm" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -82741,7 +82769,6 @@ "reh" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Chemistry Desk" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, @@ -82902,8 +82929,7 @@ /area/station/maintenance/aft) "rif" = ( /obj/machinery/door/window/classic/reversed{ - name = "Containment Pen"; - dir = 2 + name = "Containment Pen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, /obj/machinery/door/poddoor/preopen{ @@ -82939,7 +82965,7 @@ }, /area/station/engineering/control) "rlW" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "HoS" }, /obj/structure/cable{ @@ -83160,8 +83186,7 @@ /area/station/security/evidence) "rtT" = ( /obj/machinery/door/window/classic/reversed{ - name = "EVA Equipment"; - dir = 2 + name = "EVA Equipment" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/warning_stripes/east, @@ -83244,8 +83269,8 @@ }, /area/station/security/permabrig) "ryQ" = ( -/obj/effect/spawner/window/reinforced/plasma, /obj/machinery/atmospherics/pipe/simple/insulated, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/mixing) "ryV" = ( @@ -83542,10 +83567,10 @@ /turf/space, /area/space/nearstation) "rGr" = ( -/obj/effect/spawner/window/reinforced/plasma, /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 1 }, +/obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/mixing) "rHm" = ( @@ -83860,7 +83885,7 @@ }, /area/station/security/permabrig) "rSo" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /obj/structure/cable{ d1 = 1; @@ -84209,7 +84234,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/aft) "scY" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "NT" }, /obj/structure/cable{ @@ -84537,7 +84562,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "smP" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -84639,6 +84664,10 @@ icon_state = "brown" }, /area/station/supply/miningdock) +"soH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) "soR" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -84967,7 +84996,7 @@ id_tag = "Secure Gate"; name = "Security Blast Door" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "IAA" }, /obj/structure/cable{ @@ -85889,7 +85918,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "rd" }, /turf/simulated/floor/plating, @@ -85968,7 +85997,7 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) "tdd" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio2"; name = "Chamber 2 Containment Blast Doors" @@ -86094,7 +86123,7 @@ }, /area/station/security/permabrig) "tif" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio6"; name = "Chamber 6 Containment Blast Doors" @@ -86237,7 +86266,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/storage) "tlj" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio5"; name = "Chamber 5 Containment Blast Doors" @@ -86895,7 +86924,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -87054,7 +87083,7 @@ }, /area/station/medical/virology) "tOE" = ( -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CE" }, /obj/structure/cable{ @@ -87655,8 +87684,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "ufa" = ( -/obj/effect/spawner/window/reinforced, /obj/structure/disposalpipe/segment, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "ufc" = ( @@ -87699,7 +87728,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "CMO" }, /turf/simulated/floor/plating, @@ -87971,6 +88000,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/station/medical/psych) +"uoR" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) "upd" = ( /obj/effect/spawner/random_barrier/possibly_welded_airlock, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ @@ -88142,7 +88175,6 @@ /area/station/medical/chemistry) "usY" = ( /obj/machinery/door/window/classic/reversed{ - dir = 2; name = "Glass Door" }, /turf/simulated/floor/plating, @@ -88358,6 +88390,11 @@ icon_state = "whitebluecorner" }, /area/station/medical/reception) +"uAY" = ( +/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) "uBn" = ( /obj/item/tank/internals/emergency_oxygen/nitrogen{ pixel_x = -4 @@ -89061,6 +89098,10 @@ }, /turf/simulated/floor/plasteel, /area/station/public/dorms) +"uYP" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) "uYU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -89078,7 +89119,7 @@ }, /area/station/service/barber) "uZb" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d1 = 2; d2 = 4; @@ -89273,7 +89314,7 @@ /turf/simulated/floor/plasteel, /area/station/science/hallway) "vfc" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /obj/structure/cable{ d1 = 1; @@ -91020,8 +91061,7 @@ /area/station/maintenance/apmaint2) "wcN" = ( /obj/machinery/door/window/classic/reversed{ - name = "Containment Pen"; - dir = 2 + name = "Containment Pen" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, /obj/machinery/door/poddoor/preopen{ @@ -91257,7 +91297,7 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) "wkX" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ id_tag = "xenobio4"; @@ -91295,7 +91335,7 @@ /turf/simulated/floor/carpet, /area/station/maintenance/asmaint) "wmr" = ( -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /obj/structure/cable{ d1 = 1; @@ -91676,8 +91716,7 @@ /area/station/security/brig) "wzD" = ( /obj/machinery/door/window/classic/normal{ - name = "EVA Equipment"; - dir = 2 + name = "EVA Equipment" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/warning_stripes/west, @@ -92028,7 +92067,7 @@ id_tag = "Prison Gate"; name = "Prison Lockdown Blast Doors" }, -/obj/effect/spawner/window/reinforced/plasma, +/obj/effect/spawner/window/reinforced/plasma/grilled, /obj/structure/cable, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plating, @@ -92241,7 +92280,7 @@ id_tag = "Secure Gate"; name = "Security Blast Door" }, -/obj/effect/spawner/window/reinforced/polarized{ +/obj/effect/spawner/window/reinforced/polarized/grilled{ id = "IAA" }, /obj/structure/cable{ @@ -93598,7 +93637,7 @@ id_tag = "Prison Gate"; name = "Prison Lockdown Blast Doors" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -93606,6 +93645,10 @@ /obj/effect/decal/warning_stripes/south, /turf/simulated/floor/plating, /area/station/security/permabrig) +"xNN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/hallway) "xNV" = ( /obj/machinery/biogenerator, /obj/machinery/light, @@ -94414,7 +94457,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prisonlockers) "yiF" = ( @@ -103251,7 +103294,7 @@ aaa aaa aaa aaa -aSd +ehK jmd aZP aab @@ -103508,9 +103551,9 @@ aaa aaa aaa aaa -aSd +ehK rOS -aSd +ehK aab aLd aaa @@ -103767,7 +103810,7 @@ aMs aMs aLd gXU -aSd +ehK aMs aLd aaa @@ -103781,8 +103824,8 @@ aVV aaa aLd aMs -aSd -aSd +ehK +ehK aLd aaa aaa @@ -104025,9 +104068,9 @@ aOP aMs qIw aMB -aSd -aSd -aSd +ehK +ehK +ehK aVV aXr jyO @@ -104035,9 +104078,9 @@ jyO jyO aXs aVV -aSd -aSd -aSd +ehK +ehK +ehK blB boP aLd @@ -104297,7 +104340,7 @@ aOQ aRU aSf boL -aSd +ehK aaa aaa aaa @@ -104309,7 +104352,7 @@ aaa aaa aaa aaa -aSd +uAY aaa aaa aaa @@ -104539,9 +104582,9 @@ aOR aQa aMd aMD -aSd -aSd -aSd +ehK +ehK +ehK aVV aXt aXs @@ -104549,12 +104592,12 @@ aXs aXs beG aVV -aSd -aSd -aSd +ehK +ehK +ehK blE boL -aSd +ehK aaa aaa aaa @@ -104566,7 +104609,7 @@ aaa aaa aaa aaa -aSd +ehK aaa aaa aaa @@ -104798,7 +104841,7 @@ aRa aME aTo aUl -aSd +ehK aVV aXu aYZ @@ -104806,27 +104849,27 @@ aYZ aYZ bes aVV -aSd +ehK bid aTo bmS boL -aSd +ehK aaa aaa aaa aaa aaa -aSd +ehK aaa aaa aaa aaa aaa -aSd -aSd -aSd -aSd +ehK +ehK +ehK +ehK aaa aaa aaa @@ -105055,7 +105098,7 @@ aPJ aSf aSf aUk -aSd +ehK aVY aXv aXs @@ -105063,24 +105106,24 @@ bba aXs aXs aVY -aSd +ehK bgI aSf aSf bsd -aSd +ehK aaa aaa aaa aaa aaa -aSd +ehK aaa aaa aaa aaa aaa -aSd +ehK bGm bLY bKp @@ -105312,7 +105355,7 @@ aPQ aSf aSf aUn -aSd +ehK aVY aXw aYZ @@ -105320,24 +105363,24 @@ aYZ aYZ aXs aVY -aSd +ehK bjT aSf aSf bsh -aSd +ehK aaa aaa aaa aaa aaa -aSd +ehK aaa aaa aaa aaa aaa -aSd +ehK bGl bLX bKp @@ -105569,7 +105612,7 @@ aPQ aRd aTp aUm -aSd +ehK aVV aXx aXs @@ -105577,12 +105620,12 @@ aXs aXs bex aVV -aSd +ehK bjS aTp brc bsh -aSd +ehK aaa aaa aaa @@ -105594,7 +105637,7 @@ aaa aaa aaa aaa -aSd +ehK bKp bKp bOb @@ -105824,9 +105867,9 @@ aNw aLd aPT aMD -aSd -aSd -aSd +ehK +ehK +ehK aVV aXy aYZ @@ -105834,12 +105877,12 @@ aYZ aYZ beG aVV -aSd -aSd -aSd +ehK +ehK +ehK blE bsh -aSd +ehK aaa aaa aaa @@ -105851,10 +105894,10 @@ aaa aaa aaa aaa -aSd +ehK aMd bLZ -aSd +ehK aaa aaa aaa @@ -106096,7 +106139,7 @@ aOQ aRU aSf bsh -aSd +ehK aaa aaa bvf @@ -106108,10 +106151,10 @@ aaa bCi aaa aaa -aSd +ehK aMd bLZ -aSd +ehK aaa aaa aaa @@ -106329,18 +106372,18 @@ aaa aaa aaa doE -aII -aII -aII -aII +lNj +lNj +lNj +lNj aHl aLg jRB aQw aRe -aSd -aSd -aSd +ehK +ehK +ehK aVV aVV aYV @@ -106348,27 +106391,27 @@ aYV aYV aVV aVV -aSd -aSd -aSd +ehK +ehK +ehK blB bsh -aSd +ehK aab -aSd +ehK bvl -aSd +ehK aab aMs aab -aSd +ehK bDC -aSd +ehK aaa -aSd +ehK aMd bLZ -aSd +ehK aaa aaa aaa @@ -106596,7 +106639,7 @@ aGn aPY aME aRO -aSd +ehK aUZ aVV aXn @@ -106606,23 +106649,23 @@ aYT bey aVV aUZ -aSd +ehK bpX bmS bgR aLd -aSd -aSd +ehK +ehK aOQ -aSd -aSd +ehK +ehK aMs -aSd -aSd +ehK +ehK aOQ -aSd -aSd -aSd +ehK +ehK +ehK aMd bMa bjQ @@ -106843,10 +106886,10 @@ aaa aaa aaa doE -aII -aII -aII -aII +lNj +lNj +lNj +lNj aNC tmn aGn @@ -106856,11 +106899,11 @@ aRT aLd aLd aLd -aSd -aSd -aSd -aSd -aSd +uAY +uAY +uAY +uAY +uAY aLd aLd aLd @@ -106869,15 +106912,15 @@ aSf bsl aMs aUl -aSd +ehK bvl -aSd +ehK bwO aMs aUl -aSd +ehK bDC -aSd +ehK bBg bLs bmS @@ -107103,7 +107146,7 @@ aaa aaa aaa aaa -aII +lNj aNA aKN aGn @@ -107139,7 +107182,7 @@ bmS aSj aSf bLZ -aSd +ehK aaa aaa aaa @@ -107360,7 +107403,7 @@ aaa aaa aaa aaa -aII +lNj aMy tmn aGn @@ -107396,7 +107439,7 @@ bKU bLC bwT bMc -aSd +ehK aaa aaa aaa @@ -108174,10 +108217,10 @@ blQ iez aaa iez -cng -cng -cng -cng +uYP +uYP +uYP +uYP iez aaa gzN @@ -108429,20 +108472,20 @@ cjg bnw vwk cgQ -cng +uYP rgs cjf kUo kJk oJO cgQ -cng -cng +uYP +uYP fJK rcY cgQ -cng -cng +uYP +uYP aab aaa aaa @@ -109199,7 +109242,7 @@ cGj hYf cJO rFK -cng +uYP aaa cgQ bEO @@ -109208,7 +109251,7 @@ lNb brF cgQ aaa -cng +uYP xlK lNb coL @@ -109456,7 +109499,7 @@ svp bnw svp bET -cng +uYP aaa gzN tkT @@ -109465,7 +109508,7 @@ cqK qjC iez aaa -cng +uYP dDR swy hGW @@ -110228,14 +110271,14 @@ nqv blQ nqv cgQ -cng -cng +uYP +uYP cgQ -cng -cng +uYP +uYP gzN -cng -cng +uYP +uYP cgQ rtu coL @@ -110435,7 +110478,7 @@ aab aaa alv aaa -aII +lNj aDz aEG aFV @@ -110692,7 +110735,7 @@ alv alv alv aaa -aII +lNj aDC aEK aFX @@ -110750,7 +110793,7 @@ aaa aaa aaa aaa -cng +uYP nsu cgQ cgQ @@ -110949,7 +110992,7 @@ aaa aaa aaa aaa -aII +lNj aDB aEJ aFW @@ -111007,7 +111050,7 @@ aaa aaa aaa aaa -cng +uYP eSr wAW cgQ @@ -111217,7 +111260,7 @@ aLu aLr aGn aRp -aII +lNj aGn aGn bQX @@ -112537,13 +112580,13 @@ heB mBl aaa aaa -bKB +ixO bRK xSH bxb bTq bYw -bKB +ixO aaa aaa aaa @@ -112792,18 +112835,18 @@ blQ bGX bDQ bxb -bKB -bKB -bKB +ixO +ixO +ixO bRI xGi -bKB +ixO xGi bUg -bKB +ixO bxb -bKB -bKB +ixO +ixO bxb aaa cgQ @@ -113318,7 +113361,7 @@ oWJ qMY oWJ sFm -bKB +ixO aaa aaa aaa @@ -113326,7 +113369,7 @@ aab aab aab aaa -cng +uYP lOM coL tGO @@ -113575,7 +113618,7 @@ byw djL bKz vHV -bKB +ixO aaa aaa aaa @@ -113583,7 +113626,7 @@ aaa aaa aaa aaa -cng +uYP gGR qsB vjs @@ -113783,7 +113826,7 @@ aaa aaa aaa aaa -aII +lNj dEG aRg xky @@ -113832,7 +113875,7 @@ bHh bKz bKz vHV -bKB +ixO aaa aaa aaa @@ -114040,7 +114083,7 @@ abN aaa aaa aaa -aII +lNj gMa qaI cQd @@ -120011,11 +120054,11 @@ cyg gYs gzN cgQ -cng -cng +uYP +uYP gzN -cng -cng +uYP +uYP cgQ oen cKb @@ -121591,10 +121634,10 @@ cSU cSU djv cSU -cYQ +oMe cSU -cYQ -cYQ +oMe +oMe cSU aaa aaa @@ -132362,20 +132405,20 @@ cKj cts cxO cxO -cAe -cAe +uoR +uoR cxO -cAe -cAe +uoR +uoR cxO -cAe -cAe -cAe +uoR +uoR +uoR cxO cxO -cAe -cAe -cAe +uoR +uoR +uoR cxO cxO cxO @@ -134077,8 +134120,8 @@ auq avp auq atG -aFK -aFK +fhc +fhc aOI gFG aFK @@ -134851,9 +134894,9 @@ aaa aaa aaa aOI -aFK -aFK -aFK +fhc +fhc +fhc aOI aOI aSg @@ -135216,7 +135259,7 @@ dkS cyJ cyJ cep -cAe +uoR aaa aaa aaa @@ -135366,7 +135409,7 @@ aab aab aab aab -aDS +soH aGT aGT aGT @@ -135621,9 +135664,9 @@ aqZ aqZ aab aab -aDS -aDS -aDS +soH +soH +soH aGU aHK aIB @@ -135730,7 +135773,7 @@ rmI cep cYj dmr -cAe +uoR aaa aaa aaa @@ -135988,10 +136031,10 @@ cep cYj dmm chf -cAe -cAe -cAe -cAe +uoR +uoR +uoR +uoR npm aaa aaa @@ -136135,9 +136178,9 @@ aqZ awR aab aab -aDS -aDS -aDS +soH +soH +soH aGW aHJ aIC @@ -136504,8 +136547,8 @@ gPV mLu chf chf -cAe -cAe +uoR +uoR doE aaa aaa @@ -136759,7 +136802,7 @@ chf nyC cts dgm -cAe +uoR aab aab aab @@ -142157,7 +142200,7 @@ ciY vZV csL cHf -cBQ +pVM aaa aab aaa @@ -142414,7 +142457,7 @@ ciY csL csL ctq -cBQ +pVM aaa aab aaa @@ -142894,8 +142937,8 @@ oSr yiF qhq rKV -gLu -gLu +xNN +xNN rKV rKV rKV @@ -142919,9 +142962,9 @@ ciY cQC csL qdO -cBQ +pVM aaa -cBQ +pVM cDo ePu csL @@ -143154,7 +143197,7 @@ aab aab aab aab -cBQ +pVM cBe puC krV @@ -143176,9 +143219,9 @@ ciY cQC csL dhR -cBQ +pVM fpO -cBQ +pVM asu hyk ugC @@ -144124,8 +144167,8 @@ aYP aYP aXl aYP -aYQ -aYQ +khg +khg aYP aYP aYP @@ -145931,7 +145974,7 @@ aaa aaa aaa aaa -bjR +pSH uLo bzs acg @@ -145983,10 +146026,10 @@ hlu nXc pfF mAv -csL -csL -ePu -hyk +cOm +cOm +qmp +lQH cga hyk csL @@ -146188,7 +146231,7 @@ aaa aaa aaa aaa -bjR +pSH ylC bmm bBl @@ -146445,7 +146488,7 @@ aaa aaa aaa aaa -bjR +pSH fjd bzw bAM @@ -146519,7 +146562,7 @@ kEe kju ibW jtP -cBQ +pVM aaa aab aab @@ -146702,7 +146745,7 @@ aaa aaa aaa aab -bjR +pSH uLo bmm bBl @@ -146770,13 +146813,13 @@ ciY aab pGL aab -cBQ +pVM gPM kju xtZ aPr vhf -cBQ +pVM aaa aaa aab @@ -146959,7 +147002,7 @@ aaa aaa aab aaa -bjR +pSH ylC bmm bBl @@ -147027,13 +147070,13 @@ ciY aab wHA aab -cBQ +pVM awM kju kju kju hgb -cBQ +pVM aaa aaa aab @@ -147216,7 +147259,7 @@ aaa aab aaa aaa -bjR +pSH fjd bmm bBl @@ -147543,9 +147586,9 @@ aaa aaa aaa ciY -cBQ -cBQ -cBQ +pVM +pVM +pVM ciY aaa aaa @@ -147730,7 +147773,7 @@ aaa aab aab aaa -bjR +pSH bzO bmm bBl @@ -147987,7 +148030,7 @@ aaa aaa aab aaa -bjR +pSH bzO bzw bAM @@ -148244,7 +148287,7 @@ aaa aaa aab aaa -bjR +pSH bzO bmm bBl @@ -148281,10 +148324,10 @@ xhR fDJ aab ciY -cBQ -cBQ +pVM +pVM yls -cBQ +pVM ciY pCv ciY @@ -148539,9 +148582,9 @@ fDJ aaa aaa aab -cBQ +pVM cGW -cBQ +pVM ciY sKQ fKw @@ -148796,9 +148839,9 @@ fDJ aab aaa doE -cBQ +pVM qXe -cBQ +pVM ciY qlE cBQ @@ -149578,7 +149621,7 @@ aab aab ciY ciY -cBQ +pVM ciY ciY ciY @@ -150046,7 +150089,7 @@ sCl rxW btp bol -bjR +pSH boI bjR tnJ @@ -150054,9 +150097,9 @@ pXs eWC bjR xir -bjR +pSH xir -bjR +pSH aaa aaa aaa @@ -150303,7 +150346,7 @@ bol bol btp bol -bjR +pSH brL bEF cWE @@ -150311,9 +150354,9 @@ bGN dgz bEF bAN -bjR +pSH bol -bjR +pSH aaa aaa aaa @@ -150560,7 +150603,7 @@ ndH brD btp bol -bjR +pSH bol bqn cWQ @@ -150568,9 +150611,9 @@ bGM fEO bqn bol -bjR +pSH bol -bjR +pSH aaa aaa aaa @@ -150817,17 +150860,17 @@ bEG bEG bEG boI -bjR +pSH boI -bjR -bjR -bjR -bjR -bjR +pSH +pSH +pSH +pSH +pSH xir -bjR +pSH xir -bjR +pSH aaa aaa aaa @@ -152639,7 +152682,7 @@ aaa aaa aab qcH -cic +iWz clB cnk cid @@ -152651,9 +152694,9 @@ cie cie cie cnk -cic +iWz cCv -cic +iWz qcH aaa aaa @@ -152895,7 +152938,7 @@ aaa aaa aaa aab -cic +iWz cjZ cjZ cjZ @@ -153152,7 +153195,7 @@ aaa aaa aaa aab -cic +iWz cjZ cjZ cjZ @@ -153409,7 +153452,7 @@ aaa aaa aaa aab -cic +iWz clA kOa jgm diff --git a/_maps/map_files/generic/centcomm.dmm b/_maps/map_files/generic/centcomm.dmm index 975a09bc5336..e3673b17e344 100644 --- a/_maps/map_files/generic/centcomm.dmm +++ b/_maps/map_files/generic/centcomm.dmm @@ -8388,7 +8388,7 @@ /obj/item/radio/intercom/syndicate{ pixel_x = -28 }, -/obj/item/kitchen/knife/carrotshiv, +/obj/item/kitchen/knife/shiv/carrot, /turf/simulated/floor/wood, /area/wizard_station) "GI" = ( diff --git a/_maps/map_files220/RandomRuins/LavaRuins/scp_facility.dmm b/_maps/map_files220/RandomRuins/LavaRuins/scp_facility.dmm new file mode 100644 index 000000000000..b71d29e2b3dc --- /dev/null +++ b/_maps/map_files220/RandomRuins/LavaRuins/scp_facility.dmm @@ -0,0 +1,4088 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aK" = ( +/obj/structure/table/glass/plasma, +/obj/item/paper/scp/status_report, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"be" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkblue"; + dir = 4 + }, +/area/ruin/unpowered/misc_lavaruin) +"bf" = ( +/obj/effect/landmark/burnturf, +/obj/machinery/door/airlock/highsecurity, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"bp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/britcup, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"bx" = ( +/obj/structure/sign/biohazard, +/turf/simulated/wall/indestructible/syndishuttle/nodiagonal, +/area/ruin/unpowered/misc_lavaruin) +"bI" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"ca" = ( +/obj/effect/decal/cleanable/dust, +/mob/living/simple_animal/hostile/carp/eyeball, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "engine" + }, +/area/ruin/unpowered/misc_lavaruin) +"ce" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"cj" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/door/airlock, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/ruin/unpowered/misc_lavaruin) +"de" = ( +/obj/structure/sign/directions/engineering, +/turf/simulated/wall/indestructible/syndishuttle/nodiagonal, +/area/ruin/unpowered/misc_lavaruin) +"em" = ( +/obj/machinery/atmospherics/unary/tank/air, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"et" = ( +/obj/effect/decal/cleanable/blood/writing, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkred"; + dir = 8 + }, +/area/ruin/unpowered/misc_lavaruin) +"ey" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 5 + }, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"eY" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkred"; + dir = 9 + }, +/area/ruin/unpowered/misc_lavaruin) +"fe" = ( +/obj/structure/table, +/obj/item/soap/nanotrasen, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/ruin/unpowered/misc_lavaruin) +"fu" = ( +/obj/effect/decal/cleanable/blood/writing, +/obj/effect/decal/cleanable/dust, +/obj/item/ammo_casing/c9mm, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"fw" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"fH" = ( +/obj/structure/girder/reinforced, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"fN" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/remains/robot, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"fS" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 6 + }, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"gu" = ( +/obj/machinery/door/airlock/highsecurity, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"gz" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 4 + }, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"gZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"hf" = ( +/turf/simulated/mineral/random, +/area/lavaland/surface/outdoors) +"ic" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"ig" = ( +/obj/structure/table/reinforced, +/obj/item/melee/baton/loaded, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"ir" = ( +/obj/effect/mapping_helpers/no_lava, +/mob/living/simple_animal/hostile/asteroid/basilisk/watcher, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"iu" = ( +/obj/machinery/shower{ + pixel_y = 15 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/ruin/unpowered/misc_lavaruin) +"iN" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/ruin/unpowered/misc_lavaruin) +"jQ" = ( +/obj/machinery/washing_machine, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "whiteblue" + }, +/area/ruin/unpowered/misc_lavaruin) +"kf" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"ki" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"kw" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas{ + pixel_y = 4 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"kC" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkred"; + dir = 5 + }, +/area/ruin/unpowered/misc_lavaruin) +"lB" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 10 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkred"; + dir = 8 + }, +/area/ruin/unpowered/misc_lavaruin) +"lC" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"lI" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/door/airlock/highsecurity, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"my" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/table/reinforced, +/obj/item/circuitboard/cyborgrecharger, +/obj/item/crowbar, +/obj/item/weldingtool, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"mE" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkblue"; + dir = 4 + }, +/area/ruin/unpowered/misc_lavaruin) +"mV" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 5 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkred"; + dir = 8 + }, +/area/ruin/unpowered/misc_lavaruin) +"nn" = ( +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "engine" + }, +/area/ruin/unpowered/misc_lavaruin) +"nr" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"nz" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"nG" = ( +/obj/structure/table/reinforced, +/obj/item/pizzabox/infinite{ + pixel_y = 10 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"nO" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/ruin/unpowered/misc_lavaruin) +"oL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"oN" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkbluefull" + }, +/area/ruin/unpowered/misc_lavaruin) +"oY" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkbluefull" + }, +/area/ruin/unpowered/misc_lavaruin) +"pb" = ( +/obj/structure/rack, +/obj/item/storage/box/handcuffs, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"pm" = ( +/turf/simulated/wall/indestructible/syndishuttle/nodiagonal, +/area/ruin/unpowered/misc_lavaruin) +"pv" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"pw" = ( +/obj/effect/decal/cleanable/blood/writing, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"pR" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"qK" = ( +/mob/living/simple_animal/hostile/abomination/altform2, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"rv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"rA" = ( +/obj/structure/sign/radiation, +/turf/simulated/wall/indestructible/syndishuttle/nodiagonal, +/area/ruin/unpowered/misc_lavaruin) +"rB" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"rP" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkred"; + dir = 4 + }, +/area/ruin/unpowered/misc_lavaruin) +"sa" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"sf" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"si" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/light/built/east, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkred"; + dir = 8 + }, +/area/ruin/unpowered/misc_lavaruin) +"st" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/door/airlock{ + name = "Staff Room" + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"sy" = ( +/obj/structure/barricade/security, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"sT" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"sY" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkbluefull" + }, +/area/ruin/unpowered/misc_lavaruin) +"tP" = ( +/turf/template_noop, +/area/template_noop) +"ug" = ( +/mob/living/simple_animal/hostile/abomination/altform1, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "engine" + }, +/area/ruin/unpowered/misc_lavaruin) +"uY" = ( +/obj/machinery/economy/vending/snack, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"vd" = ( +/obj/machinery/door/airlock/maintenance/external, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"vs" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/effect/decal/cleanable/blood/writing{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"vv" = ( +/obj/machinery/status_display, +/obj/structure/table/glass/plasma, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"vL" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkblue"; + dir = 4 + }, +/area/ruin/unpowered/misc_lavaruin) +"vR" = ( +/mob/living/simple_animal/hostile/tree, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"wa" = ( +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"wm" = ( +/obj/structure/girder/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"wE" = ( +/obj/effect/decal/cleanable/dust, +/obj/item/paper/scp/research_notes, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkbluefull" + }, +/area/ruin/unpowered/misc_lavaruin) +"wK" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave{ + pixel_y = 5 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"wP" = ( +/obj/structure/sign/directions/medical{ + dir = 4 + }, +/turf/simulated/wall/indestructible/syndishuttle/nodiagonal, +/area/ruin/unpowered/misc_lavaruin) +"xi" = ( +/obj/structure/rack, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"xG" = ( +/obj/structure/table, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"xT" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"ym" = ( +/obj/structure/sign/xeno_warning_mining, +/turf/simulated/wall/indestructible/syndishuttle/nodiagonal, +/area/ruin/unpowered/misc_lavaruin) +"yw" = ( +/obj/effect/decal/remains/robot, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"yE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"yF" = ( +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"yI" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"zg" = ( +/obj/structure/rack, +/obj/item/clothing/suit/fire{ + pixel_y = 4 + }, +/obj/item/extinguisher, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"zh" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/closet/radiation, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"zl" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"zs" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"zB" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_y = 6 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"zQ" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"AT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/built/west, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Bd" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"Bx" = ( +/obj/item/chair{ + dir = 4; + pixel_y = -6; + pixel_x = -11 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"BI" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"BX" = ( +/obj/structure/table/glass/plasma, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"Ci" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/displaced, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Cq" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/mob_spawn/human/corpse/damaged, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkbluecorners" + }, +/area/ruin/unpowered/misc_lavaruin) +"Cv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance/external, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Cz" = ( +/obj/structure/barricade/security, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"CI" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/closet/l3closet, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Di" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_y = 2 + }, +/obj/item/storage/box/lights/mixed{ + pixel_y = 4 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"DE" = ( +/obj/item/chair{ + pixel_y = -6; + pixel_x = 10 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"DH" = ( +/obj/structure/girder/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"DJ" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/mob_spawn/human/corpse/scientist, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"DZ" = ( +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"En" = ( +/obj/structure/rack, +/obj/item/flash{ + pixel_y = 2; + pixel_x = -4 + }, +/obj/item/flash{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"EL" = ( +/obj/machinery/floodlight, +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"EX" = ( +/obj/effect/decal/cleanable/blood/writing, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Ff" = ( +/obj/effect/decal/cleanable/dust, +/mob/living/simple_animal/hostile/faithless, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/writing{ + dir = 4 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "engine" + }, +/area/ruin/unpowered/misc_lavaruin) +"Fh" = ( +/turf/simulated/wall/indestructible/rock/mineral{ + color = "#464646" + }, +/area/lavaland/surface/outdoors) +"Fr" = ( +/obj/structure/table/glass/plasma, +/obj/item/paper_bin/nanotrasen, +/obj/item/pen, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"Fy" = ( +/obj/machinery/washing_machine, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "whiteblue" + }, +/area/ruin/unpowered/misc_lavaruin) +"FK" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"FQ" = ( +/obj/item/analyzer, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"Gg" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkred"; + dir = 4 + }, +/area/ruin/unpowered/misc_lavaruin) +"Gk" = ( +/obj/effect/decal/cleanable/dust, +/obj/item/ammo_casing/c9mm, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"GX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"GZ" = ( +/turf/simulated/wall/indestructible/rock/mineral{ + color = "#464646" + }, +/area/ruin/unpowered/misc_lavaruin) +"Ha" = ( +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Hh" = ( +/obj/structure/sign/science, +/turf/simulated/wall/indestructible/syndishuttle/nodiagonal, +/area/ruin/unpowered/misc_lavaruin) +"Hk" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Hl" = ( +/obj/structure/table/glass/plasma, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"Ho" = ( +/obj/structure/rack, +/obj/item/grenade/barrier{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"Hu" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Hy" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/hooded/cultrobes, +/obj/item/clothing/head/hooded/culthood{ + pixel_y = 12 + }, +/turf/simulated/floor/engine/cult/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Hz" = ( +/obj/structure/closet/wardrobe/medic_white, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"HJ" = ( +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"HN" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"HS" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "engine" + }, +/area/ruin/unpowered/misc_lavaruin) +"Ir" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Jj" = ( +/obj/structure/rack, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"Jm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Jp" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"Jv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/paper_bin/nanotrasen, +/obj/item/pen, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Jx" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkblue"; + dir = 4 + }, +/area/ruin/unpowered/misc_lavaruin) +"JM" = ( +/obj/structure/sign/directions/evac{ + dir = 1 + }, +/turf/simulated/wall/indestructible/syndishuttle/nodiagonal, +/area/ruin/unpowered/misc_lavaruin) +"JO" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkred"; + dir = 1 + }, +/area/ruin/unpowered/misc_lavaruin) +"JV" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/cursedclown, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "engine" + }, +/area/ruin/unpowered/misc_lavaruin) +"Ki" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "whiteblue" + }, +/area/ruin/unpowered/misc_lavaruin) +"KE" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"KK" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"KP" = ( +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"KS" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"Lj" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkred"; + dir = 4 + }, +/area/ruin/unpowered/misc_lavaruin) +"ML" = ( +/obj/effect/decal/cleanable/blood/writing, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Ng" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"NT" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkred"; + dir = 8 + }, +/area/ruin/unpowered/misc_lavaruin) +"OE" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"OX" = ( +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Pc" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "engine" + }, +/area/ruin/unpowered/misc_lavaruin) +"Pr" = ( +/obj/machinery/doppler_array{ + name = "Система Сейсмического Оповещения"; + desc = "Старая ржавая машина" + }, +/obj/item/paper/scp/seismic_warning, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Pt" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 4 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "engine" + }, +/area/ruin/unpowered/misc_lavaruin) +"PG" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/ruin/unpowered/misc_lavaruin) +"PI" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Qm" = ( +/obj/machinery/economy/vending/cigarette, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"QW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/c9mm, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Rh" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "engine" + }, +/area/ruin/unpowered/misc_lavaruin) +"Rt" = ( +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/ruin/unpowered/misc_lavaruin) +"Rw" = ( +/turf/simulated/wall/indestructible/syndishuttle/nodiagonal, +/area/lavaland/surface/outdoors) +"RG" = ( +/obj/effect/decal/cleanable/dust, +/mob/living/simple_animal/hostile/abomination/altform4, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Sa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Ss" = ( +/obj/structure/sink/directional/north, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/ruin/unpowered/misc_lavaruin) +"Sv" = ( +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"SG" = ( +/obj/structure/girder/displaced, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"SU" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/machinery/door/airlock/highsecurity, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/ruin/unpowered/misc_lavaruin) +"SV" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"SZ" = ( +/turf/simulated/floor/engine/cult/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Tk" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkblue" + }, +/area/ruin/unpowered/misc_lavaruin) +"Tl" = ( +/obj/effect/decal/cleanable/dust, +/obj/item/ammo_casing/shotgun/buckshot, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"To" = ( +/mob/living/simple_animal/hostile/abomination, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"TC" = ( +/obj/item/stack/cable_coil/yellow, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"TD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"TJ" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Uq" = ( +/mob/living/simple_animal/hostile/abomination/super, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "engine" + }, +/area/ruin/unpowered/misc_lavaruin) +"UM" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/writing{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Vv" = ( +/mob/living/simple_animal/hostile/abomination/altform3, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkred"; + dir = 1 + }, +/area/ruin/unpowered/misc_lavaruin) +"VF" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "engine" + }, +/area/ruin/unpowered/misc_lavaruin) +"VG" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"VO" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkred"; + dir = 8 + }, +/area/ruin/unpowered/misc_lavaruin) +"Wa" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/mob_spawn/human/corpse/scientist, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"WV" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Xd" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"XD" = ( +/obj/machinery/computer/arcade, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"XO" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"XS" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"XW" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) +"Yp" = ( +/obj/effect/decal/cleanable/blood/writing, +/obj/effect/decal/cleanable/dust, +/obj/item/ammo_casing/shotgun/buckshot, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Yu" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Yz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"YD" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkblue" + }, +/area/ruin/unpowered/misc_lavaruin) +"YW" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "darkbluefull" + }, +/area/ruin/unpowered/misc_lavaruin) +"ZD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/writing{ + dir = 4 + }, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"ZE" = ( +/obj/machinery/economy/vending/cola, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cmo" + }, +/area/ruin/unpowered/misc_lavaruin) + +(1,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +tP +tP +tP +tP +tP +"} +(2,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +tP +tP +tP +tP +tP +"} +(3,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +tP +tP +tP +tP +tP +"} +(4,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +tP +tP +tP +tP +tP +"} +(5,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +tP +hf +hf +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +SV +pm +hf +hf +hf +tP +tP +tP +tP +"} +(6,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +tP +tP +tP +UM +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +pm +SV +pm +hf +hf +hf +tP +tP +tP +tP +"} +(7,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +tP +tP +tP +vs +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +pm +Wa +pm +hf +hf +hf +tP +tP +tP +tP +"} +(8,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +Ha +HJ +hf +hf +tP +tP +tP +vs +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +pm +SV +pm +hf +hf +tP +tP +tP +tP +tP +"} +(9,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +HJ +HJ +Fh +pm +pm +gu +Yu +ic +pm +Fh +tP +tP +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +"} +(10,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +Ha +HJ +hf +Fh +pm +kf +DZ +SV +ic +pm +Fh +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +"} +(11,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +Ha +HJ +HJ +hf +Fh +pm +xG +SV +SV +ic +pm +Fh +hf +hf +hf +hf +hf +hf +Rw +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +hf +"} +(12,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +Ha +HJ +HJ +hf +Fh +pm +xG +RG +TC +ic +pm +Fh +hf +hf +hf +hf +Rw +hf +Fh +Fh +pm +pm +pm +pm +pm +pm +pm +pm +pm +Fh +hf +"} +(13,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +Ha +HJ +HJ +hf +Fh +pm +zQ +HN +EL +TJ +pm +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +wm +pm +XD +pv +XW +XW +XW +pv +wK +pm +Fh +hf +"} +(14,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +HJ +HJ +HJ +hf +Fh +pm +pm +Hk +Hk +gz +pm +pm +pm +pm +pm +pm +pm +Yu +XS +Sv +pm +Qm +XW +Bx +fw +sT +XW +Jp +pm +Fh +hf +"} +(15,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +hf +HJ +HJ +HJ +hf +Fh +pm +GX +Xd +Xd +WV +yF +Xd +nr +Gk +Xd +yF +Xd +To +FK +GX +OX +XW +Ng +BX +Hl +BX +XW +XO +pm +Fh +hf +"} +(16,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +hf +HJ +HJ +HJ +hf +hf +Fh +Yu +GX +Xd +GX +ey +pw +pw +pw +EX +ML +fu +EX +Yp +fS +Xd +st +XW +Ng +aK +vv +BX +XW +ZE +pm +Fh +hf +"} +(17,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +hf +Ha +HJ +HJ +HJ +hf +hf +Fh +Fh +pR +Xd +zl +Xd +yF +Xd +yF +GX +QW +yI +Tl +Xd +Xd +Xd +OX +wa +Ng +Fr +BX +BX +XW +uY +pm +Fh +hf +"} +(18,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +HJ +HJ +HJ +HJ +hf +hf +Fh +pm +wm +Xd +yF +Fh +Yu +pm +pm +vd +pm +pm +JM +sa +bI +bI +pm +zs +XW +rB +rB +DE +wa +Hz +pm +Fh +hf +"} +(19,1,1) = {" +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +HJ +HJ +HJ +HJ +Ha +hf +hf +Fh +pm +Fh +GX +Fh +Fh +pm +em +yw +DZ +DZ +Di +pm +Xd +GX +Xd +pm +xT +KP +XW +VG +XW +KP +Hz +pm +Fh +hf +"} +(20,1,1) = {" +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +Ha +HJ +HJ +HJ +HJ +Ha +Ha +hf +Fh +Fh +Fh +Fh +Fh +Fh +pm +yE +DZ +DZ +DZ +kw +pm +Xd +yF +GX +pm +pm +pm +pm +pm +pm +pm +pm +pm +Fh +hf +"} +(21,1,1) = {" +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +hf +hf +Ha +HJ +HJ +HJ +HJ +Ha +Ha +Ha +hf +Fh +pm +Fh +hf +hf +Fh +pm +rv +Pr +Hu +lC +zg +pm +yF +Xd +yF +pm +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +hf +"} +(22,1,1) = {" +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +hf +HJ +HJ +HJ +HJ +HJ +Ha +Ha +Ha +Ha +hf +Fh +pm +Fh +hf +hf +Fh +pm +pm +pm +pm +pm +pm +pm +CI +yF +zh +pm +Fh +Fh +hf +hf +hf +hf +hf +hf +hf +hf +"} +(23,1,1) = {" +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +hf +HJ +HJ +HJ +HJ +HJ +Ha +Ha +Ha +Ha +Ha +hf +Fh +Fh +Fh +hf +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +pm +bx +cj +rA +pm +pm +Fh +hf +hf +hf +hf +hf +hf +hf +tP +"} +(24,1,1) = {" +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +HJ +HJ +HJ +HJ +HJ +Ha +Ha +Ha +Ha +Ha +hf +hf +hf +hf +hf +hf +Fh +pm +pm +pm +pm +pm +Fh +Fh +pm +iu +nO +iN +Fy +pm +Fh +hf +hf +hf +hf +hf +hf +tP +tP +"} +(25,1,1) = {" +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +Ha +HJ +HJ +HJ +HJ +Ha +Ha +Ha +Ha +Ha +Ha +hf +hf +hf +hf +hf +hf +Fh +pm +PG +fN +KE +KE +Fh +Fh +pm +Ss +iN +nO +jQ +pm +Fh +hf +hf +hf +hf +hf +tP +tP +tP +"} +(26,1,1) = {" +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +HJ +HJ +HJ +HJ +Ha +Ha +Ha +Ha +Ha +Ha +hf +Fh +Fh +Fh +Fh +Fh +Fh +Fh +Fh +my +KE +KE +KE +Fh +Fh +pm +fe +iN +nO +Ki +pm +Fh +Fh +Fh +Fh +hf +hf +tP +tP +tP +"} +(27,1,1) = {" +tP +tP +hf +hf +hf +hf +hf +hf +hf +HJ +HJ +HJ +HJ +Ha +Ha +Ha +hf +Fh +Fh +Fh +hf +Fh +pm +pm +pm +pm +pm +pm +pm +pm +pm +pm +KE +pm +pm +pm +ym +cj +Hh +de +pm +pm +pm +pm +Fh +hf +tP +tP +tP +tP +"} +(28,1,1) = {" +tP +tP +hf +hf +hf +hf +hf +hf +hf +HJ +HJ +HJ +Ha +Ha +hf +Fh +Fh +Fh +wm +Fh +Fh +Fh +pm +Pc +Pc +Pc +Pc +Pc +Pc +Pc +pm +KK +KE +KE +KE +GX +KE +KE +KE +KE +FQ +GX +wm +Fh +Fh +hf +tP +tP +tP +tP +"} +(29,1,1) = {" +tP +tP +hf +hf +hf +hf +hf +hf +Ha +HJ +HJ +HJ +Fh +Fh +Fh +Fh +wm +wm +GX +Fh +Fh +GX +pm +Pc +Pc +Pc +Pc +Pc +Pc +Pc +pm +sf +KE +OE +GX +GX +KE +KE +KE +KE +wm +wm +Fh +Fh +hf +hf +tP +tP +tP +tP +"} +(30,1,1) = {" +tP +hf +hf +hf +hf +hf +hf +hf +Ha +HJ +HJ +Ha +Fh +wm +GX +GX +GX +Pc +Pc +pm +GX +GX +pm +Pc +Pc +Pc +Pc +Pc +Pc +Pc +pm +GX +Bd +Cq +be +vL +Jx +GX +mE +GX +Fh +Fh +Fh +hf +hf +hf +tP +tP +tP +tP +"} +(31,1,1) = {" +tP +hf +hf +hf +hf +hf +hf +Ha +HJ +HJ +HJ +Ha +pm +Pc +Pc +Ff +Pc +Pc +Rh +pm +GX +GX +SG +Pc +Pc +ca +JV +Pc +Pc +Pc +pm +ce +Bd +Tk +pm +pm +PI +GZ +GZ +GZ +Fh +hf +hf +hf +hf +hf +tP +tP +tP +tP +"} +(32,1,1) = {" +tP +hf +hf +hf +hf +hf +hf +HJ +HJ +HJ +HJ +Ha +pm +Rh +Rh +Pt +Rh +Rh +Rh +pm +GX +GX +fH +Pc +Pc +Pc +nn +VF +Pc +Pc +pm +KE +KE +YD +fH +oN +YW +YW +fH +fH +Fh +hf +hf +hf +tP +tP +tP +tP +tP +tP +"} +(33,1,1) = {" +tP +hf +hf +hf +pm +pm +pm +pm +fH +HJ +Ha +Ha +pm +Rh +Rh +Pt +Rh +Rh +Rh +pm +GX +Yz +pm +Pc +Pc +Pc +Pc +VF +Pc +Pc +pm +KE +GX +YD +pm +sY +GX +YW +YW +Ir +Fh +hf +HJ +hf +tP +tP +tP +tP +tP +tP +"} +(34,1,1) = {" +tP +hf +hf +hf +pm +Jj +xi +Cz +sy +Ha +Ha +Ha +pm +Rh +Rh +Pt +Rh +Rh +Rh +pm +GX +Yz +pm +HS +Pc +Pc +Pc +Pc +Pc +Pc +pm +KE +GX +YD +pm +GX +YW +wE +YW +Jv +Fh +HJ +HJ +hf +hf +tP +tP +tP +tP +tP +"} +(35,1,1) = {" +tP +hf +hf +hf +pm +KS +eY +NT +Ir +Ha +Ha +Ha +Fh +DH +DH +ZD +DH +DH +DH +pm +Cv +GZ +pm +pm +pm +pm +lI +pm +pm +pm +pm +ce +KE +Tk +pm +oY +oY +oY +oY +bp +Fh +HJ +HJ +hf +hf +tP +tP +tP +tP +tP +"} +(36,1,1) = {" +tP +hf +hf +hf +pm +nG +JO +sf +Ir +Ir +Ha +Ha +Ha +NT +NT +mV +et +lB +NT +NT +sf +GZ +GZ +GZ +Ci +si +KE +NT +VO +VO +nz +GX +KE +YD +pm +pm +oL +oL +oL +oL +Fh +HJ +HJ +hf +hf +hf +tP +tP +tP +tP +"} +(37,1,1) = {" +tP +hf +hf +hf +pm +ig +Vv +sf +ki +Ir +bf +Ha +Ha +Ha +sf +sf +sf +DJ +sf +sf +sf +GZ +GZ +GZ +GZ +Sa +qK +KE +sf +KE +KE +KE +KE +KE +pm +Ha +Ha +Ha +Ha +Ha +HJ +HJ +HJ +hf +hf +hf +tP +tP +tP +tP +"} +(38,1,1) = {" +tP +hf +hf +hf +pm +BI +JO +sf +sf +sf +Ir +Ha +Ha +Ha +Ha +pm +pm +pm +pm +GZ +GZ +GZ +GZ +GZ +GX +AT +KE +GX +GX +Gg +rP +GX +Jm +GX +pm +Ha +Ha +Ha +Ha +HJ +HJ +HJ +hf +hf +hf +tP +tP +tP +tP +tP +"} +(39,1,1) = {" +tP +hf +hf +hf +pm +Jj +kC +Lj +Lj +Lj +Ir +Ir +Ha +Rw +Ha +pm +GX +TD +GX +GX +Fh +Fh +pm +pm +pm +pm +lI +pm +pm +pm +wP +gZ +Fh +Fh +Fh +ir +Ha +Ha +HJ +HJ +HJ +hf +hf +hf +tP +tP +tP +tP +tP +tP +"} +(40,1,1) = {" +tP +hf +hf +hf +pm +Jj +zB +Jj +Ho +En +pb +pm +Ha +Ha +Ha +SU +GX +GX +vR +GX +Fh +Fh +pm +Rh +Rh +Rh +Rh +Rh +Rh +Rh +pm +Fh +Fh +hf +Ha +Ha +Ha +HJ +HJ +HJ +hf +hf +hf +tP +tP +tP +tP +tP +tP +tP +"} +(41,1,1) = {" +tP +hf +hf +hf +pm +pm +pm +pm +pm +pm +pm +pm +HJ +Ha +Ha +Fh +Fh +GX +TD +GX +Fh +Fh +pm +Rh +Rh +SZ +Rh +SZ +Rh +ug +pm +Fh +hf +Ha +Ha +Ha +HJ +HJ +HJ +hf +hf +hf +tP +tP +tP +tP +tP +tP +tP +tP +"} +(42,1,1) = {" +tP +tP +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +HJ +HJ +hf +Ha +Fh +Fh +Fh +Rt +Fh +Fh +pm +Rh +SZ +SZ +SZ +SZ +Rh +Rh +pm +hf +hf +Ha +Ha +HJ +HJ +HJ +hf +hf +hf +tP +tP +tP +tP +tP +tP +tP +tP +tP +"} +(43,1,1) = {" +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +HJ +HJ +hf +Ha +hf +Fh +Fh +Fh +Fh +pm +Rh +Uq +SZ +Hy +SZ +SZ +Rh +pm +hf +hf +Ha +Ha +HJ +HJ +Ha +hf +hf +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +"} +(44,1,1) = {" +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +HJ +HJ +HJ +Ha +Ha +hf +hf +Fh +pm +Ir +Rh +SZ +SZ +SZ +Rh +Rh +pm +hf +hf +Ha +HJ +HJ +HJ +hf +hf +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +"} +(45,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +hf +HJ +HJ +HJ +Ha +Ha +hf +Fh +Fh +fH +Ir +SZ +Rh +SZ +SZ +Rh +pm +hf +hf +Ha +HJ +HJ +hf +hf +hf +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +"} +(46,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +Ha +Ha +HJ +HJ +Ha +hf +hf +Fh +Fh +Ir +Rh +Rh +Rh +Rh +Rh +pm +hf +Ha +Ha +HJ +HJ +hf +hf +hf +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +"} +(47,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +Ha +Ha +HJ +HJ +HJ +hf +hf +Fh +Fh +pm +pm +pm +pm +pm +pm +Ha +Ha +HJ +HJ +HJ +hf +hf +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +"} +(48,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +Ha +Ha +HJ +HJ +HJ +HJ +hf +hf +Ha +Ha +Ha +Ha +Ha +Ha +Ha +HJ +HJ +HJ +hf +hf +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +"} +(49,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +Ha +HJ +HJ +HJ +HJ +HJ +hf +Ha +HJ +HJ +HJ +Ha +HJ +HJ +HJ +HJ +hf +hf +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +"} +(50,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +Ha +HJ +HJ +HJ +HJ +HJ +HJ +HJ +HJ +HJ +HJ +HJ +Ha +Ha +hf +hf +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +"} +(51,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +Ha +Ha +Ha +Ha +HJ +HJ +Ha +Ha +Ha +Ha +hf +hf +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +"} +(52,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +Ha +Ha +Ha +Ha +Ha +Ha +hf +hf +hf +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +"} +(53,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +Ha +Ha +hf +hf +hf +hf +hf +hf +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +"} +(54,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +hf +hf +hf +hf +hf +hf +hf +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +"} +(55,1,1) = {" +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +tP +"} diff --git a/_maps/map_files220/RandomRuins/SpaceRuins/convoy_ambush.dmm b/_maps/map_files220/RandomRuins/SpaceRuins/convoy_ambush.dmm new file mode 100644 index 000000000000..b3f8af305c06 --- /dev/null +++ b/_maps/map_files220/RandomRuins/SpaceRuins/convoy_ambush.dmm @@ -0,0 +1,5816 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aX" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"aZ" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/ruin/space/unpowered/unpowered_structures) +"bb" = ( +/obj/item/radio/intercom{ + dir = 4; + pixel_x = -27; + name = "intercom" + }, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"bd" = ( +/obj/structure/closet/syndicate, +/obj/item/storage/backpack/duffel/syndie, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/unpowered/unpowered_structures) +"bf" = ( +/obj/effect/landmark/damageturf, +/obj/structure/shuttle/engine/router, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"bj" = ( +/obj/structure/shuttle/engine/router, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"bq" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"bA" = ( +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/unpowered/unpowered_structures) +"bV" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/template_noop, +/area/template_noop) +"ci" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/turf/simulated/floor/plasteel/airless{ + icon_state = "darkbluealtstrip"; + dir = 5 + }, +/area/ruin/space/unpowered/unpowered_structures) +"cj" = ( +/mob/living/simple_animal/hostile/syndicate/ranged/space/autogib{ + wander = 0 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"cn" = ( +/obj/structure/closet/crate/secure, +/obj/item/stack/ore/plasma, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"cG" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel/airless{ + icon_state = "blackfull" + }, +/area/ruin/space/unpowered/unpowered_structures) +"cJ" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_y = -10; + pixel_x = 16 + }, +/turf/template_noop, +/area/template_noop) +"dq" = ( +/obj/machinery/light_construct/small/west, +/obj/structure/closet, +/obj/structure/sign/nosmoking_1{ + pixel_x = -32 + }, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/turf/simulated/floor/plasteel/airless{ + icon_state = "blackfull" + }, +/area/ruin/space/unpowered/unpowered_structures) +"dx" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/secure/weapon{ + opened = 1 + }, +/obj/item/clothing/mask/balaclava, +/obj/item/kitchen/knife/combat, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"dI" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "darkbluealtstrip"; + dir = 4 + }, +/area/ruin/space/unpowered/unpowered_structures) +"dO" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/secure, +/obj/item/stack/ore/plasma{ + amount = 2 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "blackfull" + }, +/area/ruin/space/unpowered/unpowered_structures) +"eh" = ( +/obj/effect/landmark/burnturf, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"ew" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 2 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"eJ" = ( +/obj/machinery/light_construct/directional/west, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"fL" = ( +/turf/simulated/floor/plasteel/airless{ + icon_state = "stairs"; + dir = 8 + }, +/area/ruin/space/unpowered/unpowered_structures) +"fV" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/crate/engineering, +/obj/item/screwdriver, +/obj/item/wrench, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"gK" = ( +/obj/effect/landmark/damageturf, +/obj/structure/closet/crate/secure/weapon, +/obj/item/clothing/accessory/storage, +/obj/item/clothing/accessory/holster, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"hg" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"hV" = ( +/obj/machinery/door/poddoor, +/obj/machinery/door_control/shutter/west, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"ia" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"ie" = ( +/obj/item/stack/sheet/mineral/titanium, +/turf/template_noop, +/area/template_noop) +"it" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/unpowered/unpowered_structures) +"iD" = ( +/obj/structure/grille/broken, +/obj/item/shard{ + icon_state = "large"; + pixel_y = 9 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_y = -10; + pixel_x = 16 + }, +/obj/effect/landmark/burnturf, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"iU" = ( +/obj/item/chair{ + dir = 4 + }, +/mob/living/simple_animal/hostile/syndicate/melee/autogib/depot/space{ + name = "Syndicate Commando" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"jP" = ( +/obj/item/shard{ + icon_state = "small" + }, +/turf/template_noop, +/area/template_noop) +"jU" = ( +/obj/item/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"kd" = ( +/turf/simulated/floor/plasteel/airless{ + icon_state = "stairs"; + dir = 8 + }, +/area/ruin/space/powered) +"kt" = ( +/obj/structure/shuttle/engine/router, +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"lG" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/ruin/space/unpowered/unpowered_structures) +"lY" = ( +/obj/item/stack/rods, +/turf/template_noop, +/area/template_noop) +"mq" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"mu" = ( +/obj/structure/lattice, +/obj/item/rack_parts, +/turf/template_noop, +/area/template_noop) +"mU" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"mZ" = ( +/obj/item/pickaxe, +/turf/simulated/floor/plating/asteroid/airless, +/area/ruin/space/unpowered/unpowered_structures) +"nd" = ( +/obj/item/radio/intercom{ + dir = 4; + pixel_x = -27; + name = "intercom" + }, +/obj/effect/decal/cleanable/blood, +/obj/item/organ/internal/beard, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"ne" = ( +/turf/simulated/wall/mineral/titanium, +/area/ruin/space/unpowered/unpowered_structures) +"nI" = ( +/obj/structure/closet/crate, +/obj/item/storage/bag/ore, +/obj/item/storage/backpack/satchel/explorer, +/obj/item/gun/energy/plasmacutter, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"nK" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 4; + autolink_id = "air_in"; + on = 1 + }, +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/template_noop) +"nP" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 2 + }, +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"nV" = ( +/obj/item/flashlight, +/turf/template_noop, +/area/template_noop) +"nW" = ( +/turf/simulated/wall/mineral/plastitanium/nodiagonal, +/area/ruin/space/unpowered/unpowered_structures) +"ok" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/template_noop, +/area/template_noop) +"oq" = ( +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"oE" = ( +/obj/item/stack/sheet/mineral/plastitanium, +/turf/template_noop, +/area/template_noop) +"pv" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/ore_box, +/turf/simulated/floor/plasteel/airless{ + icon_state = "blackfull" + }, +/area/ruin/space/unpowered/unpowered_structures) +"qa" = ( +/obj/structure/table, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "darkbluealtstrip"; + dir = 6 + }, +/area/ruin/space/unpowered/unpowered_structures) +"rp" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"rI" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel/airless{ + icon_state = "blackfull" + }, +/area/ruin/space/unpowered/unpowered_structures) +"sn" = ( +/obj/structure/disposalpipe/segment{ + pixel_x = -1; + name = "Cannon Bore" + }, +/turf/simulated/wall/mineral/plastitanium/interior, +/area/ruin/space/unpowered/unpowered_structures) +"st" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"tv" = ( +/obj/structure/table_frame, +/obj/item/lighter{ + pixel_x = 8 + }, +/obj/effect/landmark/burnturf, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"tU" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/secure/weapon{ + opened = 1 + }, +/obj/item/gun/energy/disabler, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"tW" = ( +/obj/effect/landmark/damageturf, +/obj/structure/closet/crate/secure/weapon{ + req_access_txt = "3" + }, +/obj/item/gun/energy/laser/retro/old, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"tZ" = ( +/obj/structure/lattice, +/obj/structure/shuttle/engine/router, +/turf/template_noop, +/area/template_noop) +"uf" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"uW" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/deck/cards/tiny{ + pixel_x = -10 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/ruin/space/unpowered/unpowered_structures) +"vo" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/structure/disposalpipe/segment/corner{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/unpowered/unpowered_structures) +"vy" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"vP" = ( +/obj/structure/table, +/obj/machinery/door_control/shutter{ + pixel_x = -6 + }, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "darkbluealtstrip"; + dir = 5 + }, +/area/ruin/space/unpowered/unpowered_structures) +"vU" = ( +/obj/effect/turf_decal/delivery, +/mob/living/simple_animal/hostile/syndicate/melee/autogib/depot/space{ + name = "Syndicate Commando" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"vV" = ( +/obj/machinery/computer{ + dir = 2; + icon_keyboard = "syndie_key"; + icon_screen = "syndinavigation" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"wc" = ( +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/template_noop, +/area/template_noop) +"wf" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"wm" = ( +/obj/machinery/door/airlock/command, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"wr" = ( +/turf/template_noop, +/area/template_noop) +"wu" = ( +/obj/item/stack/ore/silver{ + amount = 25 + }, +/obj/structure/closet/crate, +/obj/item/stack/ore/gold{ + amount = 25 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"wB" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"wS" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"xn" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"yr" = ( +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"yN" = ( +/obj/machinery/constructable_frame, +/obj/item/circuitboard/pacman, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"yO" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"yS" = ( +/obj/machinery/door/airlock/command, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"yT" = ( +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 8 + }, +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 2 + }, +/obj/structure/closet/crate, +/obj/item/grenade/frag, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/unpowered/unpowered_structures) +"zo" = ( +/turf/simulated/mineral, +/area/ruin/space/unpowered/unpowered_structures) +"zv" = ( +/obj/machinery/door/poddoor, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"zU" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/unpowered/unpowered_structures) +"Ad" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/structure/disposalpipe/segment/corner{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/unpowered/unpowered_structures) +"Ay" = ( +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"Bv" = ( +/obj/item/storage/toolbox/mechanical, +/turf/template_noop, +/area/template_noop) +"BO" = ( +/obj/structure/disposalpipe/segment{ + pixel_x = -1; + name = "Cannon Bore" + }, +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/template_noop) +"BU" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Cd" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/dock_marker{ + name = "transport way beacon" + }, +/turf/template_noop, +/area/template_noop) +"Ci" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + autolink_id = "air_in"; + on = 1 + }, +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/template_noop) +"CB" = ( +/obj/structure/door_assembly/door_assembly_ext, +/turf/template_noop, +/area/template_noop) +"Da" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/turf/simulated/floor, +/area/ruin/space/powered) +"De" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Dj" = ( +/obj/structure/closet/syndicate, +/obj/item/storage/box/donkpockets, +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/unpowered/unpowered_structures) +"Dq" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Dt" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_x = -2 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"DT" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8 + }, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plasteel/airless{ + icon_state = "darkbluecornersalt"; + dir = 4 + }, +/area/ruin/space/unpowered/unpowered_structures) +"EB" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "darkbluealtstrip"; + dir = 4 + }, +/area/ruin/space/unpowered/unpowered_structures) +"ET" = ( +/obj/item/shovel, +/turf/simulated/floor/plating/asteroid/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Fw" = ( +/obj/machinery/status_display/directional/east, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/plasteel/airless{ + icon_state = "blackfull" + }, +/area/ruin/space/powered) +"FF" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/cardboard, +/obj/item/reagent_containers/food/snacks/chinese/chowmein, +/obj/item/reagent_containers/food/snacks/chinese/chowmein, +/obj/item/reagent_containers/food/snacks/chinese/rice, +/obj/item/stack/spacecash/c20, +/obj/item/stack/spacecash/c10, +/turf/simulated/floor/plasteel/airless{ + icon_state = "blackfull" + }, +/area/ruin/space/unpowered/unpowered_structures) +"FZ" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/landmark/burnturf, +/obj/item/organ/external/arm, +/obj/item/organ/external/hand, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"GP" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/gas, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "darkbluealtstrip"; + dir = 6 + }, +/area/ruin/space/unpowered/unpowered_structures) +"GT" = ( +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"GW" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/organ/internal/eyes, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel/airless{ + icon_state = "darkbluealtstrip"; + dir = 4 + }, +/area/ruin/space/unpowered/unpowered_structures) +"GX" = ( +/turf/simulated/wall/mineral/plastitanium/interior, +/area/ruin/space/unpowered/unpowered_structures) +"Hx" = ( +/obj/structure/computerframe{ + dir = 4 + }, +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"HA" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/cardboard, +/obj/item/reagent_containers/food/snacks/chinese/rice, +/obj/item/reagent_containers/food/snacks/chinese/chowmein, +/obj/item/reagent_containers/food/pill/methamphetamine, +/obj/item/reagent_containers/food/pill/methamphetamine, +/obj/item/reagent_containers/food/pill/methamphetamine, +/turf/simulated/floor/plasteel/airless{ + icon_state = "blackfull" + }, +/area/ruin/space/unpowered/unpowered_structures) +"HI" = ( +/turf/simulated/mineral/random/low_chance, +/area/ruin/space/unpowered/unpowered_structures) +"HV" = ( +/obj/item/stack/sheet/mineral/plastitanium, +/obj/structure/shuttle/engine/router, +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"IL" = ( +/obj/item/airlock_electronics/destroyed, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"IM" = ( +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 4 + }, +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 2 + }, +/obj/structure/closet/crate, +/obj/item/grenade/frag, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/unpowered/unpowered_structures) +"IN" = ( +/mob/living/simple_animal/hostile/syndicate/melee/autogib/depot/space{ + name = "Syndicate Commando" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/unpowered/unpowered_structures) +"IZ" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel/airless{ + icon_state = "darkbluecornersalt" + }, +/area/ruin/space/unpowered/unpowered_structures) +"Jf" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"Jj" = ( +/turf/simulated/floor/plating/asteroid/airless, +/area/ruin/space/unpowered/unpowered_structures) +"JS" = ( +/obj/item/shard, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"KG" = ( +/obj/effect/spawner/window/plastitanium, +/obj/machinery/door/poddoor{ + id_tag = "convoy_window" + }, +/turf/simulated/floor, +/area/ruin/space/unpowered/unpowered_structures) +"KK" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/computerframe{ + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"KX" = ( +/turf/simulated/floor/plating/airless{ + icon_state = "asteroidfloor" + }, +/area/ruin/space/unpowered/unpowered_structures) +"KY" = ( +/obj/machinery/light_construct/directional/west, +/obj/structure/closet, +/obj/structure/sign/nosmoking_1{ + pixel_x = -32 + }, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/turf/simulated/floor/plasteel/airless{ + icon_state = "blackfull" + }, +/area/ruin/space/unpowered/unpowered_structures) +"KZ" = ( +/obj/structure/shuttle/engine/router, +/turf/simulated/floor/plating/airless{ + icon_state = "asteroidfloor" + }, +/area/ruin/space/unpowered/unpowered_structures) +"Lo" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure{ + desc = "A power generator that runs on solid plasma sheets. Rated for 80 kW max safe output."; + icon = 'icons/obj/power.dmi'; + icon_state = "portgen0_0"; + name = "\improper P.A.C.M.A.N.-type Portable Generator" + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"LF" = ( +/obj/effect/mob_spawn/human/corpse/assistant, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"Md" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"MV" = ( +/obj/structure/table, +/obj/machinery/door_control/shutter{ + pixel_x = -6 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_x = 8 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "darkbluealtstrip"; + dir = 5 + }, +/area/ruin/space/unpowered/unpowered_structures) +"Nj" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/crate/engineering/electrical, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/t_scanner, +/turf/simulated/floor/plasteel/airless{ + icon_state = "blackfull" + }, +/area/ruin/space/unpowered/unpowered_structures) +"NK" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"OT" = ( +/obj/structure/table, +/obj/machinery/door_control/shutter{ + pixel_x = -6; + id = "convoy_window" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"Py" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"PE" = ( +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"PZ" = ( +/obj/structure/lattice, +/obj/structure/closet/crate, +/turf/template_noop, +/area/template_noop) +"Qq" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 1 + }, +/turf/template_noop, +/area/template_noop) +"QK" = ( +/obj/structure/grille, +/turf/simulated/floor/plating/airless{ + icon_state = "asteroidfloor" + }, +/area/ruin/space/unpowered/unpowered_structures) +"QN" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/welding, +/obj/item/weldingtool, +/obj/item/screwdriver, +/turf/simulated/floor/plating/asteroid/airless, +/area/ruin/space/unpowered/unpowered_structures) +"QV" = ( +/obj/structure/grille/broken, +/obj/item/shard{ + icon_state = "medium"; + pixel_y = 9 + }, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Ra" = ( +/obj/effect/landmark/burnturf, +/obj/structure/shuttle/engine/router, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Ru" = ( +/obj/machinery/mass_driver_frame{ + dir = 1; + name = "Kinetic Cannon"; + anchored = 1 + }, +/obj/structure/disposalpipe/segment{ + pixel_x = -1; + name = "Cannon Bore" + }, +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 1 + }, +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 2 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"RP" = ( +/turf/simulated/wall/mineral/titanium/nodiagonal, +/area/ruin/space/unpowered/unpowered_structures) +"RV" = ( +/mob/living/simple_animal/hostile/syndicate/melee/autogib/depot/space{ + name = "Syndicate Commando" + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/ruin/space/unpowered/unpowered_structures) +"RY" = ( +/obj/machinery/mass_driver_frame{ + dir = 1; + name = "Kinetic Cannon"; + anchored = 1 + }, +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + pixel_x = -1; + name = "Cannon Bore" + }, +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 2 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Sn" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/obj/effect/mob_spawn/human/corpse/damaged, +/mob/living/simple_animal/hostile/syndicate/ranged/space/autogib{ + wander = 0 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"Sw" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/mob_spawn/human/corpse/damaged, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"SA" = ( +/obj/effect/turf_decal/delivery/white, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"SR" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/closet/crate, +/obj/item/stack/ore/titanium{ + amount = 10 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"Tg" = ( +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/organ/internal/ears, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"TA" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"TF" = ( +/obj/structure/closet/syndicate, +/obj/item/ammo_box/magazine/m10mm, +/obj/item/gun/projectile/automatic/pistol, +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/unpowered/unpowered_structures) +"TT" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel/airless{ + icon_state = "blackfull" + }, +/area/ruin/space/powered) +"TU" = ( +/obj/structure/lattice, +/obj/machinery/light_construct/directional/west, +/turf/template_noop, +/area/template_noop) +"Uo" = ( +/obj/item/stack/sheet/plasteel, +/turf/template_noop, +/area/template_noop) +"Up" = ( +/obj/machinery/mass_driver_frame{ + pixel_y = -21; + anchored = 1 + }, +/obj/machinery/conveyor_switch{ + pixel_x = 10; + pixel_y = 20 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/floor/plating/airless{ + icon_state = "asteroidfloor" + }, +/area/ruin/space/unpowered/unpowered_structures) +"UE" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/cardboard, +/obj/item/reagent_containers/food/snacks/chinese/rice, +/obj/item/reagent_containers/food/snacks/chinese/chowmein, +/obj/item/reagent_containers/food/snacks/chinese/chowmein, +/obj/item/reagent_containers/food/snacks/chinese/rice, +/obj/item/stack/spacecash/c100, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"Vm" = ( +/obj/item/rack_parts, +/obj/effect/landmark/burnturf, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"VO" = ( +/obj/structure/table, +/obj/item/grenade/plastic/c4, +/obj/item/clothing/glasses/sunglasses, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/unpowered/unpowered_structures) +"VX" = ( +/obj/item/chair, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"Wq" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/portable/canister, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Wv" = ( +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"Xg" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/organ/external/chest, +/turf/simulated/floor/plasteel/airless{ + icon_state = "darkbluecornersalt"; + dir = 4 + }, +/area/ruin/space/unpowered/unpowered_structures) +"YG" = ( +/obj/machinery/light_construct/directional/west, +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"YP" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"Ze" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/delivery/white, +/turf/simulated/floor/plasteel/airless{ + icon_state = "blackfull" + }, +/area/ruin/space/unpowered/unpowered_structures) +"Zv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + pixel_x = -1; + name = "Cannon Bore" + }, +/turf/template_noop, +/area/template_noop) +"ZW" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_y = -10; + pixel_x = 16 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) + +(1,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(2,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(3,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(4,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +bq +bq +bq +wr +wr +wr +wr +wr +wr +wr +wr +bq +bq +bq +wr +wr +wr +wr +wr +zo +zo +wr +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +"} +(5,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +bq +Cd +bq +wr +wr +wr +wr +wr +wr +wr +wr +bq +Cd +bq +wr +wr +wr +wr +zo +zo +zo +zo +zo +zo +zo +zo +zo +zo +wr +wr +wr +wr +"} +(6,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +bq +bq +bq +wr +wr +wr +wr +wr +wr +wr +wr +bq +bq +bq +wr +wr +zo +zo +zo +zo +zo +zo +zo +zo +zo +zo +zo +zo +zo +wr +wr +wr +"} +(7,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +HI +zo +zo +HI +HI +HI +HI +zo +zo +zo +zo +wr +wr +wr +"} +(8,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +HI +HI +HI +HI +HI +HI +HI +HI +zo +zo +zo +zo +wr +wr +wr +"} +(9,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +HI +HI +HI +HI +HI +HI +HI +HI +zo +zo +zo +wr +wr +wr +wr +"} +(10,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +HI +HI +HI +HI +HI +HI +HI +HI +zo +zo +zo +wr +wr +wr +wr +"} +(11,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +HI +HI +HI +HI +zo +zo +zo +zo +zo +zo +zo +wr +wr +wr +wr +"} +(12,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +HI +HI +HI +zo +zo +zo +zo +zo +Jj +zo +wr +wr +wr +wr +wr +"} +(13,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +HI +HI +zo +zo +zo +Jj +Jj +Jj +Jj +wr +wr +wr +wr +wr +wr +"} +(14,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +Uo +zo +zo +zo +HI +zo +zo +Jj +Jj +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(15,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +zo +Jj +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(16,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +Jj +Jj +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(17,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(18,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(19,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +HI +HI +zo +zo +zo +zo +lY +wr +wr +wr +wr +wr +wr +wr +wr +wr +Qq +bq +wr +wr +wr +zo +zo +wr +wr +wr +wr +nK +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(20,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +HI +HI +HI +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +lY +wr +wr +ok +wr +bq +wr +wr +wr +wr +wr +wr +GX +GX +GX +GX +Da +GX +GX +wr +wr +wr +wr +"} +(21,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +HI +HI +HI +HI +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +lY +wr +wr +wr +wr +wr +wr +wr +wr +BO +Ru +sn +vo +hg +bA +nW +GX +GX +wr +wr +wr +"} +(22,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +HI +HI +HI +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +GX +nW +PE +IM +bA +TF +GX +ew +wr +wr +wr +"} +(23,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +HI +HI +HI +HI +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +KG +Dt +bA +bA +zU +yO +ew +wr +wr +wr +"} +(24,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +HI +HI +zo +zo +zo +zo +wr +wr +wr +wr +ne +De +De +De +bV +jP +wr +Hx +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +KG +vV +zU +IN +zU +yO +ew +wr +wr +wr +"} +(25,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +RP +RP +BU +ZW +JS +bq +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +KG +OT +bA +bA +zU +yO +ew +wr +wr +wr +"} +(26,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +RP +KY +wf +yN +gK +Md +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +GX +nW +Ay +yT +bA +Dj +GX +ew +wr +wr +wr +"} +(27,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +hV +tW +st +Wv +NK +Dq +lY +bq +wr +wr +wr +wr +wr +wr +wr +wr +Zv +RY +sn +Ad +xn +bA +nW +GX +GX +wr +wr +wr +"} +(28,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +wr +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +zv +mU +dx +wB +aX +Dq +Dq +PZ +wr +wr +wr +wr +wr +wr +wr +wr +wr +GX +GX +GX +GX +Da +GX +GX +wr +wr +wr +wr +"} +(29,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zv +YP +wB +rI +tU +NK +NK +Py +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +Ci +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(30,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zv +Sw +cj +aX +Wv +Wv +cG +Py +wr +wr +wr +wr +wr +ie +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(31,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +RP +TT +kd +pv +UE +HA +FF +RP +wr +wr +wr +wr +lY +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(32,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +RP +RP +yS +RP +RP +RP +RP +Py +wc +wr +wr +ie +cJ +wr +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(33,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +HI +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wS +eJ +iU +nd +vy +FZ +TU +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(34,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +RP +ci +Xg +Tg +VX +GT +eh +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(35,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +ia +ia +vP +dI +GW +tv +bq +wr +wr +wr +wr +wr +zo +zo +HI +HI +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(36,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +ia +ia +ia +QV +iD +mu +wr +wr +wr +wr +wr +wr +zo +zo +HI +HI +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +"} +(37,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +HI +HI +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +"} +(38,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +"} +(39,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +wr +zo +zo +zo +zo +wr +wr +wr +wr +zo +zo +wr +wr +wr +"} +(40,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +wr +wr +wr +"} +(41,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +wr +wr +wr +"} +(42,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +zo +wr +zo +zo +wr +wr +wr +"} +(43,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(44,1,1) = {" +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(45,1,1) = {" +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(46,1,1) = {" +wr +wr +wr +zo +zo +zo +HI +HI +HI +HI +zo +zo +wr +wr +wr +wr +bq +bq +bq +wr +wr +wr +wr +wr +wr +wr +wr +bq +bq +bq +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(47,1,1) = {" +wr +wr +wr +zo +zo +zo +HI +HI +HI +HI +zo +zo +wr +wr +wr +wr +bq +Cd +bq +wr +wr +wr +wr +wr +wr +wr +wr +bq +Cd +bq +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(48,1,1) = {" +wr +wr +wr +zo +zo +zo +HI +HI +HI +HI +zo +zo +wr +wr +wr +wr +bq +bq +bq +wr +wr +wr +wr +wr +wr +wr +wr +bq +bq +bq +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(49,1,1) = {" +wr +wr +wr +zo +zo +zo +HI +HI +HI +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(50,1,1) = {" +wr +wr +wr +wr +zo +zo +zo +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(51,1,1) = {" +wr +wr +wr +wr +wr +wr +zo +zo +zo +Jj +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(52,1,1) = {" +wr +wr +wr +wr +wr +zo +zo +zo +zo +Jj +Jj +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(53,1,1) = {" +wr +wr +wr +wr +zo +zo +zo +zo +Jj +Jj +Jj +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(54,1,1) = {" +wr +wr +wr +wr +zo +zo +Jj +Jj +Jj +Jj +Jj +Jj +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(55,1,1) = {" +wr +wr +wr +wr +wr +wr +Jj +Jj +zo +zo +Jj +Jj +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(56,1,1) = {" +wr +wr +wr +wr +wr +wr +Jj +zo +zo +Jj +Jj +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(57,1,1) = {" +wr +wr +wr +wr +wr +wr +zo +zo +zo +Jj +zo +zo +zo +zo +zo +oE +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(58,1,1) = {" +wr +wr +wr +wr +zo +zo +zo +zo +zo +Jj +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(59,1,1) = {" +wr +wr +wr +wr +zo +zo +zo +zo +zo +Jj +zo +zo +zo +zo +zo +wr +wr +wr +ne +De +De +De +De +De +De +ne +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(60,1,1) = {" +wr +wr +wr +zo +zo +zo +zo +zo +zo +mZ +zo +QN +uW +lG +zo +wr +wr +wr +RP +RP +BU +BU +BU +BU +RP +RP +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(61,1,1) = {" +wr +wr +wr +zo +zo +Jj +RV +Jj +Jj +Jj +Jj +Jj +aZ +Jj +zo +zo +wr +wr +RP +dq +wf +Lo +KK +Wq +Ze +RP +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(62,1,1) = {" +wr +wr +wr +wr +GX +GX +Da +GX +GX +GX +Jj +Jj +KX +QK +QK +zo +wr +kt +hV +Ra +yr +LF +SR +cn +fV +RP +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(63,1,1) = {" +wr +wr +wr +oq +oq +bd +bA +bA +bA +nP +Jj +zo +KX +Up +KZ +HV +kt +kt +tZ +bf +TA +wB +rI +rI +SA +RP +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(64,1,1) = {" +wr +wr +wr +oq +vV +zU +bA +bA +bA +nP +Jj +Jj +KX +QK +QK +wr +wr +kt +zv +bj +wB +vU +wB +dO +SA +RP +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(65,1,1) = {" +wr +wr +wr +oq +oq +VO +rp +it +it +nP +Jj +zo +Jj +zo +wr +wr +wr +wr +zv +nI +st +Wv +Wv +wu +Nj +RP +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(66,1,1) = {" +wr +wr +wr +wr +GX +GX +GX +GX +GX +GX +Jj +Jj +Jj +zo +wr +wr +wr +Bv +RP +Fw +fL +pv +pv +pv +pv +RP +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(67,1,1) = {" +wr +wr +wr +wr +zo +zo +zo +ET +Jj +Jj +Jj +zo +Jj +Jj +oE +wr +wr +wr +RP +RP +wm +RP +RP +RP +RP +RP +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(68,1,1) = {" +wr +wr +wr +wr +zo +zo +zo +zo +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +lY +YG +IL +bb +Sn +mq +Jf +wS +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(69,1,1) = {" +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +zo +zo +zo +lY +wr +wr +wr +CB +RP +Vm +DT +jU +uf +IZ +GP +RP +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(70,1,1) = {" +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +ia +ia +MV +EB +EB +qa +ia +ia +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(71,1,1) = {" +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +zo +nV +wr +wr +wr +wr +wr +wr +ia +ia +ia +ia +ia +ia +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(72,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(73,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +zo +zo +zo +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(74,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(75,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +bq +bq +bq +wr +wr +wr +wr +wr +wr +wr +wr +bq +bq +bq +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(76,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +bq +Cd +bq +wr +wr +wr +wr +wr +wr +wr +wr +bq +Cd +bq +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(77,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +bq +bq +bq +wr +wr +wr +wr +wr +wr +wr +wr +bq +bq +bq +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(78,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(79,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} +(80,1,1) = {" +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +wr +"} diff --git a/_maps/map_files220/RandomRuins/SpaceRuins/destroyed_infiltrator.dmm b/_maps/map_files220/RandomRuins/SpaceRuins/destroyed_infiltrator.dmm new file mode 100644 index 000000000000..5e166d9de526 --- /dev/null +++ b/_maps/map_files220/RandomRuins/SpaceRuins/destroyed_infiltrator.dmm @@ -0,0 +1,1886 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ao" = ( +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/template_noop, +/area/template_noop) +"aw" = ( +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"az" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"aM" = ( +/obj/structure/door_assembly/door_assembly_ext, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"be" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/ruin/space/unpowered/unpowered_structures) +"bi" = ( +/obj/item/storage/box/syndie_kit/bonerepair, +/turf/template_noop, +/area/template_noop) +"bq" = ( +/obj/effect/landmark/burnturf, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"bS" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/template_noop, +/area/template_noop) +"dE" = ( +/obj/structure/grille/broken, +/obj/effect/landmark/damageturf, +/obj/item/shard{ + icon_state = "small"; + pixel_x = 10; + pixel_y = 9 + }, +/obj/item/stack/rods, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"dO" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"ew" = ( +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"gV" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"gZ" = ( +/obj/item/stack/tile{ + pixel_y = 14 + }, +/turf/template_noop, +/area/template_noop) +"he" = ( +/obj/item/stack/tile, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"hp" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"hs" = ( +/obj/item/tank/internals/anesthetic, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"hy" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"hK" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/obj/item/shard{ + icon_state = "large"; + pixel_y = 9; + pixel_x = 19 + }, +/turf/template_noop, +/area/template_noop) +"it" = ( +/obj/structure/chair/comfy/shuttle, +/obj/item/crowbar/red, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"ju" = ( +/obj/item/multitool, +/turf/template_noop, +/area/template_noop) +"jF" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"jM" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"kv" = ( +/obj/item/rack_parts, +/turf/template_noop, +/area/template_noop) +"lt" = ( +/obj/effect/landmark/damageturf, +/obj/effect/decal/remains/human, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"lE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/computerframe{ + dir = 4 + }, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"lK" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"lW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/template_noop, +/area/template_noop) +"mt" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_y = 9; + pixel_x = -27 + }, +/turf/template_noop, +/area/template_noop) +"mS" = ( +/obj/structure/table_frame, +/obj/item/screwdriver{ + pixel_y = 9 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"nm" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"nr" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"nA" = ( +/obj/structure/table, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"nY" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_y = 9 + }, +/turf/template_noop, +/area/template_noop) +"ou" = ( +/obj/item/stock_parts/cell/high{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/template_noop, +/area/template_noop) +"oZ" = ( +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"pf" = ( +/obj/machinery/iv_drip, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"pE" = ( +/obj/item/shard, +/turf/template_noop, +/area/template_noop) +"pW" = ( +/obj/machinery/constructable_frame{ + icon_state = "box_2" + }, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"rf" = ( +/obj/effect/landmark/burnturf, +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"rM" = ( +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"rR" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + autolink_id = "aisat_vent" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"rT" = ( +/obj/item/stack/tile, +/turf/template_noop, +/area/template_noop) +"sP" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"sW" = ( +/obj/item/stack/sheet/mineral/plastitanium, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"tw" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"tA" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"tB" = ( +/obj/structure/closet/syndicate, +/turf/template_noop, +/area/template_noop) +"tE" = ( +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"tJ" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + anchored = 0 + }, +/turf/template_noop, +/area/template_noop) +"tM" = ( +/obj/item/trash/syndi_cakes, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"tO" = ( +/obj/structure/table_frame, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"tP" = ( +/obj/structure/table_frame, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"uS" = ( +/obj/item/stack/rods, +/turf/template_noop, +/area/template_noop) +"uV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/constructable_frame, +/obj/machinery/teleport/hub/upgraded, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"vt" = ( +/obj/effect/landmark/damageturf, +/obj/item/circular_saw, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"wx" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + autolink_id = "aisat_vent" + }, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"wK" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"xY" = ( +/obj/item/circuitboard/bodyscanner, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"yn" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_y = -10; + pixel_x = 16 + }, +/turf/template_noop, +/area/template_noop) +"yJ" = ( +/obj/effect/spawner/window/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"yT" = ( +/obj/machinery/light_construct/directional/south, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"zg" = ( +/obj/item/storage/box/syndidonkpockets, +/turf/template_noop, +/area/template_noop) +"zG" = ( +/obj/structure/table, +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"zT" = ( +/obj/effect/landmark/burnturf, +/obj/effect/landmark/burnturf, +/obj/item/shard, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Ab" = ( +/obj/item/stock_parts/capacitor, +/turf/template_noop, +/area/template_noop) +"AF" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/obj/item/shard, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"AT" = ( +/obj/item/stack/sheet/mineral/plastitanium, +/turf/template_noop, +/area/template_noop) +"Bz" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "burst_l" + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"CH" = ( +/turf/simulated/wall/mineral/plastitanium/nodiagonal, +/area/ruin/space/unpowered/unpowered_structures) +"CI" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"CK" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/landmark/damageturf, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"CR" = ( +/obj/effect/landmark/burnturf, +/obj/item/stack/sheet/mineral/plastitanium, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Dg" = ( +/obj/item/clothing/gloves/color/latex/nitrile, +/turf/template_noop, +/area/template_noop) +"Dj" = ( +/obj/item/shard{ + icon_state = "small"; + pixel_x = 10; + pixel_y = 9 + }, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"DD" = ( +/obj/item/wrench, +/turf/template_noop, +/area/template_noop) +"EM" = ( +/obj/structure/table_frame, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"EW" = ( +/obj/item/stack/rods, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"GS" = ( +/obj/effect/landmark/burnturf, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"HU" = ( +/obj/structure/closet/crate/internals, +/obj/item/tank/internals/oxygen/red, +/obj/item/clothing/mask/gas, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Io" = ( +/obj/machinery/light_construct/directional/south, +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Iq" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6; + level = 1 + }, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/template_noop, +/area/template_noop) +"IA" = ( +/obj/machinery/suit_storage_unit/syndicate/secure, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Jr" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "medium"; + pixel_y = 9 + }, +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Jx" = ( +/obj/item/weldingtool/largetank, +/obj/structure/lattice, +/obj/item/assembly/voice{ + pixel_y = 3 + }, +/turf/template_noop, +/area/template_noop) +"Kg" = ( +/obj/machinery/light_construct/directional/west, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"KK" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_y = 9; + pixel_x = 19 + }, +/turf/template_noop, +/area/template_noop) +"La" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 5 + }, +/turf/simulated/wall/mineral/plastitanium, +/area/ruin/space/unpowered/unpowered_structures) +"Ly" = ( +/turf/template_noop, +/area/template_noop) +"LO" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_y = 9 + }, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"LR" = ( +/obj/item/chair/stool, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Mt" = ( +/obj/item/stack/tile{ + pixel_x = 22 + }, +/turf/template_noop, +/area/template_noop) +"ME" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"MO" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + autolink_id = "southatmos_vent" + }, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Nk" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/shard{ + icon_state = "large"; + pixel_y = 9 + }, +/turf/template_noop, +/area/template_noop) +"NM" = ( +/obj/machinery/door/window/reinforced/normal, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"NV" = ( +/obj/machinery/sleeper/syndie{ + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Og" = ( +/obj/effect/landmark/burnturf, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Ok" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"OE" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"OI" = ( +/obj/structure/table, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"OS" = ( +/obj/structure/closet/syndicate, +/obj/item/toy/plushie/nukeplushie, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"OV" = ( +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/template_noop, +/area/template_noop) +"Pg" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Pt" = ( +/obj/effect/landmark/burnturf, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Qh" = ( +/obj/structure/girder/reinforced, +/obj/item/stack/sheet/mineral/plastitanium, +/turf/template_noop, +/area/template_noop) +"QW" = ( +/obj/structure/mirror{ + dir = 4; + pixel_y = -32; + icon_state = "mirror_broke" + }, +/obj/structure/closet/crate/medical{ + icon_state = "medicalcrate_open" + }, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Sl" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Ss" = ( +/obj/item/stack/tile{ + pixel_y = 14; + pixel_x = 18 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"SJ" = ( +/obj/structure/table_frame, +/obj/item/wrench, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"SK" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"SQ" = ( +/obj/item/stack/rods, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Uf" = ( +/obj/effect/landmark/burnturf, +/obj/item/stack/tile{ + pixel_y = 14; + pixel_x = 18 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Ui" = ( +/obj/structure/table_frame, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Ul" = ( +/obj/machinery/constructable_frame, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Us" = ( +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"UE" = ( +/obj/machinery/light_construct/directional/east, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"UJ" = ( +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"UW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"UY" = ( +/obj/machinery/door/airlock/external{ + id_tag = "syndishuttle_door_ext"; + name = "Ship External Access"; + req_access_txt = "150" + }, +/obj/machinery/door_control/no_emag{ + pixel_y = 28 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Vh" = ( +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"VA" = ( +/obj/item/storage/toolbox/syndicate, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"VC" = ( +/turf/simulated/wall/mineral/plastitanium, +/area/ruin/space/unpowered/unpowered_structures) +"WR" = ( +/obj/structure/girder/reinforced, +/obj/item/stack/sheet/mineral/plastitanium, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Xc" = ( +/obj/item/chair/stool, +/turf/template_noop, +/area/template_noop) +"Xp" = ( +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"XO" = ( +/obj/item/stack/rods, +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Yx" = ( +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/unpowered/unpowered_structures) +"YS" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/template_noop, +/area/template_noop) +"YV" = ( +/obj/structure/lattice, +/obj/item/stack/tile{ + pixel_y = 14 + }, +/turf/template_noop, +/area/template_noop) +"ZY" = ( +/obj/structure/grille/broken, +/obj/structure/computerframe, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) + +(1,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(2,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(3,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Bz +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(4,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +AT +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +hy +OE +Ly +Ly +Ly +Ly +Ly +Ly +"} +(5,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +nY +KK +Ly +Ly +OE +Ly +Ly +Ly +Ly +Nk +Ly +ME +Ly +Ly +Ly +Ly +Ly +"} +(6,1,1) = {" +Ly +Ly +Ly +Ly +Ly +jM +Bz +Bz +Bz +VC +Ly +uS +Ly +Ly +Ly +Ly +Ly +VC +Sl +Ly +SK +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(7,1,1) = {" +Ly +Ly +Ly +AT +Ly +VC +hy +az +hy +VC +Ly +VC +Ly +GS +Bz +Ly +lW +jM +oZ +sP +Ab +AT +Ly +Ly +Ly +Ly +Ly +Ly +"} +(8,1,1) = {" +Ly +Ly +Ly +Ly +Dg +gZ +vt +Ul +hs +VC +Ly +VC +SK +sP +az +Ly +Ly +VC +lE +uV +gZ +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(9,1,1) = {" +Ly +Ly +Ly +Ly +Ly +OE +OE +xY +QW +CH +VC +VC +nr +Dj +YS +rT +VC +CH +sP +ao +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(10,1,1) = {" +Ly +Ly +Ly +NV +Ly +VC +EM +SK +Ss +nr +OI +VC +Yx +Yx +OE +VC +Yx +Ly +Ly +Ly +Ly +uS +Ly +Ly +Ly +Ly +Ly +Ly +"} +(11,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +nm +SK +Yx +EW +pf +LO +Yx +oZ +OE +sP +sP +OE +Ly +mt +Ly +Ly +uS +Ly +Ly +Ly +Ly +Ly +"} +(12,1,1) = {" +Ly +Ly +Ly +Ly +uS +VC +Yx +lt +LR +nr +Us +UE +aw +sP +Ly +sP +Ly +OE +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(13,1,1) = {" +Ly +Ly +Ly +Ly +Ly +VC +pW +EW +Yx +Ui +dO +VC +he +sP +Ly +Ly +Ly +Ly +Ly +Ly +Ly +La +OE +Ly +Ly +Ly +Ly +Ly +"} +(14,1,1) = {" +Ly +Ly +Ly +OE +Ly +VC +VC +sW +oZ +jM +VC +CH +be +jM +Ly +AT +Ly +Ly +Ly +nA +ou +tE +VC +Ly +Ly +HU +Ly +Ly +"} +(15,1,1) = {" +Ly +Ly +Ly +Ly +Ly +VC +IA +Ok +CR +Yx +NM +sP +tE +bi +Ly +Ly +Ly +OE +tE +Xc +Ly +sP +OE +DD +Ly +Ly +Ly +Ly +"} +(16,1,1) = {" +Ly +Ly +Ly +Ly +Ly +WR +oZ +Yx +Xp +tA +gV +zT +Ly +Ly +Ly +Ly +Ly +ew +Ly +Ly +XO +VA +jM +Ly +Ly +Ly +Ly +Ly +"} +(17,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +OE +oZ +jF +OI +VC +OE +Ly +Ly +uS +Ly +Ly +sP +Ly +tE +wK +tP +VC +Ly +Ly +Ly +Ly +Ly +"} +(18,1,1) = {" +Ly +Ly +Ly +Ly +SK +Ly +oZ +nA +nr +tA +sP +Ly +OE +Ly +Ly +zG +Ly +nY +nA +SJ +tM +mS +VC +Ly +Ly +Ly +Ly +Ly +"} +(19,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +oZ +sP +tA +sP +Xc +Ly +Ly +Ly +Ly +Ly +OE +VC +VC +VC +Jx +Ly +jM +Ly +Ly +Ly +Ly +Ly +"} +(20,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +sP +VC +Ly +tB +Ly +Iq +Ly +Ly +OE +CI +bq +wx +rR +jM +ju +Ly +Ly +Ly +Ly +Ly +Ly +"} +(21,1,1) = {" +Ly +Ly +Ly +Ly +Ly +VC +VC +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +sP +UW +SK +aM +yT +VC +Ly +kv +Ly +OV +Ly +Ly +Ly +"} +(22,1,1) = {" +Ly +Ly +Ly +Ly +La +Ly +Ly +Ly +Ly +sP +tA +tw +Ly +Ly +OE +Io +VC +MO +nr +oZ +VC +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(23,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Og +lK +VC +VC +UY +VC +VC +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(24,1,1) = {" +Ly +Ly +Ly +Ly +KK +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Uf +tA +tA +VC +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(25,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +gZ +Ly +Ly +Ly +rf +Yx +SQ +OE +Ly +SK +CK +Ly +Ly +AT +Ly +Ly +Ly +Ly +Ly +"} +(26,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +OE +VC +it +nr +Pt +VC +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(27,1,1) = {" +Ly +Ly +Ly +Ly +AT +Ly +Ly +Ly +Ly +Ly +Ly +VC +VC +OI +Ui +hp +VC +VC +Ly +Ly +Ly +Qh +Ly +Ly +Ly +Ly +Ly +Ly +"} +(28,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +he +VC +VC +oZ +SK +VC +VC +VC +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(29,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +OE +SK +Ly +VC +OI +Kg +Yx +oZ +Yx +Yx +OS +VC +yn +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(30,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +SK +Ly +zg +jM +tO +SK +rM +Pg +Ok +jF +SK +Mt +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(31,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +bS +SK +oZ +Vh +nA +AF +YV +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(32,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +SK +Ui +UJ +uS +ZY +yJ +dE +Jr +UJ +VC +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(33,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +VC +VC +OE +Ly +Ly +Ly +pE +Ly +Ly +tJ +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(34,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +ao +Mt +Ly +Ly +Ly +Ly +uS +Ly +AT +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(35,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +hK +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(36,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +tJ +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(37,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} +(38,1,1) = {" +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +Ly +"} diff --git a/_maps/map_files220/RandomRuins/SpaceRuins/infected_ship.dmm b/_maps/map_files220/RandomRuins/SpaceRuins/infected_ship.dmm new file mode 100644 index 000000000000..a7172ffe03f4 --- /dev/null +++ b/_maps/map_files220/RandomRuins/SpaceRuins/infected_ship.dmm @@ -0,0 +1,2793 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/obj/structure/table, +/obj/item/radio, +/obj/item/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/syndicate{ + pixel_x = -10; + pixel_y = 10 + }, +/turf/simulated/floor/pod, +/area/ruin/space/powered/requires_power_space) +"al" = ( +/obj/machinery/suit_storage_unit/syndicate{ + mask_type = null; + storage_type = null; + suit_type = null; + req_access = null + }, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 5; + pixel_x = -8 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"aF" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 5; + pixel_x = -8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "stage_left" + }, +/area/ruin/space/powered/requires_power_space) +"aH" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"aY" = ( +/obj/machinery/light_construct/directional/south, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"bh" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/dirt/blackpowder, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 5; + pixel_x = -8 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"bk" = ( +/obj/machinery/door/airlock/freezer{ + locked = 1 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"bo" = ( +/obj/machinery/atmospherics/unary/vent_pump, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"bK" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"bW" = ( +/obj/structure/computerframe{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"cB" = ( +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 9 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"cC" = ( +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"cK" = ( +/obj/structure/computerframe{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/obj/item/shard, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"cM" = ( +/obj/machinery/suit_storage_unit/syndicate{ + mask_type = null; + storage_type = null; + suit_type = null; + req_access = null + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"do" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"dq" = ( +/obj/structure/bed/nest, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"dG" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 5; + pixel_x = -8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"dI" = ( +/mob/living/simple_animal/hostile/alien, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"dK" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random/north, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"dU" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered/requires_power_space) +"ep" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"eq" = ( +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 8; + pixel_x = 2 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"ez" = ( +/obj/machinery/light_construct/directional/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/freezer, +/area/ruin/space/powered/requires_power_space) +"eC" = ( +/obj/machinery/atmospherics/portable/canister, +/obj/machinery/light_construct/directional/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"eG" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/organ/internal/body_egg/alien_embryo{ + icon_state = "facehugger_dead" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"eK" = ( +/obj/structure/computerframe, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random/north, +/obj/effect/decal/cleanable/glass, +/obj/item/shard, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"eL" = ( +/obj/structure{ + desc = "For the union!"; + icon = 'icons/obj/tesla_engine/tesla_coil.dmi'; + icon_state = "coil0"; + name = "tesla coil" + }, +/obj/machinery/light_construct/directional/north, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"eR" = ( +/obj/item/trash/spentcasing{ + icon_state = "r-casing" + }, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 5; + pixel_x = -8 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"eT" = ( +/obj/machinery/light_construct/directional/west, +/obj/effect/decal/cleanable/glass, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 10 + }, +/obj/item/stack/sheet/cloth, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"ff" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/blood/gibs/cleangibs, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"fK" = ( +/obj/item/stack/rods, +/turf/template_noop, +/area/template_noop) +"gg" = ( +/obj/item/trash/can, +/obj/structure/sign/poster/contraband/random/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "stage_left" + }, +/area/ruin/space/powered/requires_power_space) +"gD" = ( +/obj/machinery/door/airlock/survival_pod, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"gK" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "stage_left" + }, +/area/ruin/space/powered/requires_power_space) +"hc" = ( +/turf/simulated/wall/mineral/plastitanium/nodiagonal, +/area/ruin/space/powered/requires_power_space) +"hn" = ( +/obj/machinery/light_construct/directional/north, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"hw" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"hF" = ( +/obj/structure/closet/crate/trashcart, +/obj/machinery/light/small/directional/east, +/obj/item/bedsheet/syndie, +/obj/item/trash/syndi_cakes, +/obj/item/trash/syndi_cakes, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"hG" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"hP" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "stage_left" + }, +/area/ruin/space/powered/requires_power_space) +"hS" = ( +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/pod, +/area/ruin/space/powered/requires_power_space) +"ia" = ( +/obj/structure/grille/broken, +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"iv" = ( +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"iB" = ( +/turf/template_noop, +/area/template_noop) +"iH" = ( +/obj/structure/table, +/obj/structure{ + desc = "A microwave, perfect for reheating things with radiation."; + icon = 'icons/obj/kitchen.dmi'; + icon_state = "mw"; + name = "microwave"; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/snacks/syndidonkpocket{ + pixel_x = -7 + }, +/turf/simulated/floor/plasteel{ + icon_state = "stage_left" + }, +/area/ruin/space/powered/requires_power_space) +"iL" = ( +/obj/machinery/light_construct/directional/west, +/obj/structure/closet/crate/secure/weapon{ + req_access_txt = null; + req_access = list(150) + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/item/toy/sword, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"iP" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/item/shard{ + icon_state = "small"; + pixel_x = 10 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"iS" = ( +/mob/living/simple_animal/hostile/alien, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"jb" = ( +/turf/simulated/wall/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"jk" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/mob/living/simple_animal/hostile/alien/sentinel, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"jl" = ( +/obj/structure/sign/poster/contraband/random/south, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 8; + pixel_x = 2 + }, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"jp" = ( +/obj/machinery/optable, +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/organ/internal/body_egg/alien_embryo, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"jr" = ( +/obj/item/chair, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "stage_left" + }, +/area/ruin/space/powered/requires_power_space) +"jw" = ( +/obj/effect/spawner/window/plastitanium, +/obj/machinery/door/poddoor, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"jW" = ( +/mob/living/simple_animal/hostile/alien, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"kg" = ( +/obj/machinery/door/airlock/hatch{ + welded = 1 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"km" = ( +/obj/machinery/door/airlock/highsecurity{ + welded = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"kx" = ( +/obj/item/chair/stool, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "stage_left" + }, +/area/ruin/space/powered/requires_power_space) +"ky" = ( +/obj/machinery/atmospherics/unary/vent_pump, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/trash/spentcasing{ + icon_state = "r-casing" + }, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 8; + pixel_x = 2 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"kK" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/trash/spentcasing, +/turf/simulated/floor/pod, +/area/ruin/space/powered/requires_power_space) +"kP" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"la" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"lj" = ( +/obj/structure/extinguisher_cabinet/empty{ + pixel_y = 30 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"lk" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/vomit/green, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"lm" = ( +/obj/machinery/light_construct/directional/west, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"lt" = ( +/obj/machinery/light_construct/directional/south, +/obj/structure/mirror{ + dir = 4; + pixel_y = 33; + icon_state = "mirror_broke" + }, +/obj/structure/sink{ + pixel_y = 17 + }, +/obj/item/organ/internal/body_egg/alien_embryo, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"lu" = ( +/obj/structure/bed/nest, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"lA" = ( +/obj/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/simulated/floor/pod, +/area/ruin/space/powered/requires_power_space) +"lP" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/structure/sign/poster/contraband/random/north, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"mS" = ( +/obj/structure/door_assembly/door_assembly_ext, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered/requires_power_space) +"mW" = ( +/obj/structure/alien/resin/wall, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"nd" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"ne" = ( +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 5 + }, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 5; + pixel_x = -8 + }, +/obj/item/stack/sheet/cardboard, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"nl" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"ns" = ( +/obj/machinery/optable, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/splatter, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"nz" = ( +/mob/living/simple_animal/hostile/alien, +/turf/simulated/floor/pod, +/area/ruin/space/powered/requires_power_space) +"nE" = ( +/mob/living/simple_animal/hostile/alien/sentinel, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"nO" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"nU" = ( +/obj/structure/grille/broken, +/obj/machinery/door/poddoor, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"ol" = ( +/obj/machinery/light_construct/directional/north, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"ou" = ( +/obj/structure/closet/firecloset, +/obj/structure/sign/fire{ + pixel_x = 31 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"oz" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/shard{ + icon_state = "small"; + pixel_x = 10; + pixel_y = 9 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"oL" = ( +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 6 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"pg" = ( +/obj/structure/alien/egg/burst, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"pj" = ( +/obj/machinery/light_construct/directional/west, +/obj/structure/computerframe{ + icon_state = "comp_frame_5" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/shard, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"pv" = ( +/obj/structure/sign/greencross{ + pixel_x = 31 + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"pz" = ( +/obj/item/chair{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "stage_left" + }, +/area/ruin/space/powered/requires_power_space) +"pB" = ( +/obj/machinery/light_construct/directional/north, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"pK" = ( +/obj/structure/table/glass, +/obj/item/documents/syndicate/yellow, +/obj/item/phone{ + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"pO" = ( +/obj/machinery/light_construct/directional/south, +/obj/structure/closet/crate/can, +/obj/item/trash/syndi_cakes, +/obj/item/trash/raisins, +/obj/item/trash/can, +/obj/item/trash/plate, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "stage_left" + }, +/area/ruin/space/powered/requires_power_space) +"pP" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_y = 9 + }, +/turf/template_noop, +/area/template_noop) +"qb" = ( +/obj/structure/closet, +/obj/item/clothing/head/collectable/welding, +/obj/item/weldingtool, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/simulated/floor/pod, +/area/ruin/space/powered/requires_power_space) +"qU" = ( +/obj/machinery/door/airlock/survival_pod, +/turf/simulated/floor/pod, +/area/ruin/space/powered/requires_power_space) +"rs" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "stage_left" + }, +/area/ruin/space/powered/requires_power_space) +"rG" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = -5; + pixel_y = 9 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"rP" = ( +/obj/structure/alien/resin/wall, +/obj/effect/decal/warning_stripes/north, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"sb" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"sg" = ( +/obj/machinery/door/airlock/hatch{ + welded = 1; + locked = 1 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"sj" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/food/snacks/meat/corgi, +/obj/item/reagent_containers/food/snacks/meat/corgi, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/freezer, +/area/ruin/space/powered/requires_power_space) +"st" = ( +/obj/machinery/door/airlock/survival_pod, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"sy" = ( +/obj/structure/alien/resin/wall, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"sA" = ( +/obj/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"sQ" = ( +/obj/item/airlock_electronics/destroyed, +/turf/template_noop, +/area/template_noop) +"tv" = ( +/mob/living/simple_animal/hostile/alien/queen/large, +/obj/structure/bed/nest, +/obj/effect/mob_spawn/human/corpse/damaged, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"tE" = ( +/obj/machinery/light_construct/directional/north, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"tF" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/alien/egg/burst, +/obj/effect/decal/warning_stripes/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"tO" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"tX" = ( +/obj/structure/mecha_wreckage/mauler, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"ue" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"ug" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/organ/external/chest, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"ul" = ( +/obj/structure/table_frame, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/stack/sheet/metal, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"um" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 9 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"vg" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/mob/living/simple_animal/hostile/alien, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"vk" = ( +/obj/machinery/light_construct/directional/west, +/obj/machinery/economy/vending/medical/syndicate_access, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"vB" = ( +/obj/structure/table/glass, +/obj/item/scalpel, +/obj/item/retractor, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"vL" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"vX" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"wO" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/organ/internal/beard, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"wY" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 6 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"xb" = ( +/obj/structure/shuttle/engine/large{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered/requires_power_space) +"xe" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 8; + pixel_x = 2 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"xy" = ( +/obj/item/chair, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 8; + pixel_x = 2 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"xG" = ( +/obj/machinery/light_construct/directional/west, +/obj/item/paper/crumpled, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/storage/secure/briefcase/syndie, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 1 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"yd" = ( +/obj/structure/closet/syndicate, +/obj/item/storage/firstaid/brute/empty, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/storage/labcoat, +/obj/item/clothing/head/surgery, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/breath, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"yp" = ( +/obj/structure/fans/tiny, +/obj/structure/alien/resin/wall, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"yu" = ( +/obj/machinery/door/poddoor, +/obj/structure/fans/tiny, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"yV" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"zq" = ( +/obj/machinery/light_construct/directional/east, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium/red/airless{ + icon_state = "plastitanium" + }, +/area/ruin/space/powered/requires_power_space) +"zH" = ( +/obj/machinery/light/small/directional/west, +/obj/item/reagent_containers/syringe, +/obj/item/organ/external/leg, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"zI" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"zL" = ( +/obj/item/trash/spentcasing, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"zT" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/organ/internal/body_egg/alien_embryo{ + icon_state = "facehugger_dead" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"Ai" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/dirt/blackpowder, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"As" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/item/gun/syringe, +/obj/item/organ/external/leg/right, +/obj/item/organ/external/chest, +/obj/effect/decal/cleanable/blood/splatter, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"AD" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"AV" = ( +/obj/machinery/light_construct/directional/east, +/obj/machinery/atmospherics/unary/vent_pump, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Bc" = ( +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"BA" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"BK" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "stage_left" + }, +/area/ruin/space/powered/requires_power_space) +"Cg" = ( +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"CM" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"De" = ( +/obj/item/organ/internal/body_egg/alien_embryo, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"DC" = ( +/obj/machinery/porta_turret/syndicate, +/turf/simulated/wall/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Ej" = ( +/obj/structure/door_assembly/door_assembly_ext{ + anchored = 1 + }, +/obj/structure/barricade/security, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered/requires_power_space) +"ET" = ( +/obj/machinery/atmospherics/portable/canister, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"Fv" = ( +/obj/structure/table, +/obj/item/paintkit/mercenary, +/turf/simulated/floor/pod, +/area/ruin/space/powered/requires_power_space) +"FB" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"FH" = ( +/obj/structure/table_frame/wood, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "stage_left" + }, +/area/ruin/space/powered/requires_power_space) +"FM" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/zipties, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"FQ" = ( +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"FS" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"FT" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Ge" = ( +/obj/structure/table/wood, +/obj/item/trash/plate, +/obj/item/reagent_containers/food/snacks/syndidonkpocket{ + pixel_y = 14; + pixel_x = 6 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "stage_left" + }, +/area/ruin/space/powered/requires_power_space) +"GD" = ( +/obj/item/shard{ + icon_state = "small"; + pixel_x = 10 + }, +/turf/template_noop, +/area/template_noop) +"GW" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"He" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/pod, +/area/ruin/space/powered/requires_power_space) +"Hg" = ( +/obj/structure/bed/nest, +/obj/effect/mob_spawn/human/corpse/damaged, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"Hn" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/beer{ + pixel_y = 9 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"HH" = ( +/obj/machinery/door/poddoor, +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"HV" = ( +/obj/structure/extinguisher_cabinet/empty{ + pixel_x = 30 + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"HY" = ( +/obj/structure/door_assembly/door_assembly_highsecurity{ + anchored = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/vomit/green, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"Ib" = ( +/obj/item/storage/toolbox/syndicate, +/obj/structure/closet, +/obj/item/multitool, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"Ie" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/structure/alien/resin/door{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"In" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"IH" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"IR" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"IX" = ( +/obj/structure/sign/electricshock{ + pixel_x = -35 + }, +/obj/structure/alien/egg/burst, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"Ja" = ( +/obj/structure/table/reinforced, +/obj/item/stack/spacecash/c200, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"Je" = ( +/obj/machinery/light_construct/directional/south, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 8; + pixel_x = 2 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Jp" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"JH" = ( +/obj/machinery/light_construct/directional/north, +/obj/structure/dispenser/oxygen, +/obj/effect/decal/warning_stripes/north, +/obj/structure/sign/poster/contraband/random/north, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"JK" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"JO" = ( +/obj/item/stack/sheet/plasteel, +/turf/template_noop, +/area/template_noop) +"JS" = ( +/mob/living/simple_animal/hostile/alien/sentinel, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"Kv" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"KH" = ( +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 6 + }, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 9 + }, +/obj/structure/sign/poster/contraband/random/north, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Ln" = ( +/obj/structure{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + icon = 'icons/obj/power.dmi'; + icon_state = "smes"; + name = "power storage unit" + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"LA" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "stage_left" + }, +/area/ruin/space/powered/requires_power_space) +"LO" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"LP" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"LW" = ( +/obj/structure/door_assembly/door_assembly_ext, +/turf/template_noop, +/area/template_noop) +"Me" = ( +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 5; + pixel_x = -8 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Mu" = ( +/obj/structure/closet/syndicate, +/obj/item/clothing/under/syndicate/tacticool, +/obj/item/clothing/suit/armor/vest/fluff/tactical, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/shoes/jackboots, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"MM" = ( +/obj/item/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"Nj" = ( +/obj/structure/barricade/security, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"NN" = ( +/obj/machinery/suit_storage_unit/syndicate{ + mask_type = null; + storage_type = null; + suit_type = null; + state_open = 1; + req_access = null + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"NP" = ( +/obj/item/reagent_containers/food/drinks/oilcan, +/obj/item/wrench, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"NY" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/organ/external/hand, +/obj/machinery/power/apc/off_station/empty_charge/west, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Ok" = ( +/obj/structure/alien/weeds/node, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"OA" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/sign/poster/contraband/random/south, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"OL" = ( +/obj/structure/alien/egg/burst, +/obj/effect/decal/warning_stripes/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"Pm" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 9 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Po" = ( +/obj/structure/closet/crate/engineering, +/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"Pq" = ( +/obj/item/organ/internal/body_egg/alien_embryo{ + icon_state = "facehugger_dead" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Pr" = ( +/obj/structure/bed/nest, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"Px" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/soda{ + pixel_y = 9 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"PV" = ( +/obj/structure/door_assembly/door_assembly_pod, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"QS" = ( +/obj/machinery/light_construct/directional/west, +/obj/machinery/suit_storage_unit/syndicate{ + mask_type = null; + storage_type = null; + suit_type = null; + state_open = 1; + req_access = null + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"QU" = ( +/obj/machinery/suit_storage_unit/syndicate{ + mask_type = null; + storage_type = null; + suit_type = null; + state_open = 1; + req_access = null + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Rg" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Rl" = ( +/obj/machinery/economy/vending/cigarette/syndicate/free, +/turf/simulated/floor/pod, +/area/ruin/space/powered/requires_power_space) +"RN" = ( +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 4 + }, +/obj/structure/alien/weeds/node, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Se" = ( +/obj/structure/door_assembly/door_assembly_pod{ + anchored = 1 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"SA" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/trash/spentcasing{ + icon_state = "r-casing" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Tb" = ( +/obj/structure/sign/vacuum{ + pixel_x = -33 + }, +/turf/simulated/floor/mineral/plastitanium/red/airless{ + icon_state = "plastitanium" + }, +/area/ruin/space/powered/requires_power_space) +"Tn" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/random_spawners/blood_often, +/obj/structure/barricade/security, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Tq" = ( +/obj/structure/table_frame, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"Tx" = ( +/obj/structure{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + icon = 'icons/obj/power.dmi'; + icon_state = "smes"; + name = "power storage unit" + }, +/obj/item/wrench, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"TV" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Us" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/table_frame, +/obj/item/organ/internal/body_egg/alien_embryo{ + icon_state = "facehugger_impregnated" + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_y = 9 + }, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"UK" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "150"; + locked = 1 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"UL" = ( +/obj/structure/alien/egg/burst, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"UW" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"Vc" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium/red/airless{ + icon_state = "plastitanium" + }, +/area/ruin/space/powered/requires_power_space) +"Vn" = ( +/obj/structure/barricade/security, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"VF" = ( +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"VN" = ( +/obj/item/organ/external/chest, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/pod, +/area/ruin/space/powered/requires_power_space) +"Wd" = ( +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"We" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/dock_marker, +/turf/template_noop, +/area/template_noop) +"Ww" = ( +/obj/item/clothing/suit/fire/firefighter, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"WQ" = ( +/obj/item/mounted/frame/apc_frame, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/structure/bed/nest, +/obj/effect/mob_spawn/human/corpse/syndicatecommando, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"WR" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"WW" = ( +/obj/machinery/door/poddoor, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"Xe" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/trash/spentcasing{ + icon_state = "r-casing"; + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Xx" = ( +/obj/structure/alien/egg/burst, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"XJ" = ( +/obj/structure/alien/resin/wall, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"XL" = ( +/obj/structure/bed/nest, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"XW" = ( +/obj/structure/kitchenspike_frame, +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/freezer, +/area/ruin/space/powered/requires_power_space) +"Ye" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/wall/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Yw" = ( +/obj/item/kirbyplants/dead, +/turf/simulated/floor/pod, +/area/ruin/space/powered/requires_power_space) +"Yy" = ( +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"YF" = ( +/obj/structure{ + icon = 'icons/obj/objects.dmi'; + icon_state = "borgdecon2"; + name = "cyborg recharging station" + }, +/obj/effect/decal/warning_stripes/south, +/obj/structure/sign/poster/contraband/random/south, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"YG" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/ruin/space/powered/requires_power_space) +"Zc" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/trash/spentcasing, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) +"Zd" = ( +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered/requires_power_space) +"Zk" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"ZA" = ( +/obj/structure/window/plasmareinforced{ + dir = 4 + }, +/obj/structure/alien/egg/burst, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"ZE" = ( +/obj/structure/table/reinforced, +/obj/item/ammo_box/c9mm, +/turf/simulated/floor, +/area/ruin/space/powered/requires_power_space) +"ZQ" = ( +/obj/item/storage/firstaid/fire/empty, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered/requires_power_space) + +(1,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(2,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jb +Zd +xb +dU +iB +dU +Zd +xb +jb +iB +iB +iB +"} +(3,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jb +Zd +Zd +Ye +dU +Ye +Zd +Zd +jb +iB +iB +iB +"} +(4,1,1) = {" +iB +iB +iB +iB +iB +iB +jb +jb +Ye +Ye +Ln +Ye +Tx +Ye +Ye +jb +jb +iB +iB +"} +(5,1,1) = {" +iB +iB +iB +iB +iB +iB +jb +Zk +jb +eL +Xx +IX +NP +jb +hc +sj +jb +iB +iB +"} +(6,1,1) = {" +iB +iB +iB +iB +iB +iB +jb +lt +jb +ZA +WQ +tv +Xx +jb +XW +ez +jb +iB +iB +"} +(7,1,1) = {" +iB +iB +iB +iB +iB +iB +jb +qU +jb +Ib +pg +FQ +Pr +jb +jb +bk +jb +iB +iB +"} +(8,1,1) = {" +iB +iB +iB +iB +iB +iB +jb +nz +jb +yV +Xx +Pr +ul +jb +rG +rs +jb +iB +iB +"} +(9,1,1) = {" +iB +iB +iB +iB +iB +iB +jb +VN +jb +Po +JS +XL +ul +jb +Hn +hP +jb +iB +iB +"} +(10,1,1) = {" +iB +iB +iB +iB +iB +iB +jb +ol +jb +ET +JK +Ok +Hg +jb +Px +BK +jb +iB +iB +"} +(11,1,1) = {" +iB +iB +iB +iB +iB +GD +jw +Cg +jb +eC +JK +iS +hF +jb +gg +pz +jw +iB +iB +"} +(12,1,1) = {" +iB +iB +iB +iB +iB +iB +HH +Cg +hc +jb +jb +kg +hc +hc +aF +FH +jw +iB +iB +"} +(13,1,1) = {" +iB +iB +iB +iB +iB +iB +HH +eq +cB +vX +Cg +GW +jb +iH +gK +kx +jw +iB +iB +"} +(14,1,1) = {" +iB +iB +iB +iB +iB +pP +jw +cC +tO +Cg +ky +FS +st +bK +MM +Ge +WW +iB +iB +"} +(15,1,1) = {" +iB +iB +iB +iB +iB +iB +jw +ue +SA +HV +pv +LP +hc +LA +ff +jr +nU +iB +iB +"} +(16,1,1) = {" +iB +iB +iB +iB +iB +In +jb +sy +eR +hc +jb +Se +hc +hc +lj +pO +jb +iB +iB +"} +(17,1,1) = {" +iB +iB +iB +iB +iB +DC +sy +sy +Cg +jb +vk +ZQ +zH +jb +st +jb +jb +jb +iB +"} +(18,1,1) = {" +iB +iB +In +iB +iB +iB +sy +sy +Ie +sy +yd +dG +As +jb +dK +BA +Tb +Ej +iB +"} +(19,1,1) = {" +iB +iB +iB +iB +iB +In +sy +sy +tE +jb +vB +Kv +Tq +jb +aY +jb +Vc +jb +iB +"} +(20,1,1) = {" +iB +iB +iB +iB +sQ +sy +sy +sy +Cg +jb +jp +iP +ns +jb +IR +UK +zq +mS +iB +"} +(21,1,1) = {" +iB +iB +JO +fK +iB +LW +In +sy +Cg +jb +eK +VF +cK +jb +xe +jb +jb +hc +iB +"} +(22,1,1) = {" +iB +iB +iB +iB +iB +iB +sy +sy +PV +hc +jb +gD +jb +hc +st +jb +jb +iB +iB +"} +(23,1,1) = {" +iB +iB +iB +iB +JO +iB +jw +lA +CM +Ww +eT +bo +lm +lk +nO +Rl +jw +iB +iB +"} +(24,1,1) = {" +iB +JO +iB +iB +iB +iB +jw +hS +la +dI +ou +Nj +aH +Rg +vL +lA +jw +iB +iB +"} +(25,1,1) = {" +iB +iB +iB +iB +iB +iB +jw +Yw +hw +hc +jb +jb +jb +hc +zI +Yw +jw +iB +iB +"} +(26,1,1) = {" +iB +iB +iB +iB +iB +iB +jb +jb +st +jb +QS +jk +iL +jb +st +jb +jb +iB +iB +"} +(27,1,1) = {" +iB +iB +iB +iB +iB +fK +DC +jb +pB +jb +al +zT +Ja +jb +Pm +jb +DC +iB +iB +"} +(28,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jb +OA +jb +Wd +kP +ZE +jb +KH +jb +iB +iB +iB +"} +(29,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jb +sb +jb +NN +nd +FM +jb +oL +jb +iB +iB +iB +"} +(30,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jb +Tn +jb +sA +um +Mu +jb +Me +jb +iB +iB +iB +"} +(31,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jb +aH +hc +jb +km +jb +hc +ne +jb +iB +iB +iB +"} +(32,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jw +FT +AD +nl +wO +NY +Jp +aH +jw +iB +iB +iB +"} +(33,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jw +jW +FB +AV +ug +YG +TV +cC +jw +iB +iB +iB +"} +(34,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jw +zL +hc +jb +HY +jb +hc +IR +jw +iB +iB +iB +"} +(35,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jw +Xe +jb +pj +xy +xG +jb +lP +jw +iB +iB +iB +"} +(36,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jw +jl +jb +oz +vg +bW +jb +Jp +jw +iB +iB +iB +"} +(37,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jw +Je +jb +pK +Zc +Us +jb +hn +jw +iB +iB +iB +"} +(38,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jb +sg +jb +iv +ia +iv +jb +sg +jb +iB +iB +iB +"} +(39,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jb +Vn +qb +ac +kK +Fv +He +UW +jb +iB +iB +iB +"} +(40,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jb +tF +IH +Ai +eG +do +LO +OL +jb +iB +iB +iB +"} +(41,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jb +JH +UL +bo +Yy +nE +bh +hG +jb +iB +iB +iB +"} +(42,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jb +QU +dq +De +RN +WR +wY +tX +jb +iB +iB +iB +"} +(43,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +jb +cM +XJ +XJ +Bc +Pq +sb +YF +jb +iB +iB +iB +"} +(44,1,1) = {" +iB +iB +iB +iB +iB +iB +DC +jb +rP +mW +mW +mW +lu +lu +ep +jb +DC +iB +iB +"} +(45,1,1) = {" +iB +iB +iB +iB +iB +iB +We +jb +jb +yp +yu +yu +yu +yu +jb +jb +We +iB +iB +"} +(46,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +sy +sy +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(47,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} diff --git a/_maps/map_files220/RandomRuins/SpaceRuins/mechtransport_new.dmm b/_maps/map_files220/RandomRuins/SpaceRuins/mechtransport_new.dmm new file mode 100644 index 000000000000..cdddcef83c34 --- /dev/null +++ b/_maps/map_files220/RandomRuins/SpaceRuins/mechtransport_new.dmm @@ -0,0 +1,4450 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ae" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"an" = ( +/obj/structure/holosign/barrier/atmos, +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"aA" = ( +/obj/structure/mecha_wreckage/phazon{ + obj_integrity = 40 + }, +/obj/effect/turf_decal/stripes, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"aH" = ( +/obj/structure/closet/crate/secure/loot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/directional/north, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"aK" = ( +/obj/structure/closet/crate{ + icon_state = "radiation"; + icon_opened = "radiation_open" + }, +/obj/item/stack/sheet/mineral/uranium/fifty, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"be" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 2; + pixel_x = 4 + }, +/obj/item/stamp/granted{ + pixel_y = 6; + pixel_x = -8 + }, +/obj/item/folder/yellow, +/obj/item/pen, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"bf" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"bh" = ( +/obj/structure/table, +/obj/item/toy/figure/mech/seraph{ + pixel_y = 9; + pixel_x = -5 + }, +/obj/machinery/door_control/shutter{ + pixel_x = 6; + id = "bdoorright_mech" + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"bn" = ( +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"bo" = ( +/obj/item/cigbutt{ + pixel_y = 15; + pixel_x = 6 + }, +/obj/item/cigbutt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"bs" = ( +/obj/structure/chair/stool/bar, +/turf/simulated/floor/carpet/blue, +/area/ruin/space/powered) +"bw" = ( +/obj/item/stock_parts/cell/hyper/empty{ + pixel_y = 8 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"bx" = ( +/obj/structure/computerframe{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/ruin/space/powered) +"bC" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/directional/north, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"bF" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"bK" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"bP" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/meele/axe, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"bR" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/meele, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"cd" = ( +/obj/structure/shuttle/engine/large, +/turf/template_noop, +/area/template_noop) +"ce" = ( +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"cg" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"cz" = ( +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"cF" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/soda{ + dir = 8; + pixel_y = 4 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"cG" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"cJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall/indestructible/whiteshuttle/nodiagonal, +/area/ruin/space/powered) +"cK" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/gun/spacegun, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"cX" = ( +/obj/effect/turf_decal/caution, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"cZ" = ( +/mob/living/simple_animal/hostile/scavengers/meele, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"dk" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"dL" = ( +/obj/structure{ + icon_state = "controller-o"; + icon = 'icons/obj/stationobjs.dmi'; + desc = "These are some kind of high-tech structures."; + name = "data server"; + density = 1 + }, +/turf/simulated/floor/bluegrid, +/area/ruin/space/powered) +"eq" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/obj/structure/barricade/security, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"et" = ( +/obj/structure/sign/evac, +/turf/simulated/wall/indestructible/whiteshuttle, +/area/ruin/space/powered) +"ev" = ( +/obj/machinery/door/airlock/highsecurity, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"eJ" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "sright_mech" + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"eR" = ( +/obj/structure/table_frame, +/obj/item/radio, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"eY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"fk" = ( +/obj/structure/closet/crate, +/obj/item/mecha_parts/mecha_equipment/extinguisher, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_modkit/voice/honk{ + pixel_y = 10; + pixel_x = 3 + }, +/obj/item/mecha_parts/mecha_equipment/thrusters, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"fK" = ( +/obj/structure/computerframe, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"gB" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"gH" = ( +/obj/structure/mecha_wreckage/ripley{ + obj_integrity = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"gU" = ( +/obj/machinery/door_control/shutter/south{ + id = "sleft_mech"; + pixel_x = 8 + }, +/obj/machinery/light_construct/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"hj" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/carpet/purple, +/area/ruin/space/powered) +"ho" = ( +/obj/structure/computerframe{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"hw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"hx" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"hK" = ( +/obj/structure/table, +/obj/item/ashtray/glass, +/obj/item/toy/figure/mech/phazon{ + pixel_y = 20; + pixel_x = 5 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"hM" = ( +/obj/machinery/computer{ + dir = 4; + icon_keyboard = "syndie_key"; + icon_screen = "syndinavigation" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"hW" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"ib" = ( +/obj/machinery/light_construct/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"il" = ( +/turf/simulated/wall/r_wall, +/area/ruin/space/powered) +"io" = ( +/obj/machinery/door_control/shutter/north{ + id = "sright_mech"; + pixel_x = -8 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"ir" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"iG" = ( +/obj/effect/landmark/burnturf, +/obj/item/flashlight{ + on = 1 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"iK" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"iP" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"iT" = ( +/obj/structure/closet, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"iU" = ( +/obj/item/kirbyplants, +/obj/machinery/light_construct/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"jq" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/cigbutt{ + pixel_y = 10; + pixel_x = 6 + }, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"jx" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"jz" = ( +/obj/structure/closet/crate/can, +/obj/item/toy/figure/mech/honk, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"jP" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/weldingtool, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"jS" = ( +/obj/effect/decal/cleanable/ash, +/obj/item/cigbutt{ + pixel_y = 10; + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"jU" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"kv" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"kD" = ( +/obj/structure/table, +/obj/item/hand_labeler{ + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"kE" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"kK" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/meele/crusher, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"kM" = ( +/mob/living/simple_animal/hostile/scavengers/gun/spacegun, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"kO" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"kR" = ( +/obj/structure/table, +/obj/item/stack/rods{ + amount = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + pixel_x = -3; + amount = 20 + }, +/obj/item/stack/sheet/rglass{ + amount = 15 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"kU" = ( +/obj/structure/railing, +/turf/template_noop, +/area/template_noop) +"lf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"lk" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"ll" = ( +/obj/machinery/porta_turret{ + faction = "scavengers"; + lethal = 1 + }, +/obj/effect/dummy/lighting_obj, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"ly" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"lF" = ( +/obj/structure/closet/walllocker/emerglocker/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"lH" = ( +/obj/structure/lattice{ + icon_state = "lattice-2" + }, +/obj/structure/marker_beacon/dock_marker{ + name = "transport way beacon" + }, +/turf/template_noop, +/area/template_noop) +"lR" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"lS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"ma" = ( +/obj/item/trash/syndi_cakes, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"mt" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + id_tag = "hang1_mech" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"mN" = ( +/obj/machinery/button/windowtint/west{ + id = "mech_toilet" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/light_construct/directional/west, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"mU" = ( +/mob/living/simple_animal/hostile/scavengers/gun, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"nc" = ( +/obj/structure/closet/crate/secure/loot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"ng" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/rollie{ + list_reagents = list("thc" = 40, "cbd" = 20) + }, +/obj/item/clothing/mask/cigarette/rollie{ + list_reagents = list("thc" = 40, "cbd" = 20); + pixel_y = 3 + }, +/obj/item/storage/fancy/rollingpapers{ + pixel_y = 7; + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/rollie{ + list_reagents = list("thc" = 40, "cbd" = 20); + pixel_y = 3; + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"nj" = ( +/obj/structure/chair, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"nk" = ( +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"nx" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall/r_wall, +/area/ruin/space/powered) +"nA" = ( +/obj/machinery/door/airlock/external{ + locked = 1 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"nM" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"nV" = ( +/obj/machinery/light_construct/directional/east, +/obj/structure/table, +/obj/item/hand_labeler{ + pixel_y = 9 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_y = 2; + pixel_x = -8 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"ob" = ( +/obj/machinery/computer{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"oh" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"ol" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"ov" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"oE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"oL" = ( +/obj/machinery/light_construct/directional/south, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"oY" = ( +/obj/structure/closet/crate{ + icon_state = "scicrate"; + icon_opened = "scicrate_open" + }, +/obj/item/stack/sheet/mineral/plasma/fifty, +/obj/item/stack/sheet/mineral/plasma/fifty, +/obj/item/stack/sheet/plasteel{ + amount = 50 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"pm" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/meele, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"pn" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"pw" = ( +/obj/structure/railing/corner, +/turf/template_noop, +/area/template_noop) +"pQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"qa" = ( +/obj/structure/table, +/obj/item/weldingtool, +/obj/item/clothing/head/welding/flamedecal, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"qt" = ( +/obj/structure/lattice{ + icon_state = "lattice-2" + }, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/template_noop, +/area/template_noop) +"qv" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/plasmareinforced{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"qA" = ( +/obj/mecha/combat/durand/old{ + obj_integrity = 120 + }, +/turf/simulated/floor/mech_bay_recharge_floor, +/area/ruin/space/powered) +"qB" = ( +/obj/machinery/door_control/shutter/south{ + id = "sright_mech"; + pixel_x = -8 + }, +/obj/machinery/light_construct/directional/east, +/mob/living/simple_animal/hostile/scavengers/laser, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"qC" = ( +/mob/living/simple_animal/hostile/scavengers/laser, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"qT" = ( +/obj/machinery/atmospherics/portable/pump, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"qU" = ( +/turf/template_noop, +/area/template_noop) +"qW" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"rn" = ( +/obj/item/trash/can, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"ro" = ( +/obj/structure{ + icon_state = "mechfab1"; + desc = "Nothing is being built."; + name = "exosuit fabricator"; + icon = 'icons/obj/stationobjs.dmi'; + density = 1 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"rs" = ( +/obj/structure/rack/gunrack, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/directional/south, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"rJ" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "mech_toilet" + }, +/obj/machinery/door/poddoor{ + id_tag = "bwindows_mech" + }, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"rU" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/laser, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"rZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = 4; + pixel_y = 4; + volume = 0 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"sb" = ( +/obj/effect/turf_decal/bot, +/obj/structure/mecha_wreckage/ripley{ + obj_integrity = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"sh" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"ss" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"sw" = ( +/obj/machinery/light_construct/directional/west, +/obj/effect/turf_decal/box, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"sD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"sK" = ( +/turf/simulated/floor/carpet/purple, +/area/ruin/space/powered) +"sP" = ( +/obj/machinery/light_construct/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"sU" = ( +/obj/structure/closet/crate/secure/loot, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"tf" = ( +/obj/structure/table, +/obj/item/toy/figure/mech/durand{ + pixel_y = 8 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"tj" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave{ + pixel_y = 12 + }, +/turf/simulated/floor/carpet/blue, +/area/ruin/space/powered) +"tm" = ( +/obj/item/chair{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"to" = ( +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"tv" = ( +/turf/simulated/wall/indestructible/whiteshuttle, +/area/ruin/space/unpowered/unpowered_structures) +"tE" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"tK" = ( +/obj/structure/mecha_wreckage/ripley{ + obj_integrity = 20 + }, +/obj/effect/turf_decal/stripes, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"tM" = ( +/obj/effect/decal/cleanable/ants, +/mob/living/simple_animal/hostile/scavengers/meele, +/turf/simulated/floor/carpet/blue, +/area/ruin/space/powered) +"ua" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"uk" = ( +/obj/structure/rack/gunrack, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"ut" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"uI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"uU" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"vc" = ( +/obj/effect/turf_decal/bot, +/obj/item/mecha_parts/part/odysseus_torso, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"vd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"vo" = ( +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"vq" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/glass, +/mob/living/simple_animal/hostile/scavengers/gun, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"vv" = ( +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 8 + }, +/obj/structure/shuttle/engine/heater{ + anchored = 0; + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"vw" = ( +/obj/item/stack/packageWrap, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"vy" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"vF" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"vL" = ( +/obj/machinery/economy/vending/snack/free, +/obj/machinery/light_construct/directional/west, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"vP" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "shang1_mech" + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"wi" = ( +/obj/effect/turf_decal/caution, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/laser/spacelaser, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"wl" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "sright_mech" + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"wn" = ( +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"wp" = ( +/obj/machinery/door/poddoor{ + id_tag = "bwindows_mech" + }, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"wr" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"wv" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"wF" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "150" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"wZ" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"xa" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"xb" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/turf/simulated/floor/carpet/purple, +/area/ruin/space/powered) +"xe" = ( +/obj/machinery/mech_bay_recharge_port, +/turf/simulated/floor/bluegrid, +/area/ruin/space/powered) +"xF" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/item/shard{ + icon_state = "large"; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"xG" = ( +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/effect/decal/cleanable/glass, +/obj/item/shard, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"xY" = ( +/obj/structure/chair/sofa/corp/right, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"yj" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/silver{ + amount = 15; + pixel_y = 5; + pixel_x = 3 + }, +/obj/item/stack/sheet/mineral/diamond{ + amount = 5; + pixel_y = 4; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"yk" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"ym" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = -30 + }, +/obj/structure/sink/directional/east, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"yr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"ys" = ( +/turf/simulated/wall/indestructible/syndishuttle/nodiagonal, +/area/ruin/space/powered) +"yt" = ( +/obj/machinery/constructable_frame/machine_frame{ + icon_state = "box_1" + }, +/turf/simulated/floor/bluegrid, +/area/ruin/space/powered) +"yy" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"yS" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"yU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"ze" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"zy" = ( +/obj/machinery/computer{ + icon_state = "entertainment_console"; + pixel_y = 32; + icon_screen = "entertainment_console_broken"; + icon_keyboard = null; + density = 0 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"zF" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"zI" = ( +/obj/structure/railing{ + dir = 1; + layer = 3.9 + }, +/turf/template_noop, +/area/template_noop) +"zK" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "rampbottom" + }, +/area/ruin/space/powered) +"zM" = ( +/obj/machinery/light_construct/directional/south, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/meele, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Ac" = ( +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"Ae" = ( +/obj/machinery/door_control/shutter/north{ + id = "shang1_mech"; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/gun, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"Ah" = ( +/obj/item/stack/rods, +/turf/template_noop, +/area/template_noop) +"An" = ( +/obj/machinery/door/airlock, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Ao" = ( +/obj/structure/railing/corner{ + dir = 4; + layer = 3.9 + }, +/turf/template_noop, +/area/template_noop) +"Aq" = ( +/obj/machinery/power/port_gen/pacman, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"AC" = ( +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"AR" = ( +/obj/item/flag, +/obj/machinery/light_construct/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"AS" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/item/stock_parts/cell/hyper/empty, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/circuitboard/smes{ + icon_state = "command_broken" + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"AT" = ( +/obj/item/chair, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"Ba" = ( +/obj/effect/dummy/lighting_obj/moblight, +/turf/template_noop, +/area/template_noop) +"Be" = ( +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Bh" = ( +/obj/item/kirbyplants, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"Bj" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"BD" = ( +/obj/structure/computerframe{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"BX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Cl" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/meele/crusher, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"Cm" = ( +/obj/machinery/light_construct/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Co" = ( +/obj/structure/table, +/obj/item/mecha_parts/core, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Cp" = ( +/obj/structure/railing, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/obj/machinery/light_construct/directional/west, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Cw" = ( +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/powered) +"Cy" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Cz" = ( +/obj/effect/turf_decal/bot, +/obj/structure/mecha_wreckage/durand/old, +/obj/effect/decal/cleanable/dirt{ + obj_integrity = 200 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"CC" = ( +/turf/simulated/wall/mineral/plastitanium, +/area/ruin/space/powered) +"CF" = ( +/obj/machinery/mecha_part_fabricator, +/obj/item/mecha_parts/part/odysseus_head, +/obj/item/mecha_parts/part/odysseus_right_leg, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"CK" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor{ + id_tag = "bdoorright_mech" + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"CW" = ( +/obj/machinery/door/airlock/external{ + locked = 1; + welded = 1 + }, +/obj/structure/fans/tiny, +/obj/structure/barricade/wooden{ + layer = 3.11 + }, +/obj/structure/barricade/wooden/crude{ + layer = 3.11 + }, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"CZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/mecha_wreckage/gygax, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Dh" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "sright_mech" + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"Do" = ( +/obj/machinery/light_construct/directional/west, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/door_control/shutter/north{ + id = "hang1_mech"; + pixel_x = -6 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"DE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer{ + icon_state = "entertainment_console"; + pixel_y = 32; + icon_screen = "entertainment_console_broken"; + icon_keyboard = null; + density = 0 + }, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"DG" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"DJ" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"Eb" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/plasmareinforced{ + dir = 1 + }, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"Ec" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light_construct/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Ei" = ( +/obj/structure/chair, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"EI" = ( +/obj/structure{ + icon_state = "controller-p"; + icon = 'icons/obj/stationobjs.dmi'; + desc = "These are some kind of high-tech structures."; + name = "data server"; + density = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/bluegrid, +/area/ruin/space/powered) +"EO" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/mob/living/simple_animal/hostile/scavengers/laser, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"EP" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/laser/spacelaser, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Fh" = ( +/obj/structure/chair/sofa/corp/left, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Fn" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/mecha_wreckage/phazon{ + obj_integrity = 40 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"Fr" = ( +/obj/structure/closet/crate{ + icon_state = "scicrate"; + icon_opened = "scicrate_open" + }, +/obj/item/stack/sheet/mineral/plastitanium/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Ft" = ( +/obj/machinery/light_construct/directional/south, +/turf/simulated/floor/carpet/purple, +/area/ruin/space/powered) +"Fu" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Fv" = ( +/obj/structure/table, +/obj/machinery/door_control/shutter{ + id = "bwindows_mech" + }, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"Fx" = ( +/obj/structure{ + icon_state = "holopad_open"; + icon = 'icons/obj/stationobjs.dmi'; + desc = "Holopad for long-distance communication."; + name = "holopad" + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"Fy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"FA" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/storage/belt/utility, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"FF" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"FK" = ( +/obj/machinery/light_construct/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"FS" = ( +/obj/machinery/light_construct/directional/west, +/obj/structure/table, +/obj/item/radio/off, +/obj/item/radio/off{ + pixel_y = 4; + pixel_x = 8 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Gl" = ( +/obj/structure/table, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + list_reagents = list("coffee"=0); + pixel_x = 10; + pixel_y = 7 + }, +/obj/item/book/manual/ripley_build_and_repair{ + pixel_x = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"Gt" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"Gu" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "shang2_mech" + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/obj/machinery/door_control/shutter/north{ + id = "shang2_mech" + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"GF" = ( +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"GH" = ( +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"GP" = ( +/obj/machinery/door/poddoor{ + id_tag = "hang1_mech" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"GS" = ( +/obj/structure/table, +/obj/item/clothing/head/soft{ + pixel_y = 11; + pixel_x = 7 + }, +/obj/item/deck/cards/tiny{ + pixel_y = -2 + }, +/obj/item/toy/figure/mech/ripley{ + pixel_y = 20; + pixel_x = -6 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"Hb" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/meele/crusher, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Hi" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"Hl" = ( +/obj/structure{ + icon_state = "blackbox_b"; + icon = 'icons/obj/stationobjs.dmi'; + desc = "This is an old-style communications server."; + name = "communications server"; + density = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/bluegrid, +/area/ruin/space/powered) +"Hn" = ( +/obj/machinery/computer{ + name = "shuttle control console"; + desc = "The screen dims greens with an ERROR message. It looks completely unusable." + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"Hs" = ( +/obj/machinery/power/smes, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"HB" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"HG" = ( +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"HJ" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/gun/energy/gun/turret, +/obj/item/flashlight/seclite, +/obj/item/trash/candy, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"HO" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"HQ" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"HU" = ( +/obj/machinery/door/poddoor/shutters{ + id_tag = "shang3_mech" + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Ij" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Iw" = ( +/obj/structure/table, +/obj/machinery/light_construct/directional/west, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"Ix" = ( +/obj/structure/computerframe, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"IG" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"II" = ( +/obj/machinery/computer{ + name = "exosuit control console"; + desc = "The screen dims green with a bright ERROR message. It looks completely unusable." + }, +/obj/structure/computerframe, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_y = 9 + }, +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"IK" = ( +/obj/effect/landmark/burnturf, +/obj/item/stack/sheet/mineral/titanium, +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"IL" = ( +/obj/effect/turf_decal/stripes, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"Ja" = ( +/obj/machinery/constructable_frame/machine_frame{ + icon_state = "box_1" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/bluegrid, +/area/ruin/space/powered) +"Jq" = ( +/obj/item/kirbyplants, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Jr" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"Js" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "shang2_mech" + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Ju" = ( +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"JP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/flashlight{ + on = 1 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"JZ" = ( +/obj/structure/table/wood, +/obj/item/trash/semki, +/obj/item/storage/box/zipties{ + pixel_y = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"Kb" = ( +/turf/simulated/wall/indestructible/whiteshuttle/nodiagonal, +/area/ruin/space/powered) +"Kc" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Kl" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/storage/belt/utility, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"KH" = ( +/obj/structure/table, +/obj/machinery/status_display/directional/north, +/obj/item/trash/plate, +/obj/item/newspaper{ + pixel_y = 9; + pixel_x = 7 + }, +/turf/simulated/floor/carpet/blue, +/area/ruin/space/powered) +"KW" = ( +/obj/effect/landmark/damageturf, +/obj/structure/railing{ + dir = 5 + }, +/mob/living/simple_animal/hostile/scavengers/laser/spacelaser, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"KY" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"La" = ( +/obj/structure/mecha_wreckage/ripley{ + obj_integrity = 20 + }, +/obj/effect/turf_decal/stripes, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"Lj" = ( +/obj/item/stack/cable_coil{ + amount = 5 + }, +/mob/living/simple_animal/hostile/scavengers/meele, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"Lo" = ( +/obj/machinery/door_control/shutter/west{ + id = "shang3_mech"; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Lv" = ( +/obj/structure/table/wood, +/obj/item/ashtray/plastic, +/obj/item/cigbutt{ + pixel_y = 7 + }, +/obj/item/cigbutt, +/obj/item/cigbutt{ + pixel_y = 15; + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"Lz" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "sright_mech" + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"LC" = ( +/obj/machinery/door_control/shutter/south{ + id = "shang1_mech"; + pixel_x = 8 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"LF" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "shang2_mech" + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"LV" = ( +/obj/machinery/constructable_frame/machine_frame{ + icon_state = "box_1" + }, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"LY" = ( +/obj/structure/rack/gunrack, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"Md" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Me" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/mob/living/simple_animal/hostile/scavengers/laser/spacelaser, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Mi" = ( +/turf/simulated/floor/mech_bay_recharge_floor, +/area/ruin/space/powered) +"Mp" = ( +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/obj/item/stack/sheet/mineral/titanium, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Mr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"MN" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"MY" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "sleft_mech" + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"Nb" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Ng" = ( +/obj/machinery/light_construct/directional/south, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Nl" = ( +/obj/structure/lattice{ + icon_state = "lattice-3" + }, +/turf/template_noop, +/area/template_noop) +"Nm" = ( +/obj/structure/computerframe, +/obj/item/shard{ + icon_state = "large"; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"Nn" = ( +/obj/machinery/light_construct/directional/west, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"NF" = ( +/obj/structure/mecha_wreckage/honker, +/turf/simulated/floor/mech_bay_recharge_floor, +/area/ruin/space/powered) +"NH" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + pixel_x = -3; + amount = 20 + }, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Oh" = ( +/obj/machinery/light_construct/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"OB" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/template_noop) +"Pf" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"Pi" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/template_noop, +/area/template_noop) +"Pm" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/titanium{ + amount = 10; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Po" = ( +/obj/structure/rack/gunrack, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"PB" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"PF" = ( +/obj/structure/mecha_wreckage/durand{ + obj_integrity = 100 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"PS" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"PT" = ( +/obj/effect/spawner/window/shuttle, +/obj/machinery/door/poddoor{ + id_tag = "bwindows_mech" + }, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"PV" = ( +/obj/machinery/door/poddoor{ + id_tag = "bdoorleft_mech" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Qb" = ( +/obj/structure/door_assembly/door_assembly_ext, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Qd" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Qf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mech_bay_recharge_floor, +/area/ruin/space/powered) +"Ql" = ( +/obj/structure/shuttle/engine/heater{ + anchored = 0; + dir = 4 + }, +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"Qt" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/meele/axe, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"Qx" = ( +/obj/item/flag/rnd{ + desc = "It's a flag." + }, +/obj/machinery/light_construct/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"QD" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"QF" = ( +/obj/structure/closet/crate, +/obj/item/mecha_parts/mecha_equipment/drill, +/obj/item/mecha_parts/mecha_equipment/drill{ + pixel_y = 10 + }, +/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"QN" = ( +/obj/item/cigbutt/roach, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"QS" = ( +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = 4; + pixel_y = 4; + volume = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"QY" = ( +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"Rb" = ( +/obj/structure/closet/crate{ + icon_state = "scicrate"; + icon_opened = "scicrate_open" + }, +/obj/item/stack/sheet/mineral/gold/fifty, +/obj/item/stack/sheet/mineral/silver/fifty, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Ry" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"RF" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"RM" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/food/drinks/cans/beer{ + list_reagents = list("beer"=0); + pixel_x = 9; + pixel_y = -3 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"RW" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/ruin/space/powered) +"Sb" = ( +/turf/simulated/wall/indestructible/whiteshuttle, +/area/ruin/space/powered) +"Sc" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/gun/spacegun, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"Sd" = ( +/obj/structure/table, +/obj/item/toy/plushie/ipcplushie, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"Sq" = ( +/obj/machinery/light_construct/directional/west, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"Sy" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/yellow, +/obj/item/multitool, +/obj/item/stack/cable_coil, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"SA" = ( +/obj/structure/fans/tiny/invisible, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"SH" = ( +/obj/effect/spawner/window/plastitanium, +/obj/structure/barricade/wooden/crude{ + layer = 3.11 + }, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"SL" = ( +/obj/structure/shuttle/engine/heater{ + anchored = 0; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"SN" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/mecha_wreckage/ripley{ + obj_integrity = 40 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"SV" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"Te" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/hyper, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Tf" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"Tg" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Tl" = ( +/obj/structure/shuttle/engine/heater{ + anchored = 0; + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"Ty" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/bluegrid, +/area/ruin/space/powered) +"TR" = ( +/obj/item/kirbyplants, +/obj/machinery/light_construct/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"TS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"TZ" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light_construct/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Ud" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"Uj" = ( +/obj/machinery/door_control/shutter/north{ + id = "sleft_mech"; + pixel_x = 8 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Uk" = ( +/obj/structure/chair, +/obj/item/cigbutt{ + pixel_y = 10; + pixel_x = 6 + }, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Ul" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"Uo" = ( +/obj/machinery/atmospherics/unary/tank/oxygen_agent_b{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Uu" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"UH" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/item/stock_parts/cell/hyper/empty, +/obj/item/stock_parts/cell/hyper/empty{ + pixel_y = 8; + pixel_x = 6 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"UV" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "sleft_mech" + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"UY" = ( +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/carpet/blue, +/area/ruin/space/powered) +"Vh" = ( +/obj/structure/railing{ + dir = 1; + layer = 3.9 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Vk" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"Vo" = ( +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"VA" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/meele/axe, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"VB" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/cardboard, +/obj/item/reagent_containers/food/snacks/baguette, +/obj/item/reagent_containers/food/snacks/baguette, +/obj/item/reagent_containers/food/snacks/beans, +/obj/item/reagent_containers/food/snacks/beans, +/obj/item/reagent_containers/food/snacks/beans, +/obj/item/reagent_containers/food/snacks/beans, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/snacks/candy/candybar, +/obj/item/reagent_containers/food/snacks/candy/candybar, +/obj/item/reagent_containers/food/snacks/candy/candybar, +/obj/item/reagent_containers/food/snacks/candy/taffy, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"VF" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/electrical{ + pixel_y = 8 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"VL" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"VO" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/ruin/space/powered) +"VQ" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"VR" = ( +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"VY" = ( +/obj/item/circuitboard/atmoscontrol{ + icon_state = "command_broken" + }, +/obj/effect/landmark/burnturf, +/obj/machinery/light_construct/directional/north, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"VZ" = ( +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"Wk" = ( +/obj/structure/table, +/obj/machinery/door_control/shutter{ + pixel_x = -6; + id = "bdoorleft_mech" + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Wp" = ( +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Wu" = ( +/obj/machinery/light_construct/directional/west, +/obj/machinery/atmospherics/portable/scrubber, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"WD" = ( +/obj/structure/closet/crate/secure/weapon{ + req_access_txt = "7" + }, +/obj/item/mecha_parts/mecha_equipment/weapon/honker, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flashbang, +/obj/item/mecha_modkit/voice/nanotrasen, +/obj/item/toy/figure/mech/mauler, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/directional/south, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"WK" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"WM" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 9; + pixel_y = 5 + }, +/obj/item/kitchen/knife{ + pixel_y = 5; + pixel_x = -10 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Xa" = ( +/obj/effect/turf_decal/caution, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"Xy" = ( +/obj/effect/landmark/burnturf, +/obj/machinery/light_construct/directional/north, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Xz" = ( +/obj/effect/turf_decal/caution, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"XE" = ( +/obj/structure/mecha_wreckage/durand{ + obj_integrity = 100 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"XH" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/scavengers/meele, +/turf/simulated/floor/mineral/titanium/blue, +/area/ruin/space/powered) +"Yl" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"Ym" = ( +/obj/structure/chair, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Yn" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/purple, +/area/ruin/space/powered) +"YU" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium/yellow, +/area/ruin/space/powered) +"ZF" = ( +/obj/structure/lattice/catwalk, +/mob/living/simple_animal/hostile/scavengers/gun/spacegun, +/turf/template_noop, +/area/template_noop) +"ZS" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/flask/barflask, +/turf/simulated/floor/carpet/blue, +/area/ruin/space/powered) +"ZT" = ( +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium, +/area/ruin/space/powered) +"ZZ" = ( +/obj/structure/lattice, +/obj/structure/holosign/barrier/atmos, +/turf/template_noop, +/area/template_noop) + +(1,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +"} +(2,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +GP +GP +Sb +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +Sb +PV +PV +PV +PV +PV +Sb +Sb +Sb +Sb +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +"} +(3,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +ZT +ZT +Sb +Vk +Vk +Vk +Vk +Vk +Vk +Vk +Vk +Vk +Kb +Qd +AC +bK +bK +kv +lS +Nn +xe +Kb +Sb +cd +qU +qU +qU +pw +jU +Ao +qU +Ba +qU +qU +qU +pw +jU +Ao +qU +qU +"} +(4,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +Kb +mt +mt +Kb +Sb +Vk +qU +qU +Vk +qU +qU +Vk +qU +Sb +hw +pQ +PF +IG +YU +Pf +lS +Mi +Kb +Kb +qU +qU +qU +qU +kU +ll +zI +qU +qU +qU +qU +qU +qU +ll +zI +qU +qU +"} +(5,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +Kb +Do +ZT +Be +FK +Kb +Sb +PT +PT +Sb +Sb +qU +Vk +qU +Sb +DE +dk +sD +nk +sD +aA +lS +bx +qv +zF +qU +qU +qU +qU +kU +OB +ys +qU +qU +qU +qU +qU +ze +OB +zI +qU +qU +"} +(6,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +kD +sD +sD +nk +nk +nk +Sb +VF +NH +Kb +Sb +Vk +Vk +Vk +Sb +lS +dk +gH +sD +sD +La +lS +yt +qv +zF +qU +qU +qU +qU +qU +OB +ys +qU +ce +ce +ce +qU +ze +Vk +qU +qU +qU +"} +(7,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +sD +Md +sh +HB +HB +LC +Kb +Ae +lf +gU +Kb +PT +PT +PT +Kb +Uj +SV +hW +hW +hW +ol +lS +NF +Kb +Kb +cd +qU +qU +qU +kU +ZF +ys +qU +ce +hM +ce +qU +ys +OB +zI +qU +qU +"} +(8,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +nk +VB +bR +sh +sh +pm +vP +lf +GF +cz +UV +Tf +Tf +yk +UV +Xa +mU +lS +AC +lS +hw +mU +bx +Kb +Kb +qU +qU +qU +qU +Pi +OB +ys +ys +ys +EO +ys +ys +ys +OB +zI +qU +qU +"} +(9,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +sD +vw +sD +sD +sD +hw +vP +lf +Cl +HG +MY +Ud +Ud +Ud +MY +Xa +pQ +YU +Fn +IG +Pf +AC +Kb +Kb +Sb +Sb +Sb +qU +qU +ys +wZ +ys +RW +Cp +zK +Vh +vF +ys +wZ +ys +qU +qU +"} +(10,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +Oh +HB +HB +HB +GF +Ng +Kb +jP +bn +yj +Kb +PT +PT +PT +cJ +Cm +Jr +sD +sD +sD +iK +oL +Kb +LV +Hs +Eb +Vo +cd +qU +ys +rn +hw +bo +GF +GF +Mr +vo +GF +GF +ys +qU +qU +"} +(11,1,1) = {" +qU +lH +Nl +Vk +OB +Sb +Sb +Sb +Sb +qU +Sb +Uu +sh +Md +HB +HB +nk +Sb +sb +lf +Co +Sb +qU +qU +qU +et +lS +Jr +kK +GF +nk +IL +lS +Sb +bw +cZ +Eb +Vo +qU +qU +ys +Ym +hw +Mr +Mr +eY +uI +kO +nx +nx +ys +qU +qU +"} +(12,1,1) = {" +qU +qU +qU +Sb +Sb +Kb +dL +EI +Kb +Sb +Sb +DJ +hw +tE +vq +VZ +sD +Sb +Cz +bn +Pm +Sb +qU +qU +qU +nA +lS +SN +hW +hw +hW +ol +lS +Sb +Kl +tm +Eb +Vo +cd +Ah +ys +Ei +Mr +ua +JZ +Bj +nx +il +nx +QD +ze +qU +qU +"} +(13,1,1) = {" +qU +qU +qU +PT +tf +Iw +oE +Sc +FF +Kb +Kb +iT +Tg +xF +ss +VR +be +Sb +cG +bn +BD +Sb +qU +qU +qU +Kb +Ec +AC +AC +AC +lS +Wk +nV +Kb +fK +oh +Eb +Vo +qU +qU +ys +Ym +eY +ua +Lv +pn +nx +Vo +QD +Vk +Vk +qU +qU +"} +(14,1,1) = {" +qU +qU +qU +PT +Gt +VL +oE +QY +QY +TR +Kb +Kb +qW +Sb +Sb +DG +Kb +Kb +Sb +uU +Sb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Gu +Js +LF +Kb +Kb +Kb +VY +lR +Eb +zF +an +an +ys +Uk +Mr +nj +jq +cg +nx +QD +Vk +Vk +qU +qU +qU +"} +(15,1,1) = {" +qU +qU +qU +PT +Hn +VL +oE +Hn +Qt +oE +PT +Qx +ly +lS +lS +Ju +iU +Kb +lk +lf +PS +Kb +QF +oY +Rb +Kb +Sq +sD +nk +sD +sD +qT +Wu +Kb +lR +Mp +Sb +Kb +hx +ZZ +ys +yy +Hb +Nb +ng +kE +il +Vk +qU +Vk +qU +qU +qU +"} +(16,1,1) = {" +qU +qU +qU +PT +Fx +Ac +oE +Ix +VL +QY +ev +QY +XH +oE +oE +XH +oE +Kb +Gl +lf +VA +wp +lf +lf +WD +Kb +GS +sD +pm +sD +sD +sD +sD +Kc +to +Ry +SA +IK +HQ +GF +wZ +GF +hw +xa +RM +Bj +ys +qU +qU +qU +qU +qU +qU +"} +(17,1,1) = {" +qU +qU +qU +PT +II +ut +oE +Nm +oE +QY +PT +AR +lS +AC +lS +lS +Jq +Kb +Hi +hw +vy +Kb +fk +aK +Fr +Kb +Yl +sD +cK +nk +nk +nk +sP +Kb +iG +wv +Sb +Kb +hx +an +ys +ys +hw +ys +ys +ys +ys +Vk +qU +qU +qU +qU +qU +"} +(18,1,1) = {" +qU +qU +qU +PT +Gt +ut +oE +oE +oE +Bh +Kb +Kb +WK +Sb +Sb +Sb +Kb +Kb +Sb +Yn +Sb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +HU +HU +HU +Kb +Kb +Kb +Xy +Ry +Eb +zF +an +an +ys +uk +hw +Wp +LY +ys +Vo +Vk +qU +qU +qU +qU +qU +"} +(19,1,1) = {" +qU +qU +qU +PT +Sd +Fv +qC +oE +PB +Kb +Kb +vL +lF +Sb +xb +xb +xb +Kb +sw +lf +Te +Sb +qU +qU +qU +Kb +TZ +Lo +lS +lS +kM +bh +FS +Kb +HO +xG +Eb +Vo +cd +Ah +ys +Po +hw +jS +rs +ys +Vo +Vk +Vk +qU +qU +qU +qU +"} +(20,1,1) = {" +qU +qU +qU +Sb +Sb +Kb +Hl +Ja +Kb +Sb +Sb +Ij +JP +WK +sK +sK +Ft +Sb +ob +bn +kR +Sb +qU +qU +qU +nA +AC +ae +XE +hw +IG +yS +lS +Sb +eR +GF +Eb +Vo +qU +Vk +ys +ys +ma +hw +bf +ys +Vk +Vk +qU +qU +qU +qU +qU +"} +(21,1,1) = {" +qU +qt +Nl +Vk +OB +Sb +Sb +Sb +Sb +qU +Sb +hK +Me +Sb +hj +sK +xb +Sb +CF +lf +Sy +Sb +qU +qU +qU +et +AC +Jr +sD +hw +nk +aA +lS +Sb +Lj +AT +Eb +Vo +cd +qU +Vk +CW +vd +yr +QS +wF +QD +qU +qU +qU +qU +qU +qU +"} +(22,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +PT +xY +GF +Sb +Sb +WK +Sb +Sb +vc +Xz +FA +Kb +PT +PT +PT +Kb +Cm +Jr +nk +nk +sD +iK +zM +Kb +UH +AS +Eb +Vo +qU +qU +QD +il +il +hw +il +nx +CC +ze +Vk +qU +qU +qU +qU +"} +(23,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +PT +Fh +lS +Sb +gB +lS +WM +Sb +CZ +wi +cz +Lz +Tf +hw +Tf +eJ +cX +SV +hW +hW +hW +Ul +lS +Kb +Kb +Sb +Sb +Sb +qU +qU +qU +nx +RF +hw +sU +nx +Cw +Vk +Vk +qU +qU +qU +qU +"} +(24,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +Sb +An +Sb +bs +tM +jz +Sb +ro +lf +cz +Dh +Ud +Ud +Ud +wl +Xa +GF +AC +AC +AC +lS +bP +bx +Kb +Kb +cd +qU +Ah +qU +Vk +nx +aH +rU +nc +nx +QD +Vk +ze +qU +qU +qU +qU +"} +(25,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +ym +yU +tv +KH +bs +lS +Sb +ho +lf +qB +Kb +PT +PT +PT +Kb +io +hw +hw +hw +YU +Pf +AC +qA +Kb +Kb +qU +qU +qU +Vk +QD +SH +ir +rZ +BX +CW +VO +QD +QD +qU +qU +qU +qU +"} +(26,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +WK +Sb +Sb +ZS +bs +lS +Kb +GH +lf +Kb +Sb +Vk +Vk +Vk +Sb +lS +Jr +nk +GF +nk +IL +AC +yt +qv +zF +qU +qU +Vk +Vk +Cw +il +eq +hw +KY +il +ze +ze +Vk +qU +qU +qU +qU +"} +(27,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +lS +mN +Kb +tj +UY +cF +Sb +PT +PT +Sb +Sb +qU +Vk +qU +Sb +zy +Jr +sD +sD +sD +tK +lS +bx +qv +zF +qU +qU +qU +Vk +KW +il +il +bF +ys +il +Vk +qU +qU +qU +qU +qU +qU +"} +(28,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +Sb +rJ +Kb +Kb +Sb +Sb +Sb +qU +qU +Vk +qU +qU +Vk +qU +Sb +AC +MN +iP +iP +iP +ol +lS +Qf +Kb +Kb +cd +qU +qU +qU +qU +nx +jx +hw +ys +ys +ys +qU +qU +qU +qU +qU +qU +"} +(29,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Vk +Vk +Vk +Vk +Vk +Sb +ib +lS +VQ +EP +VQ +lS +ib +Ty +Kb +Sb +qU +qU +qU +qU +qU +nx +Qb +Fy +TS +qa +ys +ys +qU +qU +qU +qU +qU +"} +(30,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +Sb +Sb +CK +CK +CK +CK +CK +Sb +Sb +Sb +Sb +qU +qU +qU +qU +qU +il +HJ +wr +hw +wn +Cy +nx +qU +qU +qU +qU +qU +"} +(31,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +il +bC +ov +QN +SL +nx +nx +Vk +qU +qU +qU +qU +"} +(32,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +ys +Uo +Aq +Fu +nx +il +Vk +Vk +qU +qU +qU +qU +"} +(33,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +ys +vv +vv +vv +nx +Ql +Tl +Vk +qU +qU +qU +qU +"} +(34,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +nM +nM +nM +qU +nM +Vk +qU +qU +qU +qU +qU +"} +(35,1,1) = {" +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +qU +"} diff --git a/_maps/map_files220/RandomRuins/SpaceRuins/spacehotel.dmm b/_maps/map_files220/RandomRuins/SpaceRuins/spacehotel.dmm new file mode 100644 index 000000000000..08c335a603c3 --- /dev/null +++ b/_maps/map_files220/RandomRuins/SpaceRuins/spacehotel.dmm @@ -0,0 +1,13129 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/disco, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/bar) +"ad" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/template_noop, +/area/space/nearstation) +"ae" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"ag" = ( +/turf/simulated/floor/carpet/arcade, +/area/ruin/space/spacehotelv1/guestroom2) +"at" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/curtain/black, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"av" = ( +/obj/machinery/conveyor/north/ccw{ + dir = 4; + id = "hotelsdisposal" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"aw" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/candle/eternal{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 9; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/restoraunt2) +"ax" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom1) +"az" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/solar_control/autostart, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"aG" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/economy/vending/hatdispenser, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/entryhallway) +"aK" = ( +/obj/machinery/door/morgue{ + name = "Private Study" + }, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"aM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/cargostorage) +"aN" = ( +/turf/simulated/floor/carpet/cyan, +/area/ruin/space/spacehotelv1/guestroom5) +"aO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small/directional/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"aQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"aU" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"aW" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/restoraunt3) +"aX" = ( +/obj/structure/chair, +/turf/simulated/floor/beach/sand{ + slowdown = 1 + }, +/area/ruin/space/spacehotelv1/bar) +"aZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"bb" = ( +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/kitchen) +"bc" = ( +/turf/simulated/floor/carpet/red, +/area/ruin/space/spacehotelv1/guestroom4) +"bd" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"bh" = ( +/obj/structure/table/wood/fancy, +/obj/item/candle/eternal{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/restoraunt2) +"bi" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"bn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"bs" = ( +/obj/structure/table/reinforced/brass, +/obj/item/clothing/head/soft/rainbow, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/guestroom1) +"bt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"by" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue"; + dir = 1 + }, +/area/ruin/space/spacehotelv1/entryhallway) +"bz" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"bC" = ( +/obj/structure/cable, +/obj/machinery/power/apc/off_station/south, +/obj/structure/dresser, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom5) +"bG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/template_noop, +/area/space/nearstation) +"bI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/chair/wood, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"bK" = ( +/turf/simulated/wall/indestructible, +/area/ruin/space/spacehotelv1/centralhallway) +"bL" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/guestroom3) +"bM" = ( +/obj/structure/chair/sofa/left, +/obj/machinery/light/directional/north, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"bQ" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/grille, +/turf/template_noop, +/area/space/nearstation) +"bZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"cb" = ( +/obj/machinery/power/apc/off_station/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/spacehotelv1/tcomms) +"cd" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"ce" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"cf" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"cj" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom2) +"cn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"cp" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"cr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock{ + id_tag = "gstroom6"; + name = "Appartment 6" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom6) +"cs" = ( +/obj/structure/bed, +/obj/item/bedsheet/syndie, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom5) +"cx" = ( +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"cB" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/machinery/light/small/directional/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"cE" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"cO" = ( +/obj/structure/chair/comfy/lime{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"cT" = ( +/obj/machinery/prize_counter, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"cV" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/off_station/north, +/obj/structure/table/wood/fancy/blue, +/obj/item/bee_briefcase, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/guestroom6) +"cW" = ( +/obj/item/gps/ruin{ + pixel_y = 32; + gpstag = "Twin Nexus Space Hotel" + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue"; + dir = 1 + }, +/area/ruin/space/spacehotelv1/entryhallway) +"db" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/entryhallway) +"dc" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/internals, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/tank/internals/emergency_oxygen/nitrogen, +/obj/item/tank/internals/emergency_oxygen/nitrogen, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/cargostorage) +"de" = ( +/obj/structure/rack, +/obj/random/toolbox, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"df" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"di" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/kitchen_machine/grill, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"dk" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/freezer, +/obj/item/storage/box/monkeycubes, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/cargostorage) +"do" = ( +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/forehallway) +"dr" = ( +/obj/structure/chair/sofa/left, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"du" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"dy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"dA" = ( +/turf/simulated/floor/beach/water{ + slowdown = 3 + }, +/area/ruin/space/spacehotelv1/bar) +"dE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"dG" = ( +/obj/machinery/disposal/deliveryChute, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"dH" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"dJ" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/paper_bin, +/obj/item/pen/multi, +/turf/simulated/floor/carpet/arcade, +/area/ruin/space/spacehotelv1/guestroom2) +"dM" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/ruin/space/spacehotelv1/guestroom2) +"dT" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"dX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"ed" = ( +/obj/machinery/light/directional/north, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/lighter/zippo/black, +/turf/simulated/floor/carpet/arcade, +/area/ruin/space/spacehotelv1/guestroom2) +"ee" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/beach/water{ + slowdown = 3 + }, +/area/ruin/space/spacehotelv1/bar) +"eg" = ( +/obj/structure/table/holotable/wood, +/obj/item/radio/headset, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"ei" = ( +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue"; + dir = 1 + }, +/area/ruin/space/spacehotelv1/entryhallway) +"er" = ( +/obj/structure/disposalpipe/segment/corner{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"ez" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/structure/curtain/black, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"eC" = ( +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Albert" + }, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel/freezer, +/area/ruin/space/spacehotelv1/kitchen) +"eD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"eE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"eF" = ( +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"eH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt2) +"eO" = ( +/obj/structure/chair/wood, +/obj/machinery/light/directional/north, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/restoraunt2) +"eP" = ( +/obj/structure/railing/cap{ + dir = 10 + }, +/obj/machinery/power/apc/off_station/north, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"eW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt1) +"eY" = ( +/obj/machinery/light_switch{ + pixel_y = -24; + dir = 1 + }, +/turf/simulated/floor/carpet/cyan, +/area/ruin/space/spacehotelv1/guestroom5) +"fk" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"fo" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"fp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"fr" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"fx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/economy/vending/sovietsoda, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"fD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"fF" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"fG" = ( +/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/wood/oak, +/area/ruin/space/spacehotelv1/guestroom5) +"fK" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/guestroom2) +"fM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"fN" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"fP" = ( +/obj/machinery/atmospherics/portable/pump, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"fV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom4) +"gb" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"gd" = ( +/obj/structure/table, +/obj/machinery/bottler{ + pixel_y = 2 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"gl" = ( +/obj/structure/bed, +/obj/item/bedsheet/fluff/hugosheet, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom2) +"gp" = ( +/obj/structure/curtain/open/shower, +/obj/effect/turf_decal/miscellaneous/plumbing{ + dir = 1 + }, +/obj/machinery/shower{ + pixel_y = 20 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom6) +"gq" = ( +/obj/structure/table/wood/poker, +/obj/item/dice/d6, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"gw" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/green{ + dir = 4 + }, +/obj/item/toy/plushie/coffee_fox, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom6) +"gx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"gA" = ( +/obj/structure/closet/emcloset, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"gC" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forehallway) +"gF" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"gG" = ( +/obj/item/storage/box/monkeycubes, +/turf/simulated/floor/plasteel/freezer, +/area/ruin/space/spacehotelv1/kitchen) +"gO" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"gQ" = ( +/turf/simulated/floor/plasteel/freezer, +/area/ruin/space/spacehotelv1/kitchen) +"gT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/carpet/cyan, +/area/ruin/space/spacehotelv1/guestroom5) +"gU" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"ha" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"hi" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"hk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"hm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"hn" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/light/directional/north, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"hs" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"ht" = ( +/obj/structure/sink/directional/west, +/obj/item/mounted/mirror{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom2) +"hw" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/template_noop, +/area/space/nearstation) +"hy" = ( +/obj/structure/closet/emcloset, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"hD" = ( +/obj/effect/turf_decal/bot, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/cargostorage) +"hE" = ( +/obj/machinery/power/solar, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/space/nearstation) +"hG" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"hH" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"hI" = ( +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"hL" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/paper_bin, +/obj/item/pen/multi, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom4) +"hP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"hR" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/wiz{ + dir = 4 + }, +/obj/item/toy/plushie/corgi, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom4) +"hT" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"hW" = ( +/obj/structure/filingcabinet, +/obj/machinery/light/directional/west, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"if" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"ig" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/soap, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom2) +"ii" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt1) +"iq" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"is" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"it" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/safe/floor, +/obj/item/camera_bug, +/obj/item/flash, +/turf/simulated/floor/greengrid, +/area/ruin/space/spacehotelv1/reception) +"ix" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/item/toy/plushie/blue_fox, +/turf/simulated/floor/carpet/blue, +/area/ruin/space/spacehotelv1/guestroom3) +"iy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"iB" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"iG" = ( +/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/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"iI" = ( +/obj/structure/chair/comfy, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ruin/space/spacehotelv1/centralhallway) +"iU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"jb" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/storage/firstaid/aquatic_kit/full, +/obj/item/fish_eggs/salmon, +/obj/item/fish_eggs/salmon, +/obj/item/fish_eggs/shrimp, +/obj/item/fish_eggs/shrimp, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"jc" = ( +/obj/structure/closet, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/under/rank/civilian/barber, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/reception) +"jd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/coatrack, +/turf/simulated/floor/carpet/red, +/area/ruin/space/spacehotelv1/guestroom1) +"je" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"jg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue"; + dir = 1 + }, +/area/ruin/space/spacehotelv1/entryhallway) +"jj" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"jk" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/beer{ + dir = 4; + pixel_y = 5; + pixel_x = 3 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"jr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"jw" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"jx" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"jA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt2) +"jC" = ( +/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/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"jE" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"jJ" = ( +/obj/machinery/door/airlock/bathroom{ + id_tag = "restoom1" + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"jK" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom1) +"jL" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt2) +"jS" = ( +/mob/living/simple_animal/bot/medbot/adv{ + stationary_mode = 1; + name = "Accidents Happen" + }, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/reception) +"jW" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/forehallway) +"jX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"jZ" = ( +/obj/machinery/door/airlock, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/janitor) +"ke" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/soda{ + dir = 4; + pixel_y = 3; + pixel_x = 3 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"kg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"ki" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"kl" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/off_station/south, +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/restoraunt2) +"ko" = ( +/obj/structure/dresser, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/ruin/space/spacehotelv1/guestroom3) +"kp" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"ky" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/bar) +"kB" = ( +/obj/structure/bookcase/random, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"kC" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/guestroom5) +"kD" = ( +/obj/structure/closet/crate/can, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"kG" = ( +/obj/structure/toilet, +/obj/machinery/door_control/bolt_control/east{ + id = "restoom1" + }, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"kR" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/guestroom4) +"kS" = ( +/obj/structure/chair/sofa/left, +/obj/machinery/door_control/bolt_control/north{ + id = "gstroom5"; + pixel_x = 8 + }, +/turf/simulated/floor/carpet/cyan, +/area/ruin/space/spacehotelv1/guestroom5) +"kT" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"kV" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/restoraunt2) +"kX" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/button/windowtint/north{ + id = "restoom2_tint"; + pixel_x = -8 + }, +/obj/machinery/door_control/bolt_control/north{ + id = "restoom2"; + pixel_x = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"la" = ( +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/guestroom6) +"lb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"le" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/guestroom6) +"lf" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"lh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"lj" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/economy/vending/dinnerware, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"ll" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"lo" = ( +/obj/structure/lattice/catwalk, +/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/template_noop, +/area/space/nearstation) +"lr" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"lt" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/off_station/south, +/obj/structure/table/reinforced/brass, +/obj/item/paper_bin, +/obj/item/pen/multi, +/turf/simulated/floor/carpet/red, +/area/ruin/space/spacehotelv1/guestroom1) +"lv" = ( +/obj/structure/musician/piano{ + icon_state = "piano" + }, +/obj/item/candle/eternal{ + pixel_y = 6; + pixel_x = 8 + }, +/obj/item/candle/eternal{ + pixel_y = 4; + pixel_x = 3 + }, +/obj/item/trash/candle{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"lD" = ( +/obj/structure/table/wood/fancy/blue, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/reagent_containers/food/drinks/mug, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/guestroom6) +"lS" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"lT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_containers/food/snacks/grown/meatwheat, +/obj/item/reagent_containers/food/snacks/grown/meatwheat, +/obj/item/reagent_containers/food/snacks/grown/meatwheat, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/whitebeet, +/obj/item/reagent_containers/food/snacks/grown/whitebeet, +/obj/item/reagent_containers/food/snacks/grown/whitebeet, +/obj/item/reagent_containers/food/snacks/grown/redbeet, +/obj/item/reagent_containers/food/snacks/grown/redbeet, +/obj/item/reagent_containers/food/snacks/grown/redbeet, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/rice, +/obj/item/reagent_containers/food/snacks/grown/rice, +/obj/item/reagent_containers/food/snacks/grown/rice, +/obj/item/reagent_containers/food/snacks/grown/rice, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/soymilk, +/obj/item/reagent_containers/food/condiment/soymilk, +/obj/item/reagent_containers/food/condiment/soymilk, +/turf/simulated/floor/plasteel/freezer, +/area/ruin/space/spacehotelv1/kitchen) +"lU" = ( +/obj/machinery/door/airlock{ + id_tag = "gstroom3"; + name = "Appartment 3" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom3) +"mb" = ( +/obj/structure/table/holotable/wood, +/obj/item/instrument/saxophone, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"me" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"mf" = ( +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom4) +"mg" = ( +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/bar) +"mo" = ( +/obj/machinery/smartfridge/drinks, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"ms" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/off_station/south, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"mt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/curtain/black, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"mu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/red, +/area/ruin/space/spacehotelv1/guestroom4) +"mv" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue"; + dir = 1 + }, +/area/ruin/space/spacehotelv1/entryhallway) +"mw" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/simulated/floor/beach/water{ + slowdown = 3 + }, +/area/ruin/space/spacehotelv1/bar) +"mA" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"mC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"mE" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/barber) +"mM" = ( +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"mO" = ( +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"mQ" = ( +/obj/machinery/economy/vending/autodrobe, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"mR" = ( +/obj/machinery/door/airlock/external{ + id_tag = "ext_eva_door2"; + locked = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"mT" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/beer{ + dir = 4; + pixel_y = 5; + pixel_x = 3 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"mX" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/door_control/bolt_control/north{ + id = "ext_eva_door2"; + pixel_x = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"nd" = ( +/obj/structure/chair/stool/bar{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"ni" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/reagent_containers/food/drinks/mug, +/turf/simulated/floor/carpet/blue, +/area/ruin/space/spacehotelv1/guestroom3) +"nj" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"nl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt2) +"nn" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"no" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/guestroom5) +"ns" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen/multi, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom3) +"nu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"nx" = ( +/obj/structure/table/reinforced/brass, +/obj/item/flashlight/lamp/bananalamp, +/obj/machinery/door_control/bolt_control/south{ + id = "gstroom1"; + pixel_x = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom1) +"ny" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/sofa/right, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"nC" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/guestroom3) +"nH" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"nI" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/engi2) +"nK" = ( +/obj/structure/chair/comfy/beige, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"nP" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"nQ" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/guestroom6) +"nW" = ( +/obj/structure/closet/athletic_mixed, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"nX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"oa" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 16 + }, +/obj/item/candle/eternal{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"ob" = ( +/obj/machinery/door/airlock/public/glass, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/centralhallway) +"oj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/vacuum{ + pixel_y = 32 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"ok" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/guestroom6) +"oo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/soap, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom4) +"op" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/off_station/north, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"or" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"os" = ( +/obj/machinery/door/airlock{ + id_tag = "gstroom1"; + name = "Appartment 1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom1) +"ot" = ( +/obj/structure/sign/vacuum{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"ov" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"oD" = ( +/obj/machinery/light_switch{ + pixel_y = -24; + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/ruin/space/spacehotelv1/guestroom3) +"oF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"oL" = ( +/obj/structure/sink/directional/north, +/obj/item/holder/mouse{ + name = "Nicolas" + }, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/janitor) +"oQ" = ( +/obj/structure/table/holotable/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"oR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"oU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"oY" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"pd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"pg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt2) +"pj" = ( +/obj/item/holder/mouse{ + name = "Elliot" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"pq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"ps" = ( +/obj/machinery/power/smes{ + charge = 3000000 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/sign/electricshock{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"pv" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/centralhallway) +"px" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom5) +"py" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom4) +"pB" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 1 + }, +/obj/machinery/door/window/reinforced/normal, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"pC" = ( +/obj/structure/railing/cap, +/obj/structure/railing/cap{ + dir = 5 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"pD" = ( +/obj/structure/chair/sofa{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"pE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"pH" = ( +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"pJ" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"pL" = ( +/obj/structure/chair/sofa/left, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/guestroom1) +"pM" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"pN" = ( +/obj/structure/table/wood/fancy, +/obj/item/flashlight/lamp/green/off, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom4) +"pR" = ( +/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/plating, +/area/ruin/space/spacehotelv1/engi1) +"pS" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/centralhallway) +"pU" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/paicard, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom2) +"qg" = ( +/obj/structure/chair/sofa/right, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/guestroom1) +"ql" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/soda{ + dir = 4; + pixel_y = 3; + pixel_x = 3 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"qn" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/candle/eternal{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"qq" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/entryhallway) +"qt" = ( +/obj/structure/AIcore, +/turf/simulated/floor/greengrid/airless{ + icon_state = "bcircuit" + }, +/area/ruin/space/spacehotelv1/tcomms) +"qu" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"qA" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/candle/eternal{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 9; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"qK" = ( +/obj/structure/table/reinforced/brass, +/obj/item/flashlight/lamp/green/off, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom5) +"qN" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/restoraunt2) +"qP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"qS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"qU" = ( +/obj/machinery/door_control/bolt_control/north{ + id = "gstroom4"; + pixel_x = -8 + }, +/turf/simulated/floor/carpet/red, +/area/ruin/space/spacehotelv1/guestroom4) +"qV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"qX" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/beach/water{ + slowdown = 3 + }, +/area/ruin/space/spacehotelv1/bar) +"rd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"rh" = ( +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"ri" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/economy/vending/shoedispenser, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/entryhallway) +"rj" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"rm" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forehallway) +"rn" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"rp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"rv" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/guestroom4) +"rw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt2) +"ry" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/cargostorage) +"rA" = ( +/turf/simulated/floor/plasteel/stairs, +/area/ruin/space/spacehotelv1/restoraunt3) +"rC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"rD" = ( +/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/plating, +/area/ruin/space/spacehotelv1/engi1) +"rI" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/off_station/west, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"rM" = ( +/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" + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"rN" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "hotel_cargo2" + }, +/obj/machinery/door_control/shutter/east{ + id = "hotel_cargo2"; + name = "Storage Doors" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/cargostorage) +"rT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"rX" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt1) +"sq" = ( +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"sy" = ( +/mob/living/simple_animal/hostile/retaliate/carp/koi/honk, +/turf/simulated/floor/beach/water{ + slowdown = 3 + }, +/area/ruin/space/spacehotelv1/bar) +"sC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"sF" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"sH" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"sM" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"sQ" = ( +/obj/machinery/economy/vending/cola/free, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/entryhallway) +"sV" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"sX" = ( +/obj/machinery/economy/vending/cart, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"tc" = ( +/obj/machinery/door/airlock/external{ + id_tag = "ext_shuttle_door"; + locked = 1 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"te" = ( +/mob/living/simple_animal/hostile/alien/maid, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"tg" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"tj" = ( +/obj/structure/disposalpipe/segment/corner{ + dir = 2 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"tk" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_creep, +/area/ruin/space/spacehotelv1/restoraunt2) +"tl" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/item/soap, +/obj/item/bikehorn/rubberducky, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom3) +"tm" = ( +/obj/effect/spawner/random_spawners/cobweb_left_rare, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/rack, +/obj/random/tool, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"tn" = ( +/obj/structure/table/wood/poker, +/obj/item/deck/cards/black, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"to" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"tq" = ( +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"tu" = ( +/obj/machinery/economy/vending/snack/free, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/entryhallway) +"tB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"tC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"tD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"tE" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/reinforced/normal{ + dir = 8 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/peppermill, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"tI" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/space/nearstation) +"tJ" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/mime{ + dir = 4 + }, +/obj/item/toy/plushie/tuxedo_cat, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom1) +"tO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"tQ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"tR" = ( +/obj/structure/sink/directional/east, +/obj/item/mounted/mirror{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom6) +"tV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"tX" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/computer/monitor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"tY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/economy/vending/snack/free, +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"tZ" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom3) +"ub" = ( +/obj/structure/chair/wood, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/restoraunt2) +"uc" = ( +/obj/structure/table/wood/poker, +/obj/item/deck/holder, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"uj" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"uq" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"uu" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/meatballspaghetti, +/obj/item/kitchen/utensil/fork, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"uw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt1) +"uA" = ( +/obj/structure/table/reinforced, +/obj/item/storage/bag/tray{ + pixel_y = 6 + }, +/obj/item/kitchen/knife{ + pixel_y = 6 + }, +/obj/item/kitchen/rollingpin, +/obj/item/reagent_containers/food/condiment/flour, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"uB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"uD" = ( +/turf/simulated/floor/carpet/blue, +/area/ruin/space/spacehotelv1/guestroom3) +"uF" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"uI" = ( +/obj/structure/cable, +/obj/machinery/power/apc/off_station/south, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"uM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt1) +"uN" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/siding/wood/end, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/entryhallway) +"uP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"uR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom6) +"uS" = ( +/obj/machinery/door/airlock/survival_pod, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/cargostorage) +"uZ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"va" = ( +/obj/machinery/mass_driver{ + dir = 4; + id_tag = "hotelstrash" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"vf" = ( +/obj/structure/dresser, +/turf/simulated/floor/carpet/arcade, +/area/ruin/space/spacehotelv1/guestroom2) +"vg" = ( +/obj/structure/table/holotable/wood, +/obj/item/radio/headset, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"vi" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/crown, +/obj/item/clothing/under/dress/redeveninggown, +/obj/item/clothing/under/suit/black, +/turf/simulated/floor/carpet/red, +/area/ruin/space/spacehotelv1/guestroom4) +"vk" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"vp" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"vu" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/candle/eternal{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/restoraunt2) +"vw" = ( +/obj/machinery/economy/vending/cigarette/free, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"vB" = ( +/obj/structure/sink/directional/west, +/obj/item/mounted/mirror{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"vF" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"vI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/template_noop, +/area/space/nearstation) +"vJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"vK" = ( +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom5) +"vL" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "hotel_cargo3" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/cargostorage) +"vQ" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/cargostorage) +"vU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"vV" = ( +/obj/structure/sink/directional/east, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"wc" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"we" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"wf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/wood/fancy/red, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 16 + }, +/obj/item/candle/eternal{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"wg" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/off_station/east, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/ruin/space/spacehotelv1/barber) +"wj" = ( +/obj/structure/table/holotable/wood, +/obj/machinery/computer/library, +/obj/machinery/door/window/reinforced/normal{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"wl" = ( +/obj/structure/chair/sofa/right, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"wo" = ( +/obj/structure/table/glass, +/obj/item/storage/fancy/donut_box, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/reception) +"wB" = ( +/obj/item/beach_ball, +/turf/simulated/floor/beach/sand{ + slowdown = 1 + }, +/area/ruin/space/spacehotelv1/bar) +"wC" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/glass/rag, +/obj/item/book/manual/barman_recipes, +/obj/item/lighter/zippo/engraved, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"wD" = ( +/obj/machinery/computer/arcade{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"wE" = ( +/obj/machinery/economy/vending/sustenance, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"wF" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"wH" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"wI" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/wood/fancy, +/turf/simulated/floor/carpet/red, +/area/ruin/space/spacehotelv1/guestroom4) +"wK" = ( +/obj/structure/rack, +/obj/random/tool, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"wL" = ( +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom3) +"wM" = ( +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom1) +"wO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment/corner{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"wS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stack/sheet/metal/fifty, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/cargostorage) +"wU" = ( +/obj/structure/janitorialcart, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"wZ" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/suit/victsuit/red, +/obj/item/clothing/under/dress/victdress/red, +/obj/item/clothing/under/dress/victdress, +/obj/item/clothing/under/suit/victsuit, +/obj/item/gun/projectile/revolver/doublebarrel/improvised/cane, +/turf/simulated/floor/carpet/cyan, +/area/ruin/space/spacehotelv1/guestroom5) +"xb" = ( +/obj/machinery/door/airlock{ + id_tag = "gstroom2"; + name = "Appartment 2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom2) +"xf" = ( +/obj/structure/table/holotable/wood, +/obj/item/instrument/violin, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"xg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom3) +"xl" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"xm" = ( +/obj/machinery/door/poddoor{ + id_tag = "hotelstrash" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"xn" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/guestroom4) +"xp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt2) +"xr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"xs" = ( +/obj/machinery/economy/arcade/claw, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"xt" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ruin/space/spacehotelv1/centralhallway) +"xw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"xB" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/beach/sand{ + slowdown = 1 + }, +/area/ruin/space/spacehotelv1/bar) +"xF" = ( +/obj/machinery/power/solar, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/space/nearstation) +"xJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"xK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/template_noop, +/area/space/nearstation) +"xN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"xO" = ( +/obj/machinery/door/airlock/engineering, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"xQ" = ( +/obj/structure/table/wood/poker, +/obj/item/ashtray/bronze, +/obj/item/clothing/mask/cigarette/cigar, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"xT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"xU" = ( +/obj/machinery/conveyor/north/ccw{ + dir = 4; + id = "hotelsdisposal" + }, +/obj/machinery/recycler, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"xY" = ( +/obj/structure/chair/comfy/lime{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"yc" = ( +/obj/machinery/light_switch{ + pixel_y = -24; + dir = 1 + }, +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"yf" = ( +/obj/machinery/tcomms/relay/ruskie{ + network_id = "TWIN-NEXUS HOTEL" + }, +/turf/simulated/floor/greengrid/airless{ + icon_state = "bcircuit" + }, +/area/ruin/space/spacehotelv1/tcomms) +"yl" = ( +/obj/structure/closet/crate/can, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"yu" = ( +/obj/structure/closet/crate/can, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ruin/space/spacehotelv1/centralhallway) +"yz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"yD" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/off_station/west, +/obj/structure/disposalpipe/segment/corner{ + dir = 1 + }, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"yF" = ( +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"yG" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "hotel_cargo2" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/cargostorage) +"yI" = ( +/obj/machinery/cooker/deepfryer, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"yN" = ( +/obj/machinery/door_control/bolt_control/south{ + id = "ext_shuttle_door"; + pixel_x = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"yP" = ( +/obj/structure/computerframe{ + dir = 1 + }, +/turf/simulated/floor/greengrid/airless{ + icon_state = "bcircuit" + }, +/area/ruin/space/spacehotelv1/tcomms) +"yT" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_creep, +/area/ruin/space/spacehotelv1/restoraunt1) +"yV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/reinforced/normal{ + dir = 8 + }, +/obj/machinery/kitchen_machine/microwave{ + pixel_y = 5 + }, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"zb" = ( +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/cargostorage) +"zc" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/guestroom6) +"zg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt2) +"zh" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/guestroom6) +"zi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_y = -1; + pixel_x = -9 + }, +/obj/item/reagent_containers/food/condiment/mushroom_sauce{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/garlic_sauce{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"zm" = ( +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/restoraunt2) +"zq" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/economy/vending/suitdispenser, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/entryhallway) +"zt" = ( +/obj/machinery/chem_master/condimaster, +/obj/machinery/door/window/reinforced/normal{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"zu" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"zv" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/machinery/door_control/bolt_control/south{ + id = "gstroom3"; + pixel_x = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom3) +"zx" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/brute, +/obj/item/reagent_containers/food/pill/patch/silver_sulf, +/obj/item/reagent_containers/food/pill/patch/silver_sulf{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"zy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"zA" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/reception) +"zB" = ( +/mob/living/simple_animal/crab, +/turf/simulated/floor/beach/coastline_t{ + slowdown = 2 + }, +/area/ruin/space/spacehotelv1/bar) +"zD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"zG" = ( +/obj/structure/table/wood/poker, +/obj/item/deck/cards/tiny/doublecards, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"zH" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/entryhallway) +"zJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt2) +"zM" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"zN" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/conveyor_switch/oneway{ + id = "hotelsdisposal" + }, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"zR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"zU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"zZ" = ( +/obj/machinery/power/solar, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/space/nearstation) +"Ac" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"Ad" = ( +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"Af" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt1) +"Aj" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"Ak" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"Ap" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/cyan, +/area/ruin/space/spacehotelv1/guestroom5) +"Aq" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/restoraunt1) +"Ar" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/template_noop, +/area/space/nearstation) +"AD" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_creep, +/area/ruin/space/spacehotelv1/reception) +"AH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment/corner{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"AK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"AN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"AP" = ( +/obj/structure/closet/crate/can, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"AT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"AZ" = ( +/obj/machinery/door/airlock{ + name = "Appartment 4"; + id_tag = "gstroom4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom4) +"Bb" = ( +/mob/living/simple_animal/hostile/retaliate/carp/koi, +/turf/simulated/floor/beach/water{ + slowdown = 3 + }, +/area/ruin/space/spacehotelv1/bar) +"Bd" = ( +/obj/machinery/power/solar, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/space/nearstation) +"Bf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"Bi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/economy/vending/cola/free, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"Bj" = ( +/obj/structure/coatrack, +/obj/machinery/light/directional/north, +/turf/simulated/floor/carpet/blue, +/area/ruin/space/spacehotelv1/guestroom3) +"Bn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/machinery/processor{ + pixel_y = 10 + }, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"Bq" = ( +/obj/machinery/gibber, +/turf/simulated/floor/plasteel/freezer, +/area/ruin/space/spacehotelv1/kitchen) +"Bs" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"By" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"Bz" = ( +/obj/structure/closet/athletic_mixed, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"BG" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"BI" = ( +/obj/machinery/economy/vending/sovietsoda, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ruin/space/spacehotelv1/centralhallway) +"BJ" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"BN" = ( +/obj/structure/bed, +/obj/item/bedsheet/rainbow, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom2) +"BV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"BW" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"BY" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"Cg" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/plasteel/freezer, +/area/ruin/space/spacehotelv1/kitchen) +"Ch" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/ruin/space/spacehotelv1/barber) +"Cj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt2) +"Ck" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "hotel_cargo3" + }, +/obj/machinery/door_control/shutter/south{ + id = "hotel_cargo3"; + name = "Storage Doors" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/cargostorage) +"Cl" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/yellow{ + dir = 1 + }, +/obj/item/toy/plushie/girly_corgi, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom4) +"Cn" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"Cq" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/turf_decal/miscellaneous/plumbing, +/obj/item/bikehorn/rubberducky, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom1) +"Cv" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"Cy" = ( +/obj/machinery/economy/vending/cigarette/free, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"Cz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"CC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/template_noop, +/area/space/nearstation) +"CH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/spotlight/yellow, +/turf/template_noop, +/area/space/nearstation) +"CM" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"CO" = ( +/obj/structure/table/wood/poker, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"Da" = ( +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"Dh" = ( +/obj/machinery/door/airlock, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"Dj" = ( +/obj/structure/dresser, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom1) +"Dk" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"Dl" = ( +/obj/machinery/autolathe, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/cargostorage) +"Dv" = ( +/obj/machinery/economy/vending/clothing, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"Dw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"Dx" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/yellow/power, +/obj/random/toolbox, +/obj/random/tool, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"Dy" = ( +/obj/structure/chair, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"DA" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"DD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"DE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"DF" = ( +/obj/structure/table/holotable/wood, +/obj/item/paper/pamphlet/deltainfo{ + name = "Hotel pamphlet"; + info = "
The Twin Nexus Hotel

A place of Sanctuary


Welcome to The Twin-Nexus Hotel, \[insert name here]! The loyal staff strive to their best effort to cater for the best possible experience for all space(wo)men! If you have any questions or comments, please ask one of our on-board staff for more information.
" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"DH" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/template_noop, +/area/space/nearstation) +"DJ" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/arrows, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"DK" = ( +/obj/structure/rack, +/turf/simulated/floor/beach/sand{ + slowdown = 1 + }, +/area/ruin/space/spacehotelv1/bar) +"DP" = ( +/obj/machinery/economy/vending/dinnerware, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"DR" = ( +/obj/structure/sink/directional/east, +/obj/item/mounted/mirror{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom4) +"DV" = ( +/obj/structure/disposalpipe/segment/corner{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"DW" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/off_station/north, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom3) +"DY" = ( +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"Ec" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"Ef" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/cyan, +/area/ruin/space/spacehotelv1/guestroom5) +"Eh" = ( +/obj/machinery/door/airlock/external{ + id_tag = "ext_eva_door"; + locked = 1 + }, +/obj/structure/fans/tiny, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"Ek" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"En" = ( +/obj/machinery/driver_button{ + pixel_x = 24; + name = "Push me"; + id_tag = "hotelstrash" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"Es" = ( +/turf/simulated/wall/r_wall, +/area/ruin/space/spacehotelv1/tcomms) +"Eu" = ( +/obj/structure/table/glass, +/obj/item/cane, +/obj/item/lighter/zippo, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom3) +"Ev" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/flashlight/lamp/green/off, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom6) +"Ez" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom2) +"EA" = ( +/obj/structure/flora/tree/palm, +/turf/simulated/floor/beach/sand{ + slowdown = 1 + }, +/area/ruin/space/spacehotelv1/bar) +"EB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/ruin/space/spacehotelv1/barber) +"ED" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"EG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"EV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/dock_marker, +/turf/template_noop, +/area/space/nearstation) +"EW" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/guestroom5) +"Fa" = ( +/obj/machinery/computer, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/reception) +"Fb" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/miscellaneous/plumbing{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"Fe" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/template_noop, +/area/space/nearstation) +"Fh" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"Fi" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/template_noop, +/area/space/nearstation) +"Fj" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/kitty/mouse, +/obj/item/clothing/head/beret, +/obj/item/clothing/under/costume/kilt, +/turf/simulated/floor/carpet/red, +/area/ruin/space/spacehotelv1/guestroom1) +"Fk" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"Fl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/holotable/wood, +/obj/item/flashlight/lamp/green/off, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"Fm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"Fo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/box/lights/mixed, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/cargostorage) +"Fr" = ( +/obj/structure/table/wood/poker, +/obj/item/deck/cards, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"Fv" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"Fw" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/blacktango, +/obj/item/clothing/under/suit/checkered, +/obj/item/clothing/under/suit/female, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/guestroom6) +"Fx" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"Fy" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom2) +"Fz" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"FD" = ( +/turf/simulated/floor/beach/coastline_t{ + slowdown = 2 + }, +/area/ruin/space/spacehotelv1/bar) +"FK" = ( +/turf/simulated/floor/beach/sand{ + slowdown = 1 + }, +/area/ruin/space/spacehotelv1/bar) +"FL" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/suit/burgundy, +/obj/item/clothing/under/dress/wedding/bride_red, +/turf/simulated/floor/carpet/arcade, +/area/ruin/space/spacehotelv1/guestroom2) +"FN" = ( +/obj/machinery/light/directional/north, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue"; + dir = 1 + }, +/area/ruin/space/spacehotelv1/entryhallway) +"FP" = ( +/obj/structure/cable, +/obj/machinery/power/apc/off_station/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/cargostorage) +"FR" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced/brass, +/obj/item/reagent_containers/food/drinks/mug, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/guestroom1) +"FS" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"FU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small/directional/east, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"FV" = ( +/obj/structure/cable, +/obj/machinery/power/solar_control/autostart{ + dir = 1 + }, +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"FX" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/cargostorage) +"Gb" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/sign/vacuum{ + pixel_y = -32 + }, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"Gd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"Gf" = ( +/obj/machinery/light/directional/west, +/obj/machinery/dye_generator, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/ruin/space/spacehotelv1/barber) +"Gh" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/curtain/black, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"Gi" = ( +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"Gj" = ( +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom2) +"Gl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/economy/vending/coffee/free, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"Gm" = ( +/obj/machinery/suit_storage_unit/engine, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"Gs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"Gv" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom3) +"Gw" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/plasteel/freezer, +/area/ruin/space/spacehotelv1/kitchen) +"Gx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"Gy" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"Gz" = ( +/obj/structure/table/wood/fancy, +/obj/item/paicard, +/turf/simulated/floor/carpet/red, +/area/ruin/space/spacehotelv1/guestroom4) +"GA" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_creep, +/area/ruin/space/spacehotelv1/forehallway) +"GB" = ( +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"GJ" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/restoraunt3) +"GL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/template_noop, +/area/space/nearstation) +"GM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"GP" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/browntrenchcoat, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/head/kitty, +/turf/simulated/floor/carpet/blue, +/area/ruin/space/spacehotelv1/guestroom3) +"GV" = ( +/obj/structure/sink/directional/west, +/obj/machinery/firealarm/directional/north, +/obj/item/mounted/mirror{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"GZ" = ( +/obj/structure/table/holotable/wood, +/obj/item/paper/pamphlet/deltainfo{ + name = "Hotel pamphlet"; + info = "
The Twin Nexus Hotel

A place of Sanctuary


Welcome to The Twin-Nexus Hotel, \[insert name here]! The loyal staff strive to their best effort to cater for the best possible experience for all space(wo)men! If you have any questions or comments, please ask one of our on-board staff for more information.
" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"Hb" = ( +/obj/machinery/door/airlock/freezer, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"Hd" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkblue"; + dir = 1 + }, +/area/ruin/space/spacehotelv1/entryhallway) +"Hj" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"Ho" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"Hr" = ( +/obj/machinery/teleport/perma, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"Hx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/crate/can, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"HA" = ( +/obj/structure/table, +/obj/structure/sign/vacuum{ + pixel_x = 32 + }, +/obj/random/toolbox, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"HB" = ( +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt1) +"HL" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/machinery/recharge_station, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"HM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"HP" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"HU" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/guestroom1) +"HX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"HY" = ( +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"Ib" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/bar) +"If" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_creep, +/area/ruin/space/spacehotelv1/entryhallway) +"Ig" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"Ii" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom5) +"Ik" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/wood/fancy, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen/multi, +/turf/simulated/floor/carpet/cyan, +/area/ruin/space/spacehotelv1/guestroom5) +"Iu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small/directional/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"Iv" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom5) +"IA" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"IB" = ( +/obj/structure/rack, +/obj/random/tool, +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"IE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"IK" = ( +/obj/structure/chair/barber{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/ruin/space/spacehotelv1/barber) +"IQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/kirbyplants, +/obj/machinery/light/directional/north, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"IT" = ( +/obj/structure/table, +/obj/item/mounted/mirror{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/ruin/space/spacehotelv1/barber) +"IW" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3; + pixel_y = 16 + }, +/obj/item/candle/eternal{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"IX" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom6) +"IY" = ( +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom6) +"IZ" = ( +/turf/template_noop, +/area/template_noop) +"Ja" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"Je" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"Jj" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/cargostorage) +"Jn" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/item/toy/plushie/crimson_fox, +/turf/simulated/floor/carpet/blue, +/area/ruin/space/spacehotelv1/guestroom3) +"Jp" = ( +/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/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"Ju" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt2) +"Jy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/spotlight/jade, +/turf/template_noop, +/area/space/nearstation) +"JE" = ( +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"JN" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/guestroom1) +"JO" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"JR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"JS" = ( +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"JT" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/candle/eternal{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/restoraunt2) +"JV" = ( +/turf/simulated/wall/indestructible, +/area/ruin/space/spacehotelv1/bar) +"JW" = ( +/turf/simulated/floor/plating/airless, +/area/ruin/space/spacehotelv1/tcomms) +"JZ" = ( +/obj/structure/table/holotable/wood, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/obj/item/ashtray/bronze{ + pixel_y = -2; + pixel_x = -6 + }, +/obj/item/storage/fancy/cigarettes{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"Ka" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"Kb" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"Kh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"Ki" = ( +/obj/structure/cable, +/obj/machinery/power/apc/off_station/south, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/entryhallway) +"Ko" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"Kt" = ( +/obj/structure/chair/comfy/beige, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"Kz" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/space/nearstation) +"KC" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"KD" = ( +/obj/structure/table/wood/fancy, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/paicard, +/obj/machinery/light/directional/south, +/turf/simulated/floor/carpet/cyan, +/area/ruin/space/spacehotelv1/guestroom5) +"KF" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/simulated/floor/plating/airless, +/area/ruin/space/spacehotelv1/tcomms) +"KG" = ( +/obj/machinery/light/directional/south, +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"KJ" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/guestroom2) +"KQ" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/clown{ + dir = 4 + }, +/obj/item/toy/plushie/orange_cat, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom1) +"KR" = ( +/obj/structure/closet/firecloset, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"KU" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"KX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"KY" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "restoom2_tint" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/entryhallway) +"KZ" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"Lc" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/turf_decal/miscellaneous/plumbing, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom3) +"Le" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/arrows, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"Lg" = ( +/obj/machinery/power/solar, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/space/nearstation) +"Lj" = ( +/obj/machinery/fishtank/wall, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/reception) +"Lk" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forehallway) +"Ll" = ( +/obj/structure/curtain/open/shower, +/obj/effect/turf_decal/miscellaneous/plumbing{ + dir = 1 + }, +/obj/machinery/shower{ + pixel_y = 20 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom4) +"Lm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"Lq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/light/directional/north, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"Lr" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"Ls" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"Lv" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/off_station/south, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/reception) +"Lw" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"Ly" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"LC" = ( +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"LF" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/janitor) +"LH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt1) +"LI" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"LN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"LP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"LQ" = ( +/obj/structure/railing/cap{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"LU" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/reception) +"LY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"Ma" = ( +/obj/structure/table/holotable/wood, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/ashtray/bronze, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"Mb" = ( +/obj/machinery/light_switch{ + pixel_y = -24; + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom4) +"Mg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/template_noop, +/area/space/nearstation) +"Mh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/template_noop, +/area/space/nearstation) +"Mk" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/entryhallway) +"Mo" = ( +/obj/structure/table/holotable/wood, +/obj/item/storage/fancy/cigarettes/cigpack_robust{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/ashtray/bronze, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"Mr" = ( +/obj/structure/coatrack, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom5) +"Ms" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/entryhallway) +"Mv" = ( +/obj/structure/chair/sofa/right, +/turf/simulated/floor/carpet/cyan, +/area/ruin/space/spacehotelv1/guestroom5) +"Mw" = ( +/turf/simulated/floor/carpet/red, +/area/ruin/space/spacehotelv1/guestroom1) +"Mz" = ( +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/guestroom1) +"MA" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/kitchen) +"MC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"ME" = ( +/obj/machinery/light/directional/east, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"MI" = ( +/obj/machinery/bookbinder, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"MJ" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom1) +"MN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt2) +"MP" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"MX" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"MZ" = ( +/obj/structure/weightmachine/weightlifter, +/turf/simulated/floor/beach/sand{ + slowdown = 1 + }, +/area/ruin/space/spacehotelv1/bar) +"Nb" = ( +/obj/structure/sink/directional/east, +/obj/item/mounted/mirror{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom1) +"Nc" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"Ne" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"Ng" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"No" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/entryhallway) +"Nr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom4) +"NC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/template_noop, +/area/space/nearstation) +"ND" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/purple{ + dir = 4 + }, +/obj/item/toy/plushie/orange_fox, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom6) +"NE" = ( +/obj/machinery/door/poddoor{ + id_tag = "hotel_cargo" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"NF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"NI" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom2) +"NN" = ( +/obj/structure/rack, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"NR" = ( +/obj/machinery/door/airlock/bathroom{ + id_tag = "restoom2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"NU" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/structure/curtain/black, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"NV" = ( +/obj/structure/table/holotable/wood, +/obj/item/instrument/guitar, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"NW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/template_noop, +/area/space/nearstation) +"NX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"NY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/mob/living/simple_animal/pet/cat/kitten, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"Og" = ( +/obj/structure/closet/crate/can, +/obj/structure/closet/walllocker/medlocker/west, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"Oj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"Ol" = ( +/obj/machinery/power/solar, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/space/nearstation) +"Op" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/engi1) +"Oq" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/vacuum{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"Os" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt1) +"Ox" = ( +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom6) +"Oy" = ( +/obj/structure/cable, +/obj/machinery/power/apc/off_station/south, +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/ruin/space/spacehotelv1/guestroom4) +"OE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/reagent_dispensers/spacecleanertank/west, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/janitor) +"OF" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"OG" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"OI" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/reception) +"OL" = ( +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"OR" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/economy/vending/hatdispenser, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"OT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"OU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/computer/monitor{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"OV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/spacehotelv1/tcomms) +"OY" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"Pb" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/space/nearstation) +"Ph" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/forehallway) +"Pi" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/off_station/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"Pj" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"Pk" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"Ps" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt1) +"Pt" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"Pw" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/off_station/north, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/atmospherics/portable/canister/nitrogen, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"Px" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/restoraunt3) +"PD" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/candle/eternal{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 9; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/restoraunt2) +"PL" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"PM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/firealarm/directional/south, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/restoraunt2) +"PO" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/yellow/power, +/obj/random/toolbox, +/obj/random/tool, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"PQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"Qc" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/item/circuitboard/tcomms/core, +/turf/simulated/floor/greengrid/airless{ + icon_state = "bcircuit" + }, +/area/ruin/space/spacehotelv1/tcomms) +"Qf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"Qo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"Qq" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/cargostorage) +"Qw" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/off_station/east, +/obj/vehicle/janicart, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/janitor) +"Qx" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"QA" = ( +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"QC" = ( +/obj/machinery/conveyor/north/ccw{ + dir = 5; + id = "hotelsdisposal" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"QF" = ( +/obj/structure/table/reinforced/brass, +/obj/item/flashlight/lamp/bananalamp, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom1) +"QH" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/restoraunt2) +"QI" = ( +/turf/simulated/floor/beach/coastline{ + slowdown = 3 + }, +/area/ruin/space/spacehotelv1/bar) +"QK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/economy/atm/west, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"QO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/paper/pamphlet/deltainfo{ + name = "Hotel pamphlet"; + info = "
The Twin Nexus Hotel

A place of Sanctuary


Welcome to The Twin-Nexus Hotel, \[insert name here]! The loyal staff strive to their best effort to cater for the best possible experience for all space(wo)men! If you have any questions or comments, please ask one of our on-board staff for more information.
" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"QX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"Ra" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"Rc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"Rf" = ( +/obj/structure/sign/barber, +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/barber) +"Rj" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"Rk" = ( +/turf/simulated/wall, +/area/space/nearstation) +"RC" = ( +/obj/structure/rack, +/obj/item/storage/fancy/crayons, +/obj/item/camera, +/obj/item/camera_film, +/obj/item/storage/fancy/candle_box/full, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/centralhallway) +"RJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/carpet/red, +/area/ruin/space/spacehotelv1/guestroom4) +"RL" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"RP" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"RR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"RS" = ( +/obj/structure/sink/directional/east, +/obj/item/mounted/mirror{ + pixel_x = -32 + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom3) +"RW" = ( +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"RY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"Sb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"Sd" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/guestroom1) +"Sj" = ( +/obj/structure/coatrack, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom6) +"So" = ( +/obj/structure/table/holotable/wood, +/obj/item/toy/plushie/orange_fox, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"Sr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/economy/vending/cola/free, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"Su" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"Sx" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"SA" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"SB" = ( +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"SC" = ( +/obj/machinery/light_switch{ + pixel_y = -24; + dir = 1 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/guestroom6) +"SI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/survival_pod, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/reception) +"SK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"SL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"SU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/ruin/space/spacehotelv1/barber) +"SW" = ( +/obj/structure/table/wood/fancy/blue, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/light/directional/south, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/guestroom6) +"SY" = ( +/turf/simulated/wall, +/area/ruin/space/spacehotelv1/restoraunt1) +"Tf" = ( +/obj/machinery/door/airlock/external, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"Tl" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/cargostorage) +"Tq" = ( +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"Tv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/holotable/wood, +/obj/item/ashtray/bronze{ + pixel_y = -2; + pixel_x = -6 + }, +/obj/machinery/fishtank/bowl{ + pixel_y = 11 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"Tz" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"TA" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom3) +"TD" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"TH" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/south, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"TL" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/off_station/north, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"TN" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/item/toy/plushie/purple_fox, +/turf/simulated/floor/carpet/arcade, +/area/ruin/space/spacehotelv1/guestroom2) +"TO" = ( +/obj/machinery/chem_master/condimaster, +/turf/simulated/floor/plasteel/freezer, +/area/ruin/space/spacehotelv1/kitchen) +"TR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"TS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"TT" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"TV" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"TW" = ( +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom1) +"Ua" = ( +/obj/structure/closet/crate/can, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"Uc" = ( +/obj/structure/sink/kitchen/east, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"Ud" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/door_control/bolt_control/east{ + id = "ext_eva_door"; + pixel_y = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"Uh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"Uq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"UA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"UF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"UH" = ( +/obj/machinery/door/airlock{ + id_tag = "gstroom5"; + name = "Appartment 5" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom5) +"UJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/wood/fancy, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/reagent_containers/food/drinks/mug, +/turf/simulated/floor/carpet/red, +/area/ruin/space/spacehotelv1/guestroom4) +"UL" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/miscellaneous/plumbing{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"UN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/template_noop, +/area/space/nearstation) +"UO" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/reception) +"UP" = ( +/obj/structure/table/holotable/wood, +/obj/item/paper_bin, +/obj/item/pen/multi, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"UQ" = ( +/turf/simulated/floor/plasteel/stairs{ + dir = 1 + }, +/area/ruin/space/spacehotelv1/restoraunt3) +"UU" = ( +/obj/structure/table/holotable/wood, +/obj/item/paper/pamphlet/deltainfo{ + name = "Hotel pamphlet"; + info = "
The Twin Nexus Hotel

A place of Sanctuary


Welcome to The Twin-Nexus Hotel, \[insert name here]! The loyal staff strive to their best effort to cater for the best possible experience for all space(wo)men! If you have any questions or comments, please ask one of our on-board staff for more information.
" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/reception) +"UW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"UX" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_creep, +/area/ruin/space/spacehotelv1/centralhallway) +"Va" = ( +/obj/structure/table/wood/fancy, +/obj/item/candle/eternal{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 9; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/restoraunt2) +"Ve" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"Vh" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/beach/sand{ + slowdown = 1 + }, +/area/ruin/space/spacehotelv1/bar) +"Vn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/sofa/left, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"Vq" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt3) +"Vr" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/south, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel/grimy, +/area/ruin/space/spacehotelv1/forehallway) +"Vv" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"Vz" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/cargostorage) +"VF" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/off_station/north, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom2) +"VH" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/ruin/space/spacehotelv1/restoraunt2) +"VI" = ( +/obj/machinery/door_control/bolt_control/south{ + id = "gstroom2"; + pixel_x = -8 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/flashlight/lamp/green/off, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom2) +"VJ" = ( +/obj/machinery/power/solar, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/space/nearstation) +"VL" = ( +/obj/machinery/power/smes{ + charge = 3000000 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"VM" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/food/snacks/salmonmeat, +/obj/item/reagent_containers/food/snacks/salmonmeat, +/obj/item/reagent_containers/food/snacks/salmonmeat, +/obj/item/reagent_containers/food/snacks/salmonmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/cutlet, +/obj/item/reagent_containers/food/snacks/cutlet, +/obj/item/reagent_containers/food/snacks/cutlet, +/obj/item/reagent_containers/food/snacks/cutlet, +/obj/item/reagent_containers/food/snacks/cutlet, +/obj/item/reagent_containers/food/snacks/rawcutlet, +/obj/item/reagent_containers/food/snacks/rawcutlet, +/obj/item/reagent_containers/food/snacks/rawcutlet, +/obj/item/reagent_containers/food/snacks/rawcutlet, +/obj/item/reagent_containers/food/snacks/rawcutlet, +/obj/item/reagent_containers/food/snacks/sausage, +/obj/item/reagent_containers/food/snacks/sausage, +/obj/item/reagent_containers/food/snacks/sausage, +/obj/item/reagent_containers/food/snacks/sausage, +/obj/item/reagent_containers/food/snacks/smokedsausage, +/obj/item/reagent_containers/food/snacks/smokedsausage, +/obj/item/reagent_containers/food/snacks/smokedsausage, +/obj/item/fish/salmon, +/obj/item/fish/salmon, +/obj/item/fish/salmon, +/obj/item/fish/catfish, +/obj/item/fish/catfish, +/turf/simulated/floor/plasteel/freezer, +/area/ruin/space/spacehotelv1/kitchen) +"VO" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/template_noop, +/area/space/nearstation) +"Wa" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"We" = ( +/obj/effect/overlay/coconut, +/turf/simulated/floor/beach/sand{ + slowdown = 1 + }, +/area/ruin/space/spacehotelv1/bar) +"Wf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/closet/crate/can, +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"Wj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/soap, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom6) +"Wp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/centralhallway) +"Wq" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/barber) +"Wr" = ( +/obj/machinery/door/poddoor{ + id_tag = "hotel_cargo" + }, +/obj/structure/fans/tiny, +/obj/machinery/door_control/shutter/east{ + id = "hotel_cargo"; + name = "Cargo Doors" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"Wu" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"Wv" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/north, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"Wx" = ( +/obj/structure/closet/athletic_mixed, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/janitor) +"Wy" = ( +/obj/machinery/atmospherics/portable/scrubber, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"WD" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"WM" = ( +/obj/structure/table/wood/poker, +/obj/item/ashtray/bronze, +/obj/item/lighter/zippo/fluff/purple, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"WT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"WU" = ( +/obj/structure/sink/directional/west, +/obj/item/mounted/mirror{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom5) +"WY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/guestroom5) +"Xb" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/forehallway) +"Xh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/item/soap, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom1) +"Xl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/dresser, +/obj/machinery/door_control/bolt_control/north{ + id = "gstroom6"; + pixel_x = -8 + }, +/turf/simulated/floor/carpet/royalblack, +/area/ruin/space/spacehotelv1/guestroom6) +"Xs" = ( +/obj/structure/table, +/obj/item/clothing/under/costume/janimaid, +/obj/item/key/janitor, +/obj/item/reagent_containers/spray/cleaner, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/janitor) +"Xt" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"Xy" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom4) +"XB" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/space/nearstation) +"XC" = ( +/obj/machinery/door/airlock, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/bar) +"XF" = ( +/obj/structure/rack, +/obj/item/bikehorn/rubberducky, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"XI" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/forehallway) +"XK" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"XP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt1) +"XU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/food/drinks/mug, +/turf/simulated/floor/carpet/arcade, +/area/ruin/space/spacehotelv1/guestroom2) +"XV" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt1) +"XX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt2) +"XY" = ( +/obj/structure/table/glass, +/obj/item/paicard, +/turf/simulated/floor/carpet/blue, +/area/ruin/space/spacehotelv1/guestroom3) +"Yd" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"Yh" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"Yq" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"Yt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt2) +"Yy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/carpet/red, +/area/ruin/space/spacehotelv1/guestroom4) +"Yz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/off_station/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"YA" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi2) +"YC" = ( +/obj/structure/table/holotable/wood, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"YG" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom6) +"YK" = ( +/obj/machinery/kitchen_machine/oven, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"YL" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/folder/red{ + pixel_x = 10; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/ruin/space/spacehotelv1/reception) +"YR" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"YS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "sepia" + }, +/area/ruin/space/spacehotelv1/bar) +"YU" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_creep, +/area/ruin/space/spacehotelv1/barber) +"Zd" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/bar) +"Zf" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/restoraunt2) +"Zo" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/plasteel, +/area/ruin/space/spacehotelv1/kitchen) +"Zp" = ( +/obj/machinery/door/airlock/freezer, +/turf/simulated/floor/plasteel/freezer, +/area/ruin/space/spacehotelv1/kitchen) +"Zv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"ZA" = ( +/obj/machinery/economy/vending/chinese/free, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ruin/space/spacehotelv1/centralhallway) +"ZG" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/turf_decal/miscellaneous/plumbing, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom2) +"ZJ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/bar) +"ZL" = ( +/obj/structure/table/wood/poker, +/obj/item/deck/cards/tiny, +/turf/simulated/floor/carpet, +/area/ruin/space/spacehotelv1/restoraunt1) +"ZM" = ( +/obj/machinery/power/solar, +/obj/structure/cable, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/space/nearstation) +"ZP" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/engi1) +"ZR" = ( +/obj/machinery/quantumpad, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ruin/space/spacehotelv1/entryhallway) +"ZS" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/ruin/space/spacehotelv1/forestarboardmaints) +"ZU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/ruin/space/spacehotelv1/forehallway) +"ZZ" = ( +/obj/structure/curtain/open/shower, +/obj/effect/turf_decal/miscellaneous/plumbing{ + dir = 1 + }, +/obj/machinery/shower{ + pixel_y = 20 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/ruin/space/spacehotelv1/guestroom5) + +(1,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(2,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(3,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(4,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(5,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +EV +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(6,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(7,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +CH +IZ +IZ +IZ +IZ +IZ +EV +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +ad +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +CH +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(8,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +LI +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Jy +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +tI +XB +tI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(9,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +DH +LI +DH +DH +DH +DH +LI +LI +DH +DH +IZ +IZ +IZ +IZ +IZ +IZ +IZ +CH +IZ +aW +aW +aW +aW +aW +aW +aW +IZ +IZ +IZ +LI +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +Mg +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(10,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +EV +LI +LI +Es +Es +Es +Es +Es +Es +Es +Es +Es +LI +LI +ad +IZ +IZ +IZ +IZ +IZ +LI +IZ +aW +NV +LC +LC +LC +xf +aW +IZ +IZ +IZ +Jy +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +LI +Mg +LI +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +"} +(11,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +Es +qt +JW +tI +tI +tI +cb +yP +Es +DH +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +GJ +dT +lv +BY +LC +mb +GJ +IZ +IZ +IZ +LI +IZ +IZ +LI +IZ +IZ +IZ +LI +LI +LI +LI +LI +VO +UN +vI +LI +LI +LI +LI +LI +IZ +IZ +IZ +IZ +"} +(12,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +wc +IZ +IZ +IZ +LI +Es +yf +JW +tI +tI +tI +OV +Qc +Es +DH +IZ +LI +LI +LI +LI +LI +IZ +LI +LI +GJ +ED +Vq +pC +Vq +ED +GJ +LI +IZ +LI +LI +IZ +LI +LI +IZ +IZ +Ol +hE +hE +hE +hE +hE +hw +LI +Ar +xF +xF +xF +xF +xF +xF +IZ +IZ +IZ +"} +(13,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +DH +LI +IZ +IZ +IZ +DH +Es +Es +KF +Es +Es +Es +KF +Es +Es +DH +IZ +SY +SY +Aq +Aq +SY +Aq +Aq +SY +GJ +Px +UQ +LC +rA +BW +GJ +qN +kV +kV +kV +kV +kV +kV +qN +IZ +IZ +IZ +LI +tI +tI +tI +Mg +tI +Mg +tI +tI +tI +LI +IZ +IZ +IZ +IZ +IZ +"} +(14,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +DH +IZ +LI +IZ +IZ +IZ +bQ +DH +DH +tI +tI +tI +tI +Mg +LI +DH +LI +IZ +SY +Wv +Ad +uc +Ad +Ad +Ad +TH +GJ +eP +sV +Ly +sV +LQ +GJ +eO +bh +VH +zm +ub +vu +VH +kV +IZ +Ol +hE +hE +hE +hE +hE +hw +LI +Ar +xF +xF +xF +xF +xF +xF +IZ +IZ +IZ +"} +(15,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +DH +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +DH +tI +IZ +IZ +IZ +Mg +DH +IZ +IZ +IZ +Aq +Ad +nK +CO +gU +tn +OG +Ad +ez +bI +qA +GB +IW +cd +ez +zm +zm +zm +zm +zm +zm +zm +kV +IZ +IZ +IZ +LI +tI +tI +tI +Mg +tI +Mg +tI +tI +tI +LI +IZ +IZ +IZ +IZ +IZ +"} +(16,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +DH +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +LI +tI +IZ +IZ +IZ +Mg +LI +IZ +IZ +IZ +Aq +Ad +nK +xQ +Fr +WM +OG +Ad +at +qS +GB +GB +GB +GB +Gh +ub +JT +VH +zm +ub +JT +VH +kV +IZ +Ol +hE +hE +hE +hE +hE +hw +LI +Ar +xF +xF +xF +xF +xF +xF +IZ +IZ +IZ +"} +(17,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +LI +LI +LI +LI +LI +LI +Sd +tI +tI +tI +tI +Mg +kR +LI +LI +LI +SY +Rj +Ad +Ig +Ig +Ig +Ad +Ad +NU +qS +GB +sF +GB +GB +NU +zm +zm +zm +zm +zm +zm +zm +kV +IZ +IZ +LI +LI +LI +LI +tI +Mg +tI +Mg +tI +LI +LI +LI +LI +IZ +IZ +IZ +IZ +"} +(18,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +LI +LI +LI +LI +Sd +Sd +Sd +Sd +Sd +Sd +Lk +Lk +jW +gC +rm +kR +kR +kR +kR +kR +kR +sH +Ad +Ad +Ad +gU +Fh +GJ +gF +GB +oa +GB +yc +GJ +ub +Va +VH +zm +ub +aw +VH +kV +IZ +IZ +IZ +IZ +IZ +IZ +tI +Mg +LI +Mg +tI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(19,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +LI +Sd +QF +KQ +tJ +nx +Sd +IQ +TD +pD +wF +Wf +kR +pN +Cl +hR +hL +kR +gU +Ad +gU +Ad +gq +Ad +GJ +wf +GB +hT +GB +qn +GJ +zm +zm +zm +zm +zm +zm +QH +qN +tI +tI +tI +VO +Fe +Fe +Fe +bG +tI +Mg +tI +LI +LI +LI +LI +IZ +IZ +IZ +IZ +"} +(20,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +LI +Sd +Dj +TW +TW +ax +os +lb +tD +rM +tD +bZ +AZ +fV +fV +Nr +Mb +kR +ZL +Ad +zG +Ad +Ja +Ad +GJ +mC +GB +te +GB +KG +GJ +ub +Va +VH +zm +ub +PD +kl +qN +nj +nI +IZ +Mg +IZ +IZ +IZ +Mg +LI +Mg +VJ +VJ +VJ +VJ +VJ +VJ +IZ +IZ +IZ +"} +(21,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +DH +DH +DH +IZ +IZ +LI +Sd +qg +FR +Mw +jd +Sd +Lm +eF +AT +eF +pH +kR +qU +bc +UJ +RJ +kR +op +me +NF +ii +XP +Ps +mt +Ne +TR +TR +nX +TR +mt +eH +nl +zg +Yt +xp +XX +PM +qN +Dk +nI +nI +aU +nI +nI +LI +Mg +tI +Mg +tI +tI +tI +LI +IZ +IZ +IZ +IZ +IZ +"} +(22,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Jy +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +Sd +pL +bs +Mw +lt +Sd +UA +eF +AT +eF +OR +kR +Gz +bc +wI +Oy +kR +OY +Ua +OY +uM +rX +SY +MA +yV +tE +zt +ql +mT +MA +jA +qN +qN +jL +MN +qN +qN +qN +nj +nI +fo +Ek +FV +nI +IZ +Mg +LI +Mg +VJ +VJ +VJ +VJ +VJ +VJ +IZ +IZ +IZ +"} +(23,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +Sd +Mz +Mz +Mw +Fj +Sd +LP +tQ +AT +zM +qV +kR +vi +bc +mu +Yy +kR +nI +nI +nI +Af +HB +yT +MA +di +RW +RW +Dw +RW +hH +Ju +qN +tk +rw +zJ +nI +bz +sM +Gb +nI +PO +By +VL +zu +IZ +Mg +tI +Mg +tI +tI +tI +LI +IZ +IZ +IZ +IZ +IZ +"} +(24,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +DH +DH +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Op +Op +JN +Sd +HU +Sd +Sd +Sd +rp +AT +Lr +kR +kR +kR +xn +kR +rv +kR +Fz +Je +nI +Os +HB +yT +MA +YK +RW +uA +zi +RW +bb +lT +qN +tk +rw +zJ +nI +YA +sM +nI +nI +Wy +fD +OU +nI +LI +Mg +LI +Mg +VJ +VJ +VJ +VJ +VJ +VJ +IZ +IZ +IZ +"} +(25,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +uF +de +Ls +Sd +wM +Nb +wM +Sd +rp +uB +cx +kR +mf +DR +mf +kR +Pk +KU +UF +Sb +Fv +eW +HB +yT +MA +yI +RW +jb +Bn +RW +Hb +gQ +qN +tk +rw +zJ +nI +fD +UF +LN +UF +FU +Yz +TV +zu +IZ +NC +Fe +Mh +LI +LI +LI +LI +LI +IZ +IZ +IZ +IZ +"} +(26,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +uF +cp +Ls +Sd +jK +Xh +Cq +Sd +Gx +ny +cx +kR +Xy +oo +py +kR +Qf +mE +mE +Wq +mE +LH +HB +yT +MA +DP +Uc +bi +Zo +uI +MA +VM +qN +tk +rw +Cj +nI +jX +nI +nI +nI +nI +nI +nI +nI +IZ +LI +tI +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(27,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +EV +LI +LI +DH +LI +LI +LI +LI +LI +LI +LI +LI +uF +wK +Ls +Sd +wM +MJ +Sd +Sd +rp +Vn +cx +kR +kR +Ll +mf +kR +aO +mE +Gf +EB +mE +uw +XV +SY +LU +LU +LU +LU +Lj +MA +MA +Zp +MA +qN +pg +Zf +nI +Qf +nI +UL +Fb +UL +Ib +tI +tI +tI +tI +tI +tI +tI +tI +tI +IZ +IZ +IZ +IZ +IZ +IZ +"} +(28,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +IZ +IZ +LI +IZ +IZ +tI +tI +Op +Op +Op +mX +Sd +Sd +Sd +Sd +vw +OF +QO +cf +HL +kR +kR +kR +kR +eD +mE +IK +SU +YU +Uq +uZ +wE +LU +zA +OI +jc +LU +gG +gQ +gQ +MA +xt +Uq +rd +Fv +WT +nI +Wu +JE +PL +Ib +IZ +IZ +IZ +LI +IZ +LI +IZ +Ib +tI +IZ +IZ +IZ +IZ +IZ +IZ +"} +(29,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +IZ +IZ +LI +IZ +IZ +VO +Fe +mR +Iu +Tf +LY +fK +Gj +NI +fK +fK +rp +ny +cx +EW +EW +ZZ +vK +EW +Qf +mE +IT +wg +Ch +wH +mO +Cy +LU +Fa +it +jS +LU +Bq +gQ +Cg +MA +ZA +Uq +tO +nI +nI +nI +Ib +Vv +Ib +Ib +Ib +Ib +ky +Ib +ky +Ib +ky +Ib +tI +IZ +IZ +IZ +IZ +IZ +IZ +"} +(30,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +LI +IZ +IZ +Mg +Op +Op +Op +Op +oj +fK +Fy +ig +ZG +fK +iU +Vn +cx +EW +px +Ii +Iv +EW +Qf +mE +mE +mE +Rf +Uq +df +vF +LU +YL +wo +Lv +LU +Gw +eC +TO +MA +BI +Uq +tO +Ib +kG +jJ +JE +JE +XF +Ib +yl +lj +ke +jk +wC +OL +gd +Ib +tI +IZ +EV +IZ +IZ +IZ +IZ +"} +(31,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +LI +IZ +IZ +Mg +Op +tg +fM +SK +Fm +fK +Gj +ht +Gj +fK +rp +rC +cx +EW +vK +WU +vK +EW +Cz +UF +lh +hs +nI +SL +rn +pv +LU +LU +LU +SI +LU +MA +MA +MA +MA +pv +Uq +tO +Ib +Ib +Ib +JE +JE +nW +Ib +SB +Yd +hI +hI +hI +hI +Zd +Ib +tI +IZ +LI +IZ +IZ +IZ +IZ +"} +(32,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +IZ +IZ +LI +IZ +IZ +Mg +Op +ZP +NX +fK +fK +fK +cj +fK +fK +fK +rp +AT +cx +EW +EW +EW +no +EW +EW +EW +Qf +nI +nI +cn +HY +pv +MX +sX +UP +Qo +hW +Og +eg +cT +MX +pv +DY +tO +Dh +JE +JE +JE +JE +nW +Ib +rh +YC +oQ +oQ +Ma +Mo +mo +Ib +tI +IZ +LI +IZ +IZ +IZ +IZ +"} +(33,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +IZ +IZ +LI +IZ +IZ +Mg +Op +gA +NX +fK +dM +TN +ag +FL +fK +AP +vp +AT +jj +gO +EW +wZ +aN +gT +Ap +kC +WT +nI +iI +Uq +HY +UX +wl +mM +kp +Qo +cE +JS +eg +mM +KZ +UX +Uq +tO +Ib +GV +vB +Yq +JE +nW +Ib +ae +SA +nd +nd +nd +nd +hI +Ib +tI +IZ +LI +IZ +IZ +IZ +IZ +"} +(34,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +IZ +IZ +LI +IZ +IZ +Mg +Op +Op +NX +KJ +ag +ag +ag +dJ +fK +mQ +eF +AT +eF +rj +EW +Mv +aN +Ef +eY +EW +cB +nI +iI +Uq +rn +pv +bM +mM +UU +Fl +GZ +vg +DF +mM +iB +pv +DY +tO +Ib +Ib +Ib +Ib +JE +ms +Ib +SB +SB +SB +SB +SB +or +Hx +Ib +ky +ky +ky +Ib +IZ +IZ +IZ +"} +(35,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +ad +LI +LI +LI +LI +LI +LI +LI +LI +Mg +LI +Op +nu +fK +ed +XU +ag +vf +fK +Lm +eF +AT +eF +pH +EW +kS +aN +Ik +KD +EW +nI +nI +yu +Uq +uZ +hG +mM +mM +mM +pE +mM +mM +mM +mM +So +UX +Uq +tO +aK +QA +QA +Ib +JE +ZJ +XC +iy +SB +SB +FK +FK +FK +FD +QI +dA +dA +ee +Ib +IZ +IZ +IZ +"} +(36,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +IZ +IZ +IZ +IZ +IZ +Mg +LI +uF +NX +fK +VF +Ez +Ez +Ez +xb +Zv +tD +NY +tD +bZ +UH +WY +WY +fG +bC +EW +Xs +LF +LF +pq +df +hG +mM +mM +xY +pE +mM +mM +xY +mM +kB +pv +ki +tO +pv +wj +lf +Ib +JV +JV +JV +YS +SB +SB +EA +FK +FK +FD +QI +dA +qX +dA +ky +IZ +IZ +IZ +"} +(37,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +Mg +LI +uF +NX +fK +pU +gl +BN +VI +fK +IA +hi +jC +dy +Bs +EW +Mr +cs +cs +qK +EW +oL +OE +jZ +yz +rn +pv +hn +mM +AD +jr +vU +tV +AD +mM +UO +pv +DY +tO +ob +QA +QA +Ak +bK +mg +JV +zD +SB +SB +FK +aX +FK +zB +QI +dA +sy +dA +ky +IZ +IZ +IZ +"} +(38,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +DH +DH +IZ +IZ +IZ +IZ +Mg +LI +uF +NX +fK +fK +fK +fK +fK +fK +jW +Rc +ov +xw +jW +EW +EW +EW +EW +EW +EW +Wx +Qw +LF +PQ +HY +UX +dr +mM +cO +pE +mM +mM +cO +mM +uq +UX +Uq +tO +pv +MI +QA +RC +bK +aa +JV +Bi +SB +SB +We +FK +FK +FD +QI +dA +dA +ee +Ib +IZ +IZ +IZ +"} +(39,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +Mg +LI +uF +NX +Op +az +oY +Nc +ps +Op +XI +AN +GA +ZU +XI +pv +FS +Cn +xs +wD +pv +LF +LF +LF +Qx +kT +pv +MX +mM +mM +pE +mM +mM +mM +mM +MX +pv +Tz +BV +pv +pv +ob +pv +bK +bK +JV +UW +SB +SB +FK +aX +wB +FD +QI +dA +dA +ee +Ib +IZ +IZ +IZ +"} +(40,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +Mg +LI +Op +is +to +pR +Gs +aZ +KX +Op +Xb +AN +GA +ZU +do +HP +QA +QA +QA +QA +Gy +Kh +Fx +oF +if +uZ +QK +Kh +Kh +Kh +if +mO +uZ +Kh +Kh +Kh +xl +nH +eE +rI +RR +Kh +tq +Kh +Kh +JO +UW +SB +SB +FK +aX +FK +FD +QI +dA +dA +mw +ky +IZ +IZ +IZ +"} +(41,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +EV +IZ +IZ +IZ +IZ +IZ +Mg +Op +Op +XK +Op +Op +TL +Gs +rD +xO +Ph +dX +GA +oU +Ph +hm +zU +zU +zU +zU +fp +tC +IE +JR +qP +Wp +JR +we +IE +tC +aQ +IE +tC +fr +xJ +hk +Bf +IE +QX +QX +IE +IE +IE +IE +IE +Ko +RY +SB +SB +xB +FK +Vh +FD +QI +dA +dA +Bb +ky +IZ +IZ +IZ +"} +(42,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +Mg +Op +tm +Ls +RL +Op +Dx +Gm +tX +Op +XI +AN +GA +ZU +XI +pv +Kt +JZ +ce +FS +pv +jE +du +Uh +Sr +vQ +vL +Ck +vQ +uS +vQ +vQ +mv +If +mv +pv +pv +pS +pv +pS +pS +pv +pS +pS +pv +Ib +je +SB +SB +FK +MZ +DK +FD +QI +dA +dA +ee +Ib +IZ +IZ +IZ +"} +(43,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Mg +Op +ll +Ls +nC +nC +nC +nC +nC +nC +jW +GM +AK +TS +jW +zc +zc +zc +zc +zc +zc +DA +du +du +du +vQ +FX +FX +FX +FX +Dl +vQ +Hd +Ra +Ka +Ms +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Ib +lS +SB +SB +SB +SB +gx +gx +sq +Ib +Ib +Ib +Ib +IZ +IZ +IZ +"} +(44,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +IZ +Mg +Op +Op +Ec +nC +Eu +ns +tZ +zv +nC +dH +rT +Gd +kg +CM +zc +Ev +gw +ND +Sj +zc +TT +du +zN +av +vQ +Vz +Fo +hD +Tl +vQ +vQ +by +Ra +Hj +Ms +Ms +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Ib +Ib +yl +zx +uj +uj +uj +ME +Bz +Ib +IZ +IZ +IZ +IZ +IZ +IZ +"} +(45,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +LI +Mg +LI +Op +Ls +nC +DW +xg +xg +xg +lU +Zv +tD +iG +tD +bn +cr +uR +Ox +Ox +Ox +zc +DV +pJ +er +xU +vQ +FX +Qq +dk +FX +yG +Su +Hd +Ra +Ka +sQ +No +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Ib +ky +Ib +ky +ky +ky +Ib +ky +Ib +IZ +IZ +IZ +IZ +IZ +IZ +"} +(46,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +Mg +LI +Op +Ls +nC +Bj +uD +ni +ko +nC +Lm +eF +AT +eF +pH +zc +Xl +la +lD +SW +zc +Ho +du +dG +QC +vQ +zb +hD +hD +FX +rN +Su +Hd +Ra +Ka +tu +No +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(47,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +IZ +Mg +LI +Op +XK +nC +XY +uD +uD +oD +nC +Pj +eF +AT +eF +Dv +zc +cV +la +la +SC +zc +Ho +du +du +du +vQ +FX +dc +ry +FX +vQ +vQ +Hd +tB +Ac +Ki +Ms +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(48,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +IZ +Mg +LI +Op +mA +nC +GP +uD +ix +Jn +nC +Sx +tQ +AT +zM +kD +zc +Fw +la +ok +nQ +zc +tj +oR +oR +yD +vQ +Vz +wS +hD +Tl +vQ +aG +Hd +Ra +Ka +db +No +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(49,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +Mg +LI +Op +lr +nC +nC +TA +nC +nC +nC +jW +Pi +hP +cx +zc +zc +zc +zh +zc +zc +zc +du +du +du +HM +vQ +aM +FP +FX +FX +vQ +ri +Hd +Ra +Ka +Mk +No +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +CH +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(50,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +LI +Mg +LI +Op +Ls +nC +RS +wL +wL +nC +Gl +zy +vp +DD +Vr +zc +IY +tR +IY +zc +KR +AH +sC +sC +MC +wO +vQ +Jj +vQ +vQ +vQ +vQ +zq +Hd +Ra +Ka +zH +No +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(51,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +DH +IZ +Mg +Op +Op +Ls +bL +wL +tl +Lc +nC +fx +Ve +tQ +dE +cx +zc +IX +Wj +YG +zc +hy +pd +du +Oq +OT +MP +nP +Jp +du +Dy +uu +du +du +Hd +Ra +yN +Ms +Ms +Ms +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(52,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Mg +Op +Kb +Ls +nC +wL +Gv +nC +nC +jW +jW +ha +Tv +Lr +zc +zc +gp +IY +zc +wU +pd +du +du +Aj +du +du +xT +Oj +zR +Oj +Oj +Cv +jg +HX +Ka +fF +KC +tc +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Jy +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(53,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Lg +IZ +Lg +IZ +Lg +IZ +IZ +IZ +Mg +Op +Lw +Ls +nC +nC +nC +nC +XK +Op +EG +vp +vJ +jj +bt +zc +zc +le +zc +du +HM +du +vk +OT +jw +du +du +du +du +du +du +du +FN +Xt +ot +Ms +Ms +Ms +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(54,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Bd +IZ +Bd +IZ +Bd +IZ +IZ +IZ +Mg +Op +pM +Ls +Ls +Ls +cp +Op +Tq +Fk +Ng +eF +fk +tD +iq +jE +DE +DE +DE +DE +xr +du +IB +OT +gb +Yh +IZ +IZ +IZ +IZ +No +Hr +Hd +Xt +Ka +qq +No +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(55,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Bd +LI +Bd +LI +Bd +IZ +IZ +IZ +Mg +Op +Op +YR +Op +Ls +Ls +Ls +Ls +Op +Lq +eF +yF +eF +tY +du +du +BG +du +du +uP +du +Pw +xN +Wa +du +IZ +IZ +IZ +IZ +No +uN +Hd +Xt +Ka +qq +No +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(56,1,1) = {" +IZ +IZ +IZ +IZ +tI +LI +LI +tI +Bd +LI +Bd +LI +Bd +VO +Fe +Fe +xK +vI +Op +uF +Op +fN +bd +Op +Op +Op +Lk +Lk +jW +Lk +Lk +du +NN +DA +RP +nn +Pt +du +ZS +DA +fP +Yh +IZ +IZ +IZ +IZ +No +ZR +Hd +Xt +Ka +qq +No +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(57,1,1) = {" +IZ +IZ +IZ +ad +Kz +Fe +Fe +Fe +lo +Fe +lo +Fe +lo +NW +LI +tI +LI +Fi +Fe +vI +Op +uF +uF +Op +LI +Op +LI +LI +LI +LI +LI +du +WD +pj +En +pB +va +du +HA +DA +Ud +du +LI +LI +LI +LI +Ms +Ms +cW +Xt +ot +Ms +Ms +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(58,1,1) = {" +IZ +IZ +IZ +IZ +tI +LI +LI +tI +Bd +LI +Bd +LI +Bd +NC +Fe +Fe +Fe +bG +LI +Mg +tI +tI +tI +tI +tI +tI +tI +tI +tI +tI +tI +du +du +Yh +du +du +xm +du +du +qu +du +du +IZ +IZ +IZ +IZ +No +jx +Hd +Xt +DJ +NE +Le +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(59,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Bd +LI +Bd +LI +Bd +IZ +IZ +IZ +IZ +Mg +tI +Mg +IZ +IZ +IZ +IZ +LI +IZ +LI +IZ +IZ +IZ +tI +Gi +tI +tI +Gi +tI +LI +tI +Yh +DA +Yh +IZ +IZ +IZ +IZ +IZ +No +BJ +ei +Xt +DJ +Wr +Le +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(60,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Bd +IZ +Bd +IZ +Bd +IZ +IZ +IZ +IZ +Mg +LI +Mg +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Gi +LI +LI +Gi +IZ +IZ +LI +du +Eh +du +IZ +IZ +IZ +IZ +IZ +Ms +Ms +Ms +NR +Ms +Ms +Ms +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(61,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +zZ +IZ +zZ +IZ +zZ +IZ +IZ +IZ +IZ +NC +CC +Mh +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Gi +LI +LI +Gi +IZ +IZ +tI +LI +IZ +LI +IZ +IZ +IZ +IZ +IZ +tI +Ms +kX +Da +vV +Ms +tI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(62,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Ol +hE +hE +hE +GL +xF +xF +xF +ZM +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Gi +LI +LI +Gi +IZ +IZ +IZ +EV +IZ +LI +IZ +IZ +IZ +IZ +IZ +tI +Ms +KY +KY +KY +Ms +tI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(63,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +LI +Mg +LI +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Gi +LI +LI +Gi +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +tI +tI +tI +tI +tI +tI +tI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(64,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Ol +hE +hE +hE +GL +xF +xF +xF +ZM +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Rk +Gi +tI +tI +Gi +Rk +IZ +IZ +IZ +IZ +ad +IZ +IZ +IZ +IZ +IZ +tI +IZ +IZ +IZ +IZ +IZ +tI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(65,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +LI +Mg +LI +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +CH +LI +LI +Gi +Gi +Gi +Gi +LI +LI +ad +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(66,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Ol +hE +hE +hE +GL +xF +xF +xF +ZM +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Rk +Gi +tI +tI +Gi +Rk +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(67,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +tI +Mg +tI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Gi +IZ +IZ +Gi +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(68,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +Mg +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(69,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +LI +Mg +LI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Jy +IZ +IZ +CH +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +Jy +IZ +IZ +IZ +IZ +IZ +EV +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(70,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +tI +Pb +tI +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(71,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +EV +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(72,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(73,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(74,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} +(75,1,1) = {" +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +IZ +"} diff --git a/_maps/map_files220/RandomRuins/SpaceRuins/transit_bar.dmm b/_maps/map_files220/RandomRuins/SpaceRuins/transit_bar.dmm new file mode 100644 index 000000000000..3247df0bec33 --- /dev/null +++ b/_maps/map_files220/RandomRuins/SpaceRuins/transit_bar.dmm @@ -0,0 +1,505 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/r_wall, +/area/ruin/space/powered) +"b" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/item/book/manual/barman_recipes, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/ruin/space/powered) +"c" = ( +/obj/structure/table/wood, +/obj/item/ashtray/glass{ + pixel_y = -2; + pixel_x = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_y = 5; + pixel_x = -2 + }, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/ruin/space/powered) +"d" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"f" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"g" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ruin/space/powered) +"h" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/dock_marker{ + icon_state = "markerolive-on" + }, +/turf/template_noop, +/area/template_noop) +"i" = ( +/obj/structure/sign/barsign, +/turf/simulated/wall/r_wall, +/area/ruin/space/powered) +"j" = ( +/obj/structure/sign/poster/contraband/random/east, +/turf/simulated/floor/transparent/glass/reinforced, +/area/ruin/space/powered) +"k" = ( +/turf/simulated/floor/transparent/glass/reinforced, +/area/ruin/space/powered) +"l" = ( +/obj/machinery/economy/vending/boozeomat, +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ruin/space/powered) +"n" = ( +/turf/template_noop, +/area/template_noop) +"o" = ( +/turf/simulated/floor/carpet/red, +/area/ruin/space/powered) +"r" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/food/drinks/cans/beer{ + list_reagents = list("beer"=0); + pixel_x = 9; + pixel_y = -3 + }, +/obj/item/ashtray/bronze{ + pixel_y = 10; + pixel_x = -8 + }, +/turf/simulated/floor/carpet/red, +/area/ruin/space/powered) +"t" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/monkey_paint{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/ruin/space/powered) +"u" = ( +/obj/structure/table/wood, +/obj/item/newspaper, +/obj/item/storage/fancy/cigarettes{ + pixel_y = -2; + pixel_x = -7 + }, +/turf/simulated/floor/carpet/red, +/area/ruin/space/powered) +"v" = ( +/obj/structure/sign/vacuum{ + pixel_y = -32 + }, +/turf/simulated/floor/transparent/glass/reinforced, +/area/ruin/space/powered) +"w" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/ruin/space/powered) +"x" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"y" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"z" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/red, +/area/ruin/space/powered) +"A" = ( +/obj/item/gps/ruin{ + gpstag = "Mini Pub"; + pixel_y = -32 + }, +/obj/structure/table, +/obj/machinery/chem_dispenser/beer{ + dir = 1; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ruin/space/powered) +"B" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"C" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/ruin/space/powered) +"F" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/soda{ + dir = 1; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ruin/space/powered) +"G" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_y = 8; + pixel_x = -7 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/ruin/space/powered) +"J" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/chair/stool/bar, +/turf/simulated/floor/carpet/red, +/area/ruin/space/powered) +"K" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/contraband/random/north, +/turf/simulated/floor/transparent/glass/reinforced, +/area/ruin/space/powered) +"L" = ( +/obj/structure/table, +/obj/item/lighter/zippo/engraved, +/obj/item/reagent_containers/glass/rag{ + pixel_x = -7 + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/clothing/glasses/sunglasses/yeah{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ruin/space/powered) +"N" = ( +/obj/structure/chair/stool/bar, +/turf/simulated/floor/carpet/red, +/area/ruin/space/powered) +"P" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/transparent/glass/reinforced, +/area/ruin/space/powered) +"Q" = ( +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/ruin/space/powered) +"R" = ( +/obj/structure/closet/crate/can, +/turf/simulated/floor/transparent/glass/reinforced, +/area/ruin/space/powered) +"T" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/east, +/obj/item/ashtray/bronze, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_y = 12; + pixel_x = 7; + list_reagents = list("innocent_erp = 50") + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_y = -2; + pixel_x = 8 + }, +/turf/simulated/floor/carpet/red, +/area/ruin/space/powered) +"V" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/ruin/space/powered) +"X" = ( +/obj/structure/table/wood, +/obj/item/ashtray/glass{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/storage/fancy/cigarettes/cigpack_robust{ + pixel_y = 8; + pixel_x = -10 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/ruin/space/powered) +"Y" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/ruin/space/powered) +"Z" = ( +/obj/structure/sign/vacuum{ + pixel_y = 32 + }, +/turf/simulated/floor/transparent/glass/reinforced, +/area/ruin/space/powered) + +(1,1,1) = {" +n +n +n +n +n +n +n +n +n +n +n +n +n +n +n +"} +(2,1,1) = {" +n +h +x +x +h +x +x +h +n +n +n +n +n +n +n +"} +(3,1,1) = {" +n +x +n +a +Y +a +n +a +y +y +y +y +n +n +n +"} +(4,1,1) = {" +n +x +n +a +d +a +y +a +l +g +L +y +y +n +n +"} +(5,1,1) = {" +n +h +n +a +f +a +R +J +G +Q +Q +F +y +n +n +"} +(6,1,1) = {" +n +x +n +a +Z +k +k +N +X +Q +Q +A +a +h +n +"} +(7,1,1) = {" +n +x +a +a +K +k +k +N +c +b +t +a +a +x +n +"} +(8,1,1) = {" +n +h +a +P +k +k +k +k +k +j +v +a +n +x +n +"} +(9,1,1) = {" +n +n +y +z +V +C +o +T +w +a +f +a +n +h +n +"} +(10,1,1) = {" +n +n +y +y +r +u +z +a +y +a +B +i +n +x +n +"} +(11,1,1) = {" +n +n +n +y +y +y +y +a +n +a +Y +a +n +x +n +"} +(12,1,1) = {" +n +n +n +n +n +n +n +h +x +x +h +x +x +h +n +"} +(13,1,1) = {" +n +n +n +n +n +n +n +n +n +n +n +n +n +n +n +"} diff --git a/_maps/map_files220/RandomRuins/SpaceRuins/voxraiders_1.dmm b/_maps/map_files220/RandomRuins/SpaceRuins/voxraiders_1.dmm new file mode 100644 index 000000000000..b5e03425dd50 --- /dev/null +++ b/_maps/map_files220/RandomRuins/SpaceRuins/voxraiders_1.dmm @@ -0,0 +1,1002 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"bg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"bu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"bG" = ( +/obj/machinery/light_construct/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/item/rack_parts, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"ca" = ( +/obj/structure/computerframe{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen, +/area/ruin/space/powered) +"cv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/wall/mineral/plastitanium/nodiagonal, +/area/ruin/space/powered) +"dj" = ( +/obj/structure/closet/crate/engineering/electrical, +/obj/item/clothing/gloves/color/yellow, +/obj/item/stack/cable_coil, +/obj/item/t_scanner, +/obj/effect/turf_decal/box, +/obj/item/multitool, +/turf/simulated/floor/plasteel/airless{ + icon_state = "blackfull" + }, +/area/ruin/space/unpowered/unpowered_structures) +"dQ" = ( +/turf/simulated/floor/mineral/plastitanium/red/nitrogen, +/area/ruin/space/powered) +"ft" = ( +/obj/structure/shuttle/engine/large, +/turf/template_noop, +/area/ruin/space/unpowered/unpowered_structures) +"fG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater{ + dir = 2 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"gx" = ( +/obj/structure/shuttle/engine/heater{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"gN" = ( +/obj/structure/shuttle/engine/heater{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"hJ" = ( +/obj/item/whetstone, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen{ + icon_state = "plastitanium" + }, +/area/ruin/space/powered) +"id" = ( +/obj/machinery/light_construct/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/item/clothing/under/solgov, +/obj/item/clothing/head/soft/solgov, +/obj/item/clothing/glasses/sunglasses/big, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark_Golden_1"; + dir = 10 + }, +/area/ruin/space/unpowered/unpowered_structures) +"il" = ( +/obj/machinery/status_display{ + pixel_y = -30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark_Golden_1" + }, +/area/ruin/space/unpowered/unpowered_structures) +"iD" = ( +/obj/machinery/door/airlock/hatch{ + req_access_txt = "152" + }, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen{ + icon_state = "plastitanium" + }, +/area/ruin/space/powered) +"iG" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen, +/area/ruin/space/powered) +"iO" = ( +/obj/machinery/camera{ + dir = 10; + network = list("Scavengers"); + c_tag = "North-East"; + requires_power = 0 + }, +/turf/template_noop, +/area/template_noop) +"jM" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"jP" = ( +/obj/machinery/door/airlock/external, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"lr" = ( +/obj/effect/turf_decal/box, +/obj/machinery/light_construct/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"mk" = ( +/obj/machinery/door_control/shutter/north{ + id = "scanegers_window" + }, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen{ + icon_state = "rampbottom"; + dir = 4 + }, +/area/ruin/space/powered) +"ni" = ( +/obj/item/wrench, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen{ + icon_state = "plastitanium" + }, +/area/ruin/space/powered) +"nz" = ( +/obj/machinery/light_construct/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"ot" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"oL" = ( +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/vox/ranged_laser/space, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"oW" = ( +/mob/living/simple_animal/hostile/vox/ranged_gun, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen, +/area/ruin/space/powered) +"qT" = ( +/obj/effect/spawner/window/plastitanium, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "scanegers_window" + }, +/turf/simulated/floor/plating/nitrogen, +/area/ruin/space/powered) +"rS" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"sa" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen{ + icon_state = "plastitanium" + }, +/area/ruin/space/powered) +"tz" = ( +/obj/machinery/camera{ + dir = 6; + network = list("Scavengers"); + c_tag = "South-East"; + requires_power = 0 + }, +/turf/template_noop, +/area/template_noop) +"uc" = ( +/obj/effect/spawner/window/plastitanium, +/obj/machinery/door/poddoor/shutters{ + id_tag = "scanegers_window" + }, +/turf/simulated/floor/plating/nitrogen, +/area/ruin/space/powered) +"uH" = ( +/mob/living/simple_animal/hostile/vox/melee, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen{ + icon_state = "plastitanium" + }, +/area/ruin/space/powered) +"vl" = ( +/turf/simulated/wall/mineral/titanium, +/area/ruin/space/unpowered/unpowered_structures) +"vp" = ( +/obj/machinery/door/airlock/command{ + locked = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"vE" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"wn" = ( +/obj/item/stack/tile/plasteel, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"wJ" = ( +/obj/machinery/computer/security{ + network = list("Scavengers"); + name = "Skipjack Peep Console" + }, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen, +/area/ruin/space/powered) +"xa" = ( +/turf/simulated/wall/mineral/plastitanium/nodiagonal, +/area/ruin/space/powered) +"xu" = ( +/turf/template_noop, +/area/ruin/space/unpowered/unpowered_structures) +"ye" = ( +/turf/template_noop, +/area/template_noop) +"yO" = ( +/obj/machinery/door/airlock/hatch{ + req_access_txt = "152" + }, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen, +/area/ruin/space/powered) +"Ao" = ( +/obj/machinery/door/airlock/hatch{ + req_access_txt = "152" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating/nitrogen, +/area/ruin/space/powered) +"AK" = ( +/turf/simulated/wall/mineral/titanium/nodiagonal, +/area/ruin/space/unpowered/unpowered_structures) +"BJ" = ( +/obj/structure/door_assembly/door_assembly_ext, +/obj/item/airlock_electronics/destroyed, +/turf/template_noop, +/area/template_noop) +"Cc" = ( +/obj/structure/closet/crate, +/obj/item/rcd, +/obj/item/broken_device, +/obj/item/stock_parts/cell, +/obj/item/clothing/gloves/ring/gold, +/obj/item/stack/spacecash/c50, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen{ + icon_state = "plastitanium" + }, +/area/ruin/space/powered) +"CI" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark_Golden_2" + }, +/area/ruin/space/unpowered/unpowered_structures) +"CQ" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Dx" = ( +/obj/machinery/camera{ + dir = 2; + network = list("Scavengers"); + c_tag = "South-West"; + requires_power = 0 + }, +/turf/template_noop, +/area/template_noop) +"Eh" = ( +/obj/structure/table_frame, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark_Golden_1"; + dir = 5 + }, +/area/ruin/space/unpowered/unpowered_structures) +"EK" = ( +/obj/structure/grille/broken, +/obj/item/shard{ + icon_state = "large"; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/glass, +/obj/structure/lattice, +/obj/effect/dummy/lighting_obj, +/turf/template_noop, +/area/template_noop) +"EM" = ( +/obj/structure/chair/comfy/shuttle, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen, +/area/ruin/space/powered) +"Fi" = ( +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"GU" = ( +/obj/structure/closet/crate, +/obj/item/clothing/head/fluff/goldtophat, +/obj/item/stack/sheet/mineral/diamond, +/obj/item/stack/sheet/mineral/titanium{ + amount = 20 + }, +/obj/item/stack/sheet/mineral/abductor{ + amount = 5 + }, +/obj/item/ammo_box/c10mm, +/obj/item/ammo_box/magazine/m556/arg, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen{ + icon_state = "plastitanium" + }, +/area/ruin/space/powered) +"HC" = ( +/obj/machinery/door/airlock/external, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"IC" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"JI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark_Golden_1" + }, +/area/ruin/space/unpowered/unpowered_structures) +"JZ" = ( +/obj/item/clothing/head/welding, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"KN" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen, +/area/ruin/space/powered) +"Lq" = ( +/turf/simulated/wall/mineral/plastitanium/interior, +/area/ruin/space/powered) +"Mk" = ( +/mob/living/simple_animal/hostile/vox/ranged_laser, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen, +/area/ruin/space/powered) +"Mp" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen, +/area/ruin/space/powered) +"Mq" = ( +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"NN" = ( +/obj/item/flag/solgov, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"Of" = ( +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"OC" = ( +/obj/structure/computerframe, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/glass, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Pc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"QV" = ( +/obj/structure/shuttle/engine/heater{ + dir = 2 + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"QX" = ( +/mob/living/simple_animal/hostile/vox/ranged_laser/space, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) +"Ra" = ( +/obj/structure/closet, +/obj/item/clothing/head/helmet/space/vox/pressure, +/obj/item/clothing/suit/space/vox/pressure, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen{ + icon_state = "plastitanium" + }, +/area/ruin/space/powered) +"Rb" = ( +/turf/simulated/wall/mineral/plastitanium, +/area/ruin/space/powered) +"Sp" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_l" + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"SX" = ( +/obj/structure/rack, +/obj/item/harpoon, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen{ + icon_state = "plastitanium" + }, +/area/ruin/space/powered) +"Tm" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/light_construct/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/airless{ + icon_state = "Dark" + }, +/area/ruin/space/unpowered/unpowered_structures) +"TG" = ( +/turf/simulated/floor/mineral/plastitanium/red/nitrogen{ + icon_state = "plastitanium" + }, +/area/ruin/space/powered) +"UM" = ( +/obj/structure/rack, +/obj/item/tank/internals/nitrogen, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen, +/area/ruin/space/powered) +"UO" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen, +/area/ruin/space/powered) +"Va" = ( +/turf/simulated/floor/mineral/plastitanium/red/nitrogen{ + icon_state = "rampbottom"; + dir = 4 + }, +/area/ruin/space/powered) +"Wi" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion_l" + }, +/turf/simulated/floor/plating/airless, +/area/ruin/space/powered) +"Xz" = ( +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/plating/nitrogen, +/area/ruin/space/powered) +"XZ" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 9; + pixel_x = 8 + }, +/obj/item/toy/plushie/voxplushie, +/obj/item/reagent_containers/food/snacks/cheesepizzaslice{ + pixel_y = -2; + pixel_x = -7 + }, +/obj/item/storage/box/zipties{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/grenade/plastic/c4, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen{ + icon_state = "plastitanium" + }, +/area/ruin/space/powered) +"Yg" = ( +/obj/machinery/atmospherics/portable/canister/nitrogen, +/turf/simulated/floor/mineral/plastitanium/red/nitrogen, +/area/ruin/space/powered) +"Zp" = ( +/obj/machinery/camera{ + dir = 1; + network = list("Scavengers"); + c_tag = "North-West"; + requires_power = 0 + }, +/turf/template_noop, +/area/template_noop) +"ZK" = ( +/obj/structure/extinguisher_cabinet/empty{ + pixel_y = -30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating/airless, +/area/ruin/space/unpowered/unpowered_structures) + +(1,1,1) = {" +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +"} +(2,1,1) = {" +ye +ye +ye +ye +ye +ye +ye +ye +vl +vl +vl +vl +ye +ye +ye +ye +"} +(3,1,1) = {" +ye +ye +ye +AK +vl +AK +vl +vl +vl +JZ +vE +vl +vl +ft +ye +ye +"} +(4,1,1) = {" +ye +ye +CQ +AK +id +AK +lr +Fi +wn +nz +vl +vl +vl +xu +ye +ye +"} +(5,1,1) = {" +ye +EK +IC +QX +ZK +AK +bg +dj +bg +Of +QV +rS +ye +ye +ye +ye +"} +(6,1,1) = {" +ye +CQ +OC +CI +il +AK +Mq +oL +Mq +Fi +gN +rS +ye +ye +ye +ye +"} +(7,1,1) = {" +ye +CQ +CQ +Eh +JI +vp +Pc +bg +Pc +Pc +gN +rS +ye +ye +ye +ye +"} +(8,1,1) = {" +ye +ye +jM +AK +nz +AK +Tm +bu +bg +bG +vl +vl +vl +ft +ye +ye +"} +(9,1,1) = {" +ye +ye +ye +AK +HC +AK +jP +ot +vl +Pc +NN +vl +vl +xu +ye +ye +"} +(10,1,1) = {" +ye +ye +ye +ye +ye +BJ +ye +ye +vl +vl +vl +vl +ye +ye +ye +ye +"} +(11,1,1) = {" +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +"} +(12,1,1) = {" +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +"} +(13,1,1) = {" +ye +ye +ye +ye +Zp +xa +Rb +ye +ye +ye +ye +ye +ye +ye +ye +ye +"} +(14,1,1) = {" +ye +ye +ye +ye +ye +Wi +xa +Rb +Rb +qT +qT +Rb +Rb +Rb +ye +ye +"} +(15,1,1) = {" +ye +ye +ye +ye +ye +Rb +uH +TG +sa +ni +TG +sa +GU +cv +Rb +Dx +"} +(16,1,1) = {" +ye +ye +ye +ye +Lq +xa +iD +Rb +XZ +Ra +SX +hJ +Cc +gx +Sp +ye +"} +(17,1,1) = {" +ye +ye +ye +Lq +xa +Yg +iG +Rb +Rb +Rb +Rb +Rb +Rb +xa +Sp +ye +"} +(18,1,1) = {" +ye +ye +ye +Ao +dQ +dQ +Mk +xa +EM +ca +wJ +UO +fG +Sp +ye +ye +"} +(19,1,1) = {" +ye +ye +ye +Lq +xa +UM +iG +Rb +mk +Xz +Xz +Va +Rb +xa +Sp +ye +"} +(20,1,1) = {" +ye +ye +ye +ye +Lq +xa +yO +Rb +dQ +KN +KN +dQ +UO +fG +Sp +ye +"} +(21,1,1) = {" +ye +ye +ye +ye +ye +Rb +dQ +dQ +Mp +oW +dQ +Mp +UO +cv +Rb +tz +"} +(22,1,1) = {" +ye +ye +ye +ye +ye +Wi +xa +Rb +Rb +uc +uc +Rb +Rb +Rb +ye +ye +"} +(23,1,1) = {" +ye +ye +ye +ye +iO +xa +Rb +ye +ye +ye +ye +ye +ye +ye +ye +ye +"} +(24,1,1) = {" +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +ye +"} diff --git a/_maps/map_files220/RandomRuins/SpaceRuins/whiteship.dmm b/_maps/map_files220/RandomRuins/SpaceRuins/whiteship.dmm new file mode 100644 index 000000000000..a684c903a260 --- /dev/null +++ b/_maps/map_files220/RandomRuins/SpaceRuins/whiteship.dmm @@ -0,0 +1,2860 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"af" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/structure/closet/walllocker/emerglocker/north{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"aA" = ( +/turf/simulated/wall/indestructible/whiteshuttle/nodiagonal, +/area/shuttle/abandoned) +"aI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/passive_vent, +/obj/structure/filingcabinet/chestdrawer/autopsy, +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"bg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8; + initialize_directions = 11 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"bP" = ( +/obj/structure/curtain/medical, +/obj/machinery/shower{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/shuttle/abandoned) +"bT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"bX" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/shuttle/abandoned) +"bY" = ( +/obj/structure/closet/crate/can, +/obj/item/reagent_containers/glass/beaker/waterbottle/large/empty, +/obj/item/trash/pistachios, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"ca" = ( +/obj/structure/closet/wardrobe/white, +/obj/machinery/atmospherics/unary/passive_vent{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"cl" = ( +/obj/structure/table, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/syringe/charcoal, +/obj/item/reagent_containers/syringe/insulin, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/syringe, +/obj/item/stack/medical/bruise_pack/advanced{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/stack/medical/ointment/advanced{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/pill/patch/styptic{ + pixel_y = 6 + }, +/obj/item/reagent_containers/food/pill/patch/styptic{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/pill/patch/silver_sulf{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/pill/patch/silver_sulf{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/storage/pill_bottle/painkillers{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + name = "standard air scrubber"; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue"; + tag = "icon-whiteblue (NORTHWEST)" + }, +/area/shuttle/abandoned) +"cT" = ( +/obj/machinery/light_construct/directional/west, +/obj/structure/table, +/obj/item/trash/plate, +/obj/item/reagent_containers/food/drinks/coffee{ + desc = "It's cold as dead body."; + pixel_x = 8; + pixel_y = 8; + volume = 15 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"dm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/light_construct/directional/west, +/obj/item/hemostat, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"dr" = ( +/obj/structure/morgue, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "privateroom" + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"dv" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/reinforced/normal, +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue"; + tag = "icon-whiteblue (NORTHEAST)" + }, +/area/shuttle/abandoned) +"dy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"dU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/decal/cleanable/blood/splatter, +/mob/living/simple_animal/hostile/undead/zombie, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"ec" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"fo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/mob/living/simple_animal/hostile/undead/zombie/fast, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/shuttle/abandoned) +"gc" = ( +/obj/structure/coatrack, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"gf" = ( +/obj/structure/rack, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + name = "standard air scrubber"; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/obj/item/tank/internals/emergency_oxygen/double, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"gs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/shuttle/abandoned) +"gB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + initialize_directions = 11 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"gD" = ( +/obj/machinery/door/airlock/medical, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"gL" = ( +/obj/machinery/light/directional/west, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/shuttle/abandoned) +"hl" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/surgery, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/shuttle/abandoned) +"hs" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/abandoned) +"hR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + id_tag = "whiteshipinnerairlock2"; + locked = 1; + name = "External Airlock" + }, +/turf/simulated/floor/mineral/titanium/airless, +/area/shuttle/abandoned) +"ic" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/clothing/under/rank/medical/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"ih" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "whiteshiproom1"; + layer = 3; + name = "Room 1 Shutters" + }, +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"ii" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -4; + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"ik" = ( +/obj/machinery/door/airlock/medical, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/shuttle/abandoned) +"io" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/item/clothing/mask/gas, +/mob/living/simple_animal/hostile/undead/zombie/fast, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"is" = ( +/obj/structure/sign/vacuum{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/shuttle/abandoned) +"iu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"iO" = ( +/obj/machinery/door_control/shutter/east{ + id = "whiteshipinnershutters"; + name = "Medical Ship Inner Shutters Control"; + pixel_y = -2 + }, +/obj/machinery/door_control/shutter/east{ + id = "whiteshipbridgeshutters"; + name = "Medical Ship Bridge Shutters Control"; + pixel_y = 7 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/mob/living/simple_animal/hostile/undead/zombie/fast, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"iX" = ( +/obj/machinery/door/airlock/welded{ + id_tag = "whiteshuttletoilet" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/shuttle/abandoned) +"jg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"jt" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault"; + tag = "icon-vault (WEST)" + }, +/area/shuttle/abandoned) +"ju" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue"; + tag = "icon-whitehall (WEST)" + }, +/area/shuttle/abandoned) +"jD" = ( +/obj/machinery/door/airlock/medical, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/shuttle/abandoned) +"kn" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault"; + tag = "icon-vault (WEST)" + }, +/area/shuttle/abandoned) +"kC" = ( +/obj/item/gun/syringe/rapidsyringe, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/blood/tracks, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"kT" = ( +/obj/structure/chair/comfy/shuttle, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"lO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/tracks{ + pixel_y = -19 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"ma" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/shuttle/abandoned) +"mj" = ( +/obj/item/clothing/mask/breath, +/turf/template_noop, +/area/space) +"mB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/shuttle/abandoned) +"nb" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "whiteshipinnershutters"; + layer = 3; + name = "Medical Ship Inner Shutters" + }, +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"nk" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/passive_vent, +/obj/item/surgical_drapes, +/obj/item/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"nH" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "whiteshipinnershutters"; + layer = 3; + name = "Medical Ship Inner Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + desc = "Труба ведёт газ на фильтрацию"; + dir = 4; + name = "Труба на фильтрацию" + }, +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"nQ" = ( +/obj/structure/sign/vacuum{ + pixel_x = 32 + }, +/obj/structure/fans/tiny, +/obj/item/tank/internals/emergency_oxygen/empty, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/remains/human{ + desc = "This guy seemed to have died in terrible way! Half his remains are dust."; + name = "gnawed bones" + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/door_control/bolt_control/west{ + id = "whiteshipouterairlock1"; + in_use = 1; + pixel_y = -9 + }, +/obj/item/clothing/suit/space/hardsuit/medical, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/abandoned) +"oB" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/coffee{ + desc = "It's cold as dead body."; + pixel_x = 8; + pixel_y = 8; + volume = 15 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"oH" = ( +/obj/machinery/light/directional/west, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/shuttle/abandoned) +"oR" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"ph" = ( +/obj/structure/sign/vacuum{ + pixel_x = 32 + }, +/obj/structure/fans/tiny, +/obj/machinery/light/small/directional/west, +/obj/machinery/door_control/bolt_control/west{ + id = "whiteshipouterairlock2"; + in_use = 1; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/abandoned) +"po" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/effect/decal/remains/human{ + desc = "This guy seemed to have died in terrible way! Half his remains are dust."; + name = "gnawed bones" + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/mob/living/simple_animal/hostile/undead/zombie, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" + }, +/area/shuttle/abandoned) +"pz" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/cryo_cell, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/abandoned) +"pE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/shuttle/abandoned) +"pG" = ( +/obj/structure/sign/poster/official/nanotrasen_logo, +/turf/simulated/wall/indestructible/whiteshuttle, +/area/shuttle/abandoned) +"qi" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/item/clothing/shoes/blue, +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" + }, +/area/shuttle/abandoned) +"qE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/shuttle/abandoned) +"rC" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" + }, +/area/shuttle/abandoned) +"sW" = ( +/obj/structure/table/tray, +/obj/machinery/atmospherics/unary/vent_scrubber{ + name = "standard air scrubber"; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/obj/item/retractor, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"sX" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"sZ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "air into ship gas pump" + }, +/obj/item/stack/sheet/wood, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"ta" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"tp" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/shuttle/abandoned) +"tw" = ( +/mob/living/simple_animal/hostile/undead/zombie, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"ub" = ( +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"uo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + initialize_directions = 11 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5 + }, +/obj/machinery/door_control/bolt_control/south{ + id = "whiteshipinnerairlock1"; + in_use = 1; + pixel_x = -8 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -1; + pixel_y = -9 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"ut" = ( +/obj/item/wrench/medical, +/turf/simulated/floor/plasteel, +/area/shuttle/abandoned) +"vk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/scalpel/laser/laser2{ + pixel_y = 12 + }, +/obj/structure/closet/walllocker/medlocker{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"vo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plasteel, +/area/shuttle/abandoned) +"vt" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"vH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/machinery/sleeper/survival_pod, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue"; + tag = "icon-whitehall (WEST)" + }, +/area/shuttle/abandoned) +"vW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/flashlight/flare/glowstick/emergency, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"wD" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "whiteshipbridgeshutters"; + layer = 3; + name = "Medical Ship Bridge Shutters" + }, +/obj/docking_port/stationary/whiteship{ + dir = 8; + id = "whiteship_away"; + name = "Deep Space"; + dwidth = 8; + height = 31 + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 8; + height = 31; + id = "whiteship"; + name = "NT Medical Ship"; + roundstart_move = null; + width = 21 + }, +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"wF" = ( +/obj/structure/rack, +/obj/machinery/light_construct/directional/south, +/obj/item/clothing/under/rank/medical/scrubs/green, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"wI" = ( +/obj/item/gun/energy/gun/mini, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"xf" = ( +/obj/machinery/power/smes, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault"; + tag = "icon-vault (WEST)" + }, +/area/shuttle/abandoned) +"xg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + name = "standard air scrubber"; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/obj/machinery/light_construct/small/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"xr" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/hardsuit/medical, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/unary/vent_scrubber{ + name = "standard air scrubber"; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/obj/item/tank/internals/emergency_oxygen/double, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"xx" = ( +/obj/machinery/door/airlock/medical/glass, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" + }, +/area/shuttle/abandoned) +"xz" = ( +/obj/structure/sink/directional/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/item/radio, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"xP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/reagent_containers/syringe{ + pixel_x = -1; + pixel_y = 11 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"yw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/medical/glass, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"yx" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external{ + id_tag = "whiteshipbackairlock2"; + locked = 1; + name = "External Airlock" + }, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"yH" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "whiteshipbridgeshutters"; + layer = 3; + name = "Medical Ship Bridge Shutters" + }, +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"yQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/obj/machinery/door_control/bolt_control/north{ + id = "whiteshipbridgeairlock"; + in_use = 1; + pixel_x = -24 + }, +/mob/living/simple_animal/hostile/undead/zombie/fast, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"zl" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 + }, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"Ag" = ( +/obj/structure/closet{ + icon_closed = "white"; + icon_state = "white"; + name = "Medical gear" + }, +/obj/item/clothing/under/rank/medical/paramedic, +/obj/item/clothing/shoes/black, +/obj/item/surgical_drapes, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"AL" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/machinery/atmospherics/unary/passive_vent{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"Bm" = ( +/turf/template_noop, +/area/space) +"Bu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + initialize_directions = 11 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"By" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/abandoned) +"BJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"BS" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical{ + level = 1.4 + }, +/obj/structure/curtain/open, +/obj/machinery/atmospherics/unary/passive_vent, +/obj/machinery/light_construct/small/west, +/obj/machinery/door_control/shutter/east{ + id = "whiteshiproom1"; + name = "Room 1 Shutters Control"; + pixel_y = -2 + }, +/mob/living/simple_animal/hostile/undead/zombie/fast, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/shuttle/abandoned) +"BY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/obj/machinery/door/window/reinforced/normal{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"Ce" = ( +/obj/structure/sign/lifestar, +/turf/simulated/wall/indestructible/whiteshuttle, +/area/shuttle/abandoned) +"Ci" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" + }, +/area/shuttle/abandoned) +"Cj" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical{ + level = 1.4 + }, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue"; + tag = "icon-whiteblue (NORTH)" + }, +/area/shuttle/abandoned) +"Ck" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/splatter, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"CI" = ( +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"CR" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"DF" = ( +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue"; + tag = "icon-whitehall (WEST)" + }, +/area/shuttle/abandoned) +"DH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"DV" = ( +/obj/structure/rack, +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/obj/item/radio, +/obj/machinery/light_construct/directional/east, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"Ep" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/machinery/door/airlock/medical/glass, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" + }, +/area/shuttle/abandoned) +"EF" = ( +/obj/structure/table, +/obj/machinery/atmospherics/unary/passive_vent, +/obj/item/clothing/mask/breath/vox, +/obj/item/clothing/under/rank/medical/doctor, +/obj/item/stack/medical/ointment/aloe, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"Fw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood, +/obj/machinery/light_construct/small/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"Fz" = ( +/obj/structure/rack, +/obj/item/reagent_containers/glass/beaker/waterbottle/large{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle/large, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"FA" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/bag/trash, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"FJ" = ( +/mob/living/simple_animal/hostile/carp, +/turf/template_noop, +/area/space) +"FZ" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/structure/sign/lifestar{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"Gg" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + tag = "icon-propulsion (NORTH)" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/abandoned) +"Gi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"Go" = ( +/obj/machinery/door/airlock/external{ + id_tag = "whiteshipouterairlock2"; + locked = 1; + name = "External Airlock" + }, +/turf/simulated/floor/mineral/titanium/airless, +/area/shuttle/abandoned) +"Gv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8; + initialize_directions = 11 + }, +/obj/item/clothing/gloves/color/latex, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"Gy" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical{ + level = 1.4 + }, +/obj/structure/curtain/open, +/obj/machinery/atmospherics/unary/passive_vent, +/obj/machinery/light_construct/small/west, +/obj/machinery/door_control/shutter/east{ + id = "whiteshiproom2"; + name = "Room 2 Shutters Control"; + pixel_y = -2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/shuttle/abandoned) +"GC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/handheld_defibrillator, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"GO" = ( +/obj/effect/decal/cleanable/blood, +/mob/living/simple_animal/hostile/undead/zombie/fast, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"Ia" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/shuttle/abandoned) +"IC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + desc = "Труба ведёт газ на фильтрацию"; + dir = 4; + name = "Труба на фильтрацию" + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"IG" = ( +/obj/machinery/door_control/bolt_control/south{ + id = "whiteshipbackairlock1"; + in_use = 1; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/shuttle/abandoned) +"Jn" = ( +/obj/structure/table/glass, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/drinks/mug/cmo, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"JJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/rack, +/obj/item/storage/box/autoinjectors{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/machinery/light/directional/west, +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/item/tank/internals/emergency_oxygen/nitrogen{ + pixel_x = -1; + pixel_y = -2 + }, +/obj/item/tank/internals/emergency_oxygen/plasma{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"JR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/undead/zombie/fast, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"Kr" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"Kt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/machinery/atmospherics/unary/passive_vent{ + dir = 1 + }, +/obj/item/clothing/accessory/stethoscope, +/obj/item/flashlight/pen, +/obj/item/reagent_containers/food/snacks/grown/apple{ + desc = "An apple a day - keeps doctor away..."; + pixel_x = 2; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue"; + tag = "icon-whiteblue" + }, +/area/shuttle/abandoned) +"KE" = ( +/obj/machinery/iv_drip, +/obj/machinery/light_construct/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"KK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/mob/living/simple_animal/hostile/undead/zombie/fast, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"KM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"Ll" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/shuttle/abandoned) +"LA" = ( +/obj/machinery/computer/shuttle/white_ship{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"Mx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"Mz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human{ + desc = "This guy seemed to have died in terrible way! Half his remains are dust."; + name = "gnawed bones" + }, +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"MN" = ( +/obj/structure/sink{ + layer = 4; + pixel_y = 19 + }, +/obj/structure/mirror{ + pixel_y = 35 + }, +/obj/machinery/atmospherics/unary/passive_vent, +/obj/effect/decal/cleanable/blood, +/obj/item/weldingtool{ + maximum_fuel = 15 + }, +/obj/machinery/door_control/bolt_control/south{ + id = "whiteshuttletoilet"; + in_use = 1; + pixel_x = -25 + }, +/mob/living/simple_animal/hostile/undead/zombie, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/shuttle/abandoned) +"MZ" = ( +/obj/item/gps/ruin{ + gpstag = "NT Medical Ship"; + pixel_y = -32 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"NI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/circular_saw, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"NR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/command{ + id_tag = "whiteshipbridgeairlock"; + locked = 1; + name = "Medical Shuttle Bridge airlock" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"NV" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "whiteshiproom2"; + layer = 3; + name = "Room 2 Shutters" + }, +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"Oi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/under/retro/medical{ + name = "old medical officer's uniform" + }, +/mob/living/simple_animal/hostile/undead/zombie/fast, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"Pi" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4; + name = "standard air scrubber"; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/obj/structure/rack, +/obj/item/extinguisher/mini, +/obj/item/clothing/gloves/color/fyellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/shuttle/abandoned) +"PB" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/machinery/power/port_gen/pacman, +/obj/machinery/atmospherics/unary/passive_vent{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"PK" = ( +/obj/item/trash/liquidfood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1; + initialize_directions = 11 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/obj/machinery/door_control/bolt_control/north{ + id = "whiteshipinnerairlock2"; + in_use = 1; + pixel_x = -8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"PU" = ( +/obj/machinery/light/directional/south, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue"; + tag = "icon-whiteblue" + }, +/area/shuttle/abandoned) +"Qh" = ( +/obj/structure/table/tray, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/mask/surgical, +/obj/machinery/atmospherics/unary/vent_scrubber{ + name = "standard air scrubber"; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = 32 + }, +/obj/item/storage/firstaid/surgery{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"Qp" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"Qs" = ( +/obj/machinery/door/airlock/external{ + id_tag = "whiteshipouterairlock1"; + locked = 1; + name = "External Airlock" + }, +/obj/effect/decal/cleanable/blood/tracks, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qz" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"QF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + initialize_directions = 11 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"Rf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/machinery/door/airlock/medical, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" + }, +/area/shuttle/abandoned) +"Rw" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault"; + tag = "icon-vault (WEST)" + }, +/area/shuttle/abandoned) +"RE" = ( +/obj/item/clothing/glasses/welding, +/obj/structure/closet, +/obj/item/screwdriver, +/obj/item/multitool, +/obj/item/wirecutters, +/obj/item/analyzer, +/obj/item/t_scanner, +/obj/item/stack/cable_coil, +/obj/item/flashlight, +/obj/item/clothing/head/hardhat, +/obj/item/weldingtool, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/shuttle/abandoned) +"RN" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/abandoned) +"RT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + id_tag = "whiteshipinnerairlock1"; + name = "External Airlock" + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/tracks, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/abandoned) +"RU" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plasteel, +/area/shuttle/abandoned) +"RZ" = ( +/obj/structure/shuttle/engine/propulsion{ + tag = "icon-propulsion (NORTH)" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/abandoned) +"Sl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + initialize_directions = 11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"Ss" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet{ + pixel_y = -28 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/abandoned) +"Su" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/medical/glass, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"SU" = ( +/obj/machinery/atmospherics/unary/passive_vent{ + dir = 1 + }, +/obj/structure/closet/l3closet, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"Ta" = ( +/obj/machinery/door/airlock/medical, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"Ts" = ( +/turf/simulated/wall/indestructible/whiteshuttle, +/area/shuttle/abandoned) +"Tt" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue"; + tag = "icon-whitehall (WEST)" + }, +/area/shuttle/abandoned) +"TS" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/glass/bottle/reagent/formaldehyde, +/obj/machinery/door/window/reinforced/normal{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"Ud" = ( +/obj/machinery/optable, +/obj/item/clothing/mask/breath/medical, +/obj/item/tank/internals/anesthetic, +/obj/machinery/defibrillator_mount/loaded{ + pixel_x = 26 + }, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/abandoned) +"Ug" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door_control/bolt_control/north{ + id = "whiteshipbackairlock2"; + in_use = 1; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/shuttle/abandoned) +"Ul" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"Uy" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" + }, +/area/shuttle/abandoned) +"UY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"Vj" = ( +/obj/machinery/light_construct/small/north, +/obj/item/clothing/gloves/color/red/insulated, +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/shuttle/abandoned) +"VU" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluefull" + }, +/area/shuttle/abandoned) +"WE" = ( +/obj/machinery/door/airlock/medical, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/item/soap, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"WM" = ( +/obj/item/tank/internals/emergency_oxygen/nitrogen{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -1; + pixel_y = 11 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"WS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + name = "standard air scrubber"; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/obj/structure/closet/l3closet, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"Xa" = ( +/obj/machinery/computer{ + dir = 8; + icon_state = "broken"; + icon_screen = "broken"; + icon_keyboard = "generic_key_broken" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"XJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/storage/belt/medical, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"XS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma{ + amount = 15 + }, +/turf/simulated/floor/plasteel, +/area/shuttle/abandoned) +"XW" = ( +/obj/machinery/door/airlock/external{ + id_tag = "whiteshipbackairlock1"; + name = "External Airlock" + }, +/obj/structure/fans/tiny, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"XX" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1; + name = "standard air scrubber"; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/obj/structure/coatrack, +/obj/item/clothing/suit/storage/labcoat/cmo{ + desc = "Bluer than the standard model. Still look like a new one"; + name = "old chief medical officer's labcoat" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"Yn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"YG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/remains/human{ + desc = "This guy seemed to have died in terrible way! Half his remains are dust."; + name = "Human remains" + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"YM" = ( +/obj/item/kitchen/utensil/spoon, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/shuttle/abandoned) +"YY" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/iv_bag/salglu, +/obj/item/reagent_containers/iv_bag/salglu, +/obj/item/reagent_containers/iv_bag/blood/AMinus, +/obj/item/reagent_containers/iv_bag/blood/APlus, +/obj/item/reagent_containers/iv_bag/blood/BMinus, +/obj/item/reagent_containers/iv_bag/blood/BPlus, +/obj/item/reagent_containers/iv_bag/blood/OMinus, +/obj/item/reagent_containers/iv_bag/blood/OPlus, +/obj/item/reagent_containers/iv_bag/blood/vox, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"Zf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/splatter, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "scrubber to outside gas pump"; + target_pressure = 4000 + }, +/obj/item/clothing/under/rank/medical/scrubs/purple, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" + }, +/area/shuttle/abandoned) +"Zn" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + tag = "icon-propulsion (NORTH)" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/abandoned) +"Zr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/crowbar/red{ + desc = "..."; + force = 20; + name = "Легендарная монтировка" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull"; + tag = "icon-whitebluefull" + }, +/area/shuttle/abandoned) +"Zx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) +"ZB" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + tag = "icon-propulsion (NORTH)" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/abandoned) +"ZP" = ( +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/shuttle/abandoned) +"ZS" = ( +/obj/structure/sign/vacuum{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/shuttle/abandoned) +"ZU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/item/kitchen/utensil/fork, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/shuttle/abandoned) + +(1,1,1) = {" +Bm +Bm +Bm +Bm +Bm +Bm +Zn +Zn +Bm +Zn +Zn +Bm +Bm +Bm +Bm +Bm +Bm +"} +(2,1,1) = {" +Bm +Bm +Bm +Bm +Bm +Ts +Ts +aA +Bm +aA +Ts +Ts +Bm +Bm +Bm +Bm +Bm +"} +(3,1,1) = {" +Bm +Bm +Bm +Bm +Bm +aA +oH +Ts +Bm +Ts +gL +aA +Bm +Bm +Bm +Bm +Bm +"} +(4,1,1) = {" +Bm +Bm +Bm +Bm +Bm +yx +Ug +Ts +Bm +Ts +IG +XW +Bm +Bm +Bm +Bm +Bm +"} +(5,1,1) = {" +Bm +Bm +Bm +Bm +Bm +Ts +is +Ts +Bm +Ts +ZS +Ts +Bm +Bm +Bm +Bm +Bm +"} +(6,1,1) = {" +Bm +Bm +Bm +Bm +Bm +Ce +CI +Ts +Bm +Ts +vW +Ce +Bm +Bm +Bm +Bm +Bm +"} +(7,1,1) = {" +Bm +Bm +FJ +Bm +Bm +Ts +ab +Ts +Bm +Ts +Mx +Ts +Bm +Bm +Bm +Bm +Bm +"} +(8,1,1) = {" +Bm +Bm +Bm +Bm +Zn +Ts +KM +Ts +Bm +Ts +CI +Ts +Zn +Bm +Bm +Bm +Bm +"} +(9,1,1) = {" +Bm +Bm +Bm +Bm +aA +Ts +Zr +Ts +Bm +Ts +rC +Ts +aA +Bm +Bm +Bm +Bm +"} +(10,1,1) = {" +Bm +Bm +Bm +Zn +Ts +Pi +RU +Ts +Bm +Ts +ut +RE +Ts +Zn +Bm +Bm +Bm +"} +(11,1,1) = {" +Bm +Bm +Bm +aA +Ts +XS +af +Ts +Bm +Ts +bT +FA +Ts +aA +Bm +Bm +Bm +"} +(12,1,1) = {" +Bm +Bm +Ts +Ts +xf +vo +DH +Ts +hs +Ts +Fw +Ll +Rw +Ts +Ts +Bm +Bm +"} +(13,1,1) = {" +Bm +Bm +pG +jt +Mz +qE +PB +Ts +nH +Ts +Qz +dy +sZ +kn +pG +Bm +Bm +"} +(14,1,1) = {" +Bm +ZB +Ts +Ts +Ts +jD +Ts +Ts +IC +Ts +Ts +ik +Ts +Ts +Ts +RZ +Bm +"} +(15,1,1) = {" +Bm +aA +Ts +Ts +io +Ck +Ep +Uy +Zf +Ci +xx +ic +dm +Ts +Ts +aA +Bm +"} +(16,1,1) = {" +Bm +aA +Ts +Qh +QF +Ss +Ts +CR +po +gc +Ts +vt +NI +YY +aA +aA +Bm +"} +(17,1,1) = {" +Bm +nb +nk +bg +xz +Ud +Ts +Ts +qi +Ts +Ts +sW +Gi +Gv +SU +nb +Bm +"} +(18,1,1) = {" +Ts +aA +aA +Ta +Ts +Ts +Ts +vH +pE +ju +Ts +Cj +tw +UY +KE +aA +Ts +"} +(19,1,1) = {" +ih +BS +ma +gB +ca +Ts +pz +tp +Ia +Kt +Ts +Ts +Ts +vk +Kr +dr +Ts +"} +(20,1,1) = {" +Ts +Ts +aA +jg +wF +Ts +RN +mB +bX +PU +Ts +Vj +Ts +ii +GO +BY +Ts +"} +(21,1,1) = {" +NV +Gy +ma +Bu +WS +Ts +By +hl +fo +cl +Ts +MN +iX +Sl +ZP +TS +Ts +"} +(22,1,1) = {" +Ce +Ts +aA +gD +Ts +Ts +dv +Tt +gs +DF +Ts +bP +Ts +WE +aA +Ts +Ce +"} +(23,1,1) = {" +Go +ph +hR +ZU +cT +aA +Ts +Ts +Rf +aA +Ts +Ts +Ts +lO +RT +nQ +Qs +"} +(24,1,1) = {" +Ts +Ts +aA +PK +ta +AL +aA +FZ +Zx +xg +aA +EF +JJ +uo +aA +Ts +Ts +"} +(25,1,1) = {" +Bm +nb +xr +JR +XJ +iu +yw +GC +dU +ec +Su +kC +KK +xP +gf +nb +mj +"} +(26,1,1) = {" +Bm +Ts +Ts +bY +YM +oR +aA +Ts +NR +Ts +aA +Ag +WM +Ul +Ts +Ts +Bm +"} +(27,1,1) = {" +Bm +Bm +aA +aA +Fz +aA +aA +aI +BJ +XX +aA +aA +DV +aA +aA +Bm +Bm +"} +(28,1,1) = {" +Bm +Bm +Gg +Ce +Ts +aA +zl +yQ +Yn +YG +MZ +aA +Ts +Ce +Gg +Bm +Bm +"} +(29,1,1) = {" +Bm +Bm +Bm +Bm +aA +VU +kT +wI +iO +Oi +sX +Jn +aA +Bm +Bm +Bm +Bm +"} +(30,1,1) = {" +Bm +Bm +Bm +Bm +yH +yH +ub +Qp +oB +LA +Xa +yH +yH +Bm +Bm +Bm +Bm +"} +(31,1,1) = {" +Bm +Bm +Bm +Bm +Bm +yH +yH +yH +wD +yH +yH +yH +Bm +Bm +Bm +Bm +Bm +"} diff --git a/_maps/map_files220/RandomZLevels/beach.dmm b/_maps/map_files220/RandomZLevels/beach.dmm new file mode 100644 index 000000000000..1b8d414b6c55 --- /dev/null +++ b/_maps/map_files220/RandomZLevels/beach.dmm @@ -0,0 +1,3692 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/table/wood, +/obj/item/book/manual/barman_recipes{ + pixel_y = 2; + pixel_x = -6 + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/beach) +"bc" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/effect/decal/snow/sand/edge{ + dir = 9; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bd" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"be" = ( +/obj/effect/decal/snow/sand/edge{ + dir = 5; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bf" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bg" = ( +/obj/effect/decal/snow/sand/edge{ + dir = 8; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bh" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/effect/decal/snow/sand/edge{ + dir = 4; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bi" = ( +/obj/effect/decal/snow/sand/edge{ + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bj" = ( +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bk" = ( +/obj/effect/decal/snow/sand/surround{ + dir = 1; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bl" = ( +/obj/effect/decal/snow/sand/edge{ + dir = 4; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bm" = ( +/obj/effect/decal/snow/sand/edge{ + dir = 9; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bn" = ( +/obj/effect/decal/snow/sand/edge{ + name = "rough sand" + }, +/turf/simulated/floor/grass, +/area/awaymission/beach) +"bo" = ( +/obj/effect/decal/snow/sand/edge{ + dir = 10; + name = "rough sand" + }, +/turf/simulated/floor/grass, +/area/awaymission/beach) +"bp" = ( +/obj/effect/decal/snow/sand/surround{ + name = "rough sand" + }, +/turf/simulated/floor/grass, +/area/awaymission/beach) +"bq" = ( +/obj/effect/decal/snow/sand/edge{ + dir = 6; + name = "rough sand" + }, +/turf/simulated/floor/grass, +/area/awaymission/beach) +"br" = ( +/obj/effect/decal/snow/sand/edge{ + dir = 6; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bs" = ( +/obj/effect/decal/snow/sand/edge{ + dir = 10; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bt" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bw" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"bx" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/decal/snow/sand/edge{ + dir = 9; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"by" = ( +/obj/effect/decal/snow/sand/edge{ + dir = 1; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bz" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bA" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/effect/decal/snow/sand/edge{ + dir = 1; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bB" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/decal/snow/sand/edge{ + dir = 1; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bC" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/decal/snow/sand/edge{ + dir = 4; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bD" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/overlay/coconut, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bE" = ( +/obj/structure/flora/bush, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bF" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bG" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"bH" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/decal/snow/sand/edge{ + dir = 8; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bJ" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/decal/snow/sand/edge{ + dir = 1; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bK" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/overlay/coconut, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bL" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bM" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/effect/decal/snow/sand/edge{ + dir = 1; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bN" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bO" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bP" = ( +/obj/structure/flora/rock/pile, +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bQ" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bR" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bS" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"bT" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"bU" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"bV" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"bW" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"bX" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"bY" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"bZ" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"ca" = ( +/obj/structure/flora/rock/pile, +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"cb" = ( +/obj/structure/flora/rock/pile, +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"cc" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"cd" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"ce" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"cf" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"cg" = ( +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"ch" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"ci" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/overlay/coconut, +/obj/effect/decal/snow/sand/edge{ + dir = 1; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"cm" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"cq" = ( +/obj/effect/decal/snow/sand/edge{ + name = "rough sand" + }, +/obj/structure/closet/crate/internals, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"cr" = ( +/obj/effect/decal/snow/sand/edge{ + name = "rough sand" + }, +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"cs" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/effect/decal/snow/sand/edge{ + dir = 5; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"cu" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"cv" = ( +/obj/structure/flora/bush, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"cB" = ( +/obj/effect/decal/snow/sand/edge{ + dir = 4; + name = "rough sand" + }, +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"cE" = ( +/turf/simulated/wall/mineral/sandstone, +/area/awaymission/beach) +"cG" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/decal/snow/sand/edge{ + dir = 8; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"cJ" = ( +/obj/effect/decal/snow/sand/edge{ + dir = 4; + name = "rough sand" + }, +/obj/structure/closet/athletic_mixed, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"cN" = ( +/obj/effect/decal/snow/sand/edge{ + dir = 4; + name = "rough sand" + }, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/structure/closet/crate, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"cO" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/wood/oak, +/area/awaymission/beach) +"cS" = ( +/obj/structure/closet/gmcloset{ + name = "formal wardrobe" + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/beach) +"cU" = ( +/obj/structure/closet/secure_closet/bar, +/turf/simulated/floor/wood/oak, +/area/awaymission/beach) +"cV" = ( +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/awaymission/beach) +"cW" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/beer{ + pixel_y = 6 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/beach) +"cX" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/soda{ + pixel_y = 6 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/beach) +"cY" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"cZ" = ( +/obj/machinery/economy/vending/boozeomat{ + emagged = 1 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/beach) +"da" = ( +/obj/structure/table/wood, +/obj/item/clothing/glasses/sunglasses, +/turf/simulated/floor/wood/oak, +/area/awaymission/beach) +"db" = ( +/obj/machinery/economy/vending/cola, +/turf/simulated/floor/wood/oak, +/area/awaymission/beach) +"dc" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"dd" = ( +/mob/living/simple_animal/crab, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"de" = ( +/obj/effect/overlay/coconut, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"df" = ( +/mob/living/simple_animal/crab/Coffee, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"dg" = ( +/obj/structure/chair, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"dh" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"di" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/stalkybush, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"dj" = ( +/turf/simulated/floor/beach/away/coastline, +/area/awaymission/beach) +"dk" = ( +/turf/simulated/floor/beach/away/coastline/dense, +/area/awaymission/beach) +"dl" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/wood/oak, +/area/awaymission/beach) +"dm" = ( +/obj/machinery/economy/vending/snack, +/turf/simulated/floor/wood/oak, +/area/awaymission/beach) +"dn" = ( +/obj/structure/curtain/open, +/turf/simulated/floor/wood/oak, +/area/awaymission/beach) +"dq" = ( +/turf/simulated/floor/wood/oak, +/area/awaymission/beach) +"dr" = ( +/turf/simulated/floor/beach/away/water, +/area/awaymission/beach) +"ds" = ( +/turf/simulated/floor/beach/away/water/dense, +/area/awaymission/beach) +"dt" = ( +/turf/simulated/floor/beach/away/water/drop, +/area/awaymission/beach) +"du" = ( +/turf/simulated/floor/beach/away/water/deep, +/area/awaymission/beach) +"dw" = ( +/turf/simulated/floor/beach/away/water/deep/dense, +/area/awaymission/beach) +"dx" = ( +/turf/simulated/floor/beach/away/water/drop/dense, +/area/awaymission/beach) +"dy" = ( +/turf/simulated/floor/beach/away/water/edge_drop, +/area/awaymission/beach) +"dz" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/decal/snow/sand/edge{ + dir = 10; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"dA" = ( +/obj/structure/mineral_door/wood, +/turf/simulated/floor/wood/oak, +/area/awaymission/beach) +"dB" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/beach/away/sand/dense, +/area/awaymission/beach) +"dF" = ( +/obj/effect/decal/snow/sand/edge{ + dir = 1; + name = "rough sand" + }, +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"dP" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/decal/snow/sand/edge{ + dir = 6; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"dT" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/decal/snow/sand/edge{ + dir = 8; + name = "rough sand" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"em" = ( +/obj/item/beach_ball, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"eo" = ( +/obj/effect/waterfall{ + dir = 1; + water_frequency = 75 + }, +/turf/simulated/floor/beach/away/coastline, +/area/awaymission/beach) +"eq" = ( +/obj/effect/waterfall{ + dir = 1; + water_frequency = 192 + }, +/turf/simulated/floor/beach/away/coastline, +/area/awaymission/beach) +"er" = ( +/obj/effect/waterfall{ + dir = 1; + water_frequency = 104 + }, +/turf/simulated/floor/beach/away/coastline, +/area/awaymission/beach) +"ew" = ( +/obj/effect/waterfall{ + dir = 1; + water_frequency = 44 + }, +/turf/simulated/floor/beach/away/coastline, +/area/awaymission/beach) +"ey" = ( +/obj/effect/waterfall{ + dir = 1; + water_frequency = 97 + }, +/turf/simulated/floor/beach/away/coastline, +/area/awaymission/beach) +"eB" = ( +/obj/effect/waterfall{ + dir = 1; + water_frequency = 94 + }, +/turf/simulated/floor/beach/away/coastline, +/area/awaymission/beach) +"jB" = ( +/obj/machinery/gateway, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"lR" = ( +/obj/machinery/gateway/centeraway, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"nL" = ( +/turf/simulated/wall/indestructible/sandstone, +/area/space) +"sF" = ( +/obj/effect/baseturf_helper/beach/away/sand, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"vu" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"xU" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"zt" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"Cp" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"Kz" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"Lj" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) +"LZ" = ( +/obj/machinery/poolcontroller/invisible, +/turf/simulated/floor/beach/away/water/deep, +/area/awaymission/beach) +"Nw" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/beach) + +(1,1,1) = {" +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +"} +(2,1,1) = {" +nL +cg +cg +bw +cu +dh +cg +bw +cg +bw +by +bS +bj +bF +dz +dB +dh +cg +bB +bj +bF +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dy +du +du +du +du +du +nL +"} +(3,1,1) = {" +nL +cg +bw +bx +bH +bg +bH +bg +bH +cG +bj +bz +bR +bj +bz +bg +bg +dT +bD +bj +bE +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +du +du +du +du +du +nL +"} +(4,1,1) = {" +nL +bX +cg +bJ +bj +bD +bj +bz +bz +bj +bj +bD +bj +bN +bQ +bO +bz +bz +bj +bD +bF +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +du +du +du +du +du +nL +"} +(5,1,1) = {" +nL +bd +bm +bj +bD +bj +bK +bD +bj +bz +bQ +bj +bz +bN +bF +bj +bK +bj +bz +bj +bz +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +du +du +du +du +du +nL +"} +(6,1,1) = {" +nL +bc +bt +bj +bz +bD +bj +bS +bj +bz +bj +bF +bj +bz +bz +bj +bz +bj +bz +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +du +du +du +du +du +nL +"} +(7,1,1) = {" +nL +be +bl +bD +bE +bj +bz +bf +bj +bL +cm +ch +bj +bL +bj +bf +bf +bj +dc +bL +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +du +du +du +du +du +nL +"} +(8,1,1) = {" +nL +cg +bw +by +bz +bN +bf +bT +bX +bW +bV +bX +bW +bV +bW +cc +bX +bW +bX +bV +bW +dh +dk +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +dt +du +du +du +du +du +nL +"} +(9,1,1) = {" +nL +cg +bw +bB +bj +bt +bj +bU +cd +bj +bj +bj +bj +bj +bj +cd +cY +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(10,1,1) = {" +nL +cg +bw +bB +bF +bz +bN +bV +bj +zt +Kz +Cp +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +eo +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(11,1,1) = {" +nL +cg +bx +bj +bz +bz +bj +bW +bj +xU +lR +jB +bj +bj +bj +bz +bj +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(12,1,1) = {" +nL +bg +bj +bE +bj +bD +bL +bX +bj +vu +Lj +Nw +bj +bj +bj +bj +bj +bj +dd +bj +em +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(13,1,1) = {" +nL +bf +bj +bz +bz +bj +bz +bU +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(14,1,1) = {" +nL +bh +bj +bz +bz +bj +bj +bV +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +eq +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(15,1,1) = {" +nL +cg +bA +bD +bt +bE +bf +bW +bj +bj +bj +bj +sF +bj +bj +bj +bj +bj +bj +bF +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(16,1,1) = {" +nL +bX +by +bF +bj +bz +bj +bT +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +de +bj +bj +er +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(17,1,1) = {" +nL +cg +bB +bj +bF +bF +bf +bU +bj +bj +bK +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(18,1,1) = {" +nL +cg +bB +bj +bz +bz +bz +bX +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(19,1,1) = {" +nL +cg +by +bE +bj +bj +bj +bY +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +bj +dd +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(20,1,1) = {" +nL +bk +bj +bz +bj +bt +bj +bV +bj +bj +bj +bl +bl +bl +bl +bl +bj +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(21,1,1) = {" +nL +cg +by +bz +bD +bj +bN +bW +bj +bj +bi +cE +cE +cE +dA +cE +by +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(22,1,1) = {" +nL +bg +bC +bj +bF +bF +bj +bT +bj +bj +bi +cE +cS +dq +dq +cV +dF +bj +bj +bj +dg +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(23,1,1) = {" +nL +bi +bw +by +bj +bF +bj +bV +bj +bj +cq +cE +cU +dq +dq +cV +dF +bj +bj +bj +bj +bj +ew +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(24,1,1) = {" +nL +bj +bg +bz +bF +bK +bL +bX +bj +bj +cr +cE +aa +dq +dq +cV +dF +bj +bj +bj +dg +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(25,1,1) = {" +nL +bj +bj +bj +bz +bD +bj +bW +bj +bj +cq +cE +cX +dq +dq +cV +dF +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(26,1,1) = {" +nL +bl +bz +bE +bj +bj +bj +bV +bj +bj +bi +cE +cW +dq +dq +cV +dF +bj +bj +bj +dg +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(27,1,1) = {" +nL +cg +bB +bj +bz +bj +bP +bX +bj +bj +bi +cE +da +dq +dq +cV +dF +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(28,1,1) = {" +nL +cg +by +bj +bj +bz +bj +bT +bj +bj +bi +cE +cZ +dq +dq +cV +dF +bj +bj +bj +dg +bj +ey +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(29,1,1) = {" +nL +bm +bz +bz +bK +bj +bL +bZ +ce +bj +bi +cE +dl +dq +dq +cV +dF +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +dt +du +du +du +du +nL +"} +(30,1,1) = {" +nL +bj +bj +bz +bj +bK +bj +ca +bj +bj +bi +cE +db +dq +dq +cV +dF +bj +bj +bj +dg +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +dx +dt +du +du +dt +dt +du +nL +"} +(31,1,1) = {" +nL +bl +bl +bF +bj +bz +bj +bX +cf +bj +bi +cE +dm +dq +dq +cV +dF +bj +bj +bF +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +dt +dw +du +du +du +du +dt +du +nL +"} +(32,1,1) = {" +nL +cg +bw +by +bE +bj +bQ +bT +cd +bj +bi +cE +cE +cE +cE +cE +by +bj +bj +bj +dg +bj +er +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +du +dw +du +du +du +du +dt +du +nL +"} +(33,1,1) = {" +nL +cg +cg +bJ +bj +bD +bj +cb +bj +bj +bj +bg +bg +bg +bg +bg +bj +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +du +dw +du +du +du +du +dt +du +nL +"} +(34,1,1) = {" +nL +cg +cg +by +bj +bF +bf +bV +bj +bj +cJ +cN +bl +bj +bj +bj +bj +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +dt +dw +du +du +dt +du +du +du +nL +"} +(35,1,1) = {" +nL +cg +bw +by +bD +bL +bj +cc +bj +bi +cE +cE +cE +by +bj +bj +bj +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +dx +du +du +du +du +du +du +nL +"} +(36,1,1) = {" +nL +cg +bX +by +bz +bj +bN +bX +bj +bi +cE +cO +dn +by +bj +bF +bj +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dx +dt +du +du +du +du +du +nL +"} +(37,1,1) = {" +nL +bo +bd +bB +bE +bz +bj +bW +bj +bi +cE +cE +cE +by +bj +bj +bj +bj +bj +df +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(38,1,1) = {" +nL +bn +cg +bM +bj +bj +bN +ca +bj +bj +bg +bg +bg +bj +bj +bj +bj +bj +bj +bj +bj +bj +ey +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(39,1,1) = {" +nL +bn +cg +ci +bf +bL +bj +cc +bj +bj +cJ +cN +bl +bj +bj +em +bj +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(40,1,1) = {" +nL +bq +bw +by +bj +bz +bf +bX +bj +bi +cE +cE +cE +by +bj +bj +bj +bj +bz +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(41,1,1) = {" +nL +cg +bG +by +bz +bj +bj +bT +bj +bi +cE +cO +dn +by +bj +bj +bj +bj +bj +de +bj +bj +eB +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(42,1,1) = {" +nL +bp +cg +by +bL +bj +bN +bV +bj +bi +cE +cE +cE +by +bF +bj +bj +bj +bj +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(43,1,1) = {" +nL +cg +cg +bB +bj +bz +bj +bW +bj +bj +bg +bg +bg +bj +bj +bj +bj +bj +bj +bj +dg +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(44,1,1) = {" +nL +cg +cg +bB +bj +bD +bj +cc +bj +bj +cJ +cN +bl +bj +bj +bj +bj +bj +bj +bj +bj +bj +ey +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(45,1,1) = {" +nL +bg +bH +bj +bz +bz +bL +bX +bj +bi +cE +cE +cE +by +bj +bj +bj +bj +bj +bj +dg +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(46,1,1) = {" +nL +bj +bj +bj +bz +bj +bR +cb +bf +bi +cE +cO +dn +by +bj +bj +bj +bj +bj +bj +bj +bj +eq +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(47,1,1) = {" +nL +bj +bl +bC +bj +bz +bf +bX +bz +bi +cE +cE +cE +by +bj +bj +bj +bj +bj +bz +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(48,1,1) = {" +nL +br +bw +cg +by +bj +bN +bT +cf +bj +bg +bg +bg +bj +bj +bj +bj +bj +bj +bj +bj +bz +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +ds +dt +du +du +du +du +du +nL +"} +(49,1,1) = {" +nL +cg +bX +cg +bB +bL +bj +ca +cg +bW +bV +bW +bX +cc +bV +bW +bX +cc +bV +bX +bW +di +dk +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +dt +du +du +du +du +du +nL +"} +(50,1,1) = {" +nL +cg +cg +cg +ci +bE +bj +bj +ch +bD +bf +ch +bL +bj +bz +bf +bz +bL +bz +bj +bN +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +du +du +du +du +du +nL +"} +(51,1,1) = {" +nL +cg +cg +bx +bz +bj +bL +bL +bj +bj +bz +bz +bQ +bj +bz +bj +bR +bj +bK +bE +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +du +du +du +du +du +nL +"} +(52,1,1) = {" +nL +bs +cg +by +bj +bz +bj +bz +bK +bj +bz +bO +bK +bL +bj +bz +bj +bO +bj +bS +bz +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +du +du +du +du +du +nL +"} +(53,1,1) = {" +nL +br +bw +cs +bj +bj +bj +bR +cB +bl +bl +bl +bz +bj +bz +bj +bD +bj +bD +bj +bj +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +du +du +du +du +du +nL +"} +(54,1,1) = {" +nL +cg +cg +cg +bB +bO +bj +bi +bw +bw +cv +cg +bJ +bR +bj +bl +dP +bG +be +bz +bS +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +du +du +du +du +du +nL +"} +(55,1,1) = {" +nL +cg +cg +cg +by +bQ +bj +bz +bj +bR +bj +bK +bE +bQ +bj +bz +bj +bR +bj +de +bE +bj +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +du +du +du +du +LZ +nL +"} +(56,1,1) = {" +nL +cg +bw +by +bE +bK +bL +bj +bz +bj +bO +bj +bS +bK +bL +bj +bz +bj +bO +bj +bS +bF +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dt +du +du +du +du +du +nL +"} +(57,1,1) = {" +nL +cg +cg +bJ +bj +bz +bz +bz +bj +bD +bj +bD +bj +bz +bj +bz +bj +bD +bj +bD +bj +cb +dj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dy +du +du +du +du +du +nL +"} +(58,1,1) = {" +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +nL +"} diff --git a/_maps/map_files220/RandomZLevels/blackmarketpackers.dmm b/_maps/map_files220/RandomZLevels/blackmarketpackers.dmm new file mode 100644 index 000000000000..012c4cf4dc4c --- /dev/null +++ b/_maps/map_files220/RandomZLevels/blackmarketpackers.dmm @@ -0,0 +1,23949 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/space, +/area/space) +"ab" = ( +/turf/simulated/mineral/random/high_chance, +/area/awaymission) +"ac" = ( +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission) +"ad" = ( +/obj/effect/mob_spawn/human/corpse/doctor, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission) +"ae" = ( +/obj/item/circular_saw, +/obj/structure/lattice, +/turf/space, +/area/awaymission/BMPship/MedBay) +"ah" = ( +/obj/structure/alien/weeds, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"ai" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/engine/vacuum, +/area/awaymission/BMPship/TurretsSouth) +"al" = ( +/obj/item/stack/sheet/mineral/titanium, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"am" = ( +/obj/structure/lattice, +/turf/space, +/area/awaymission) +"an" = ( +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider{ + health = 250; + maxHealth = 250; + name = "angry giant spider"; + speed = 0.9 + }, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"ao" = ( +/obj/item/wrench/brass, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Bath) +"ap" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -7; + pixel_y = -10 + }, +/obj/item/shard, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TurretsSouth) +"ar" = ( +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"as" = ( +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"au" = ( +/obj/machinery/porta_turret{ + lethal = 1; + name = "ship defense turret"; + attacked = 1 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TurretsNorth) +"av" = ( +/obj/machinery/flasher/portable{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"aw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/mob/living/simple_animal/hostile/poison/giant_spider{ + health = 250; + maxHealth = 250; + name = "angry giant spider" + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"ax" = ( +/obj/machinery/light/directional/east, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ + health = 150; + maxHealth = 150; + name = "Angry giant spider" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"aA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/soap{ + pixel_y = -7 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"aB" = ( +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Gate) +"aC" = ( +/obj/machinery/light_construct/small/north, +/turf/simulated/floor/engine/vacuum, +/area/awaymission/BMPship/TurretsSouth) +"aD" = ( +/obj/machinery/light/small/directional/north, +/mob/living/simple_animal/hostile/poison/giant_spider, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/BMPship/Bath) +"aE" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TurretsNorth) +"aF" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/power/smes/magical{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit"; + outputting = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"aG" = ( +/obj/machinery/light_construct/small/north, +/obj/structure/alien/weeds, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"aH" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TurretsNorth) +"aI" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredaltstrip" + }, +/area/awaymission/BMPship/CommonArea) +"aK" = ( +/obj/structure/alien/weeds, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/alien/resin, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"aM" = ( +/obj/item/stack/sheet/mineral/plastitanium, +/turf/space, +/area/space) +"aN" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"aQ" = ( +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/Gate) +"aR" = ( +/obj/effect/landmark/damageturf, +/obj/item/apc_electronics, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TurretsNorth) +"aS" = ( +/obj/structure/bed/roller, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"aT" = ( +/obj/item/scalpel, +/obj/item/tank/internals/anesthetic, +/obj/structure/closet/crate/medical, +/obj/item/bodybag, +/obj/item/clothing/mask/surgical, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"aY" = ( +/obj/item/restraints/handcuffs, +/obj/structure/closet/crate, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"aZ" = ( +/obj/item/storage/box/syringes, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"ba" = ( +/obj/item/bodybag, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"bb" = ( +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Buffer) +"be" = ( +/obj/effect/decal/cleanable/blood/old{ + layer = 2.8 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"bf" = ( +/obj/item/gun/energy/gun/turret, +/turf/space, +/area/space) +"bg" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"bh" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"bi" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"bk" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/effect/spawner/window/shuttle, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Fore) +"bl" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/reagent_containers/food/drinks/bottle/patron, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 12; + on = 0 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Fore) +"bm" = ( +/obj/item/storage/box, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"bn" = ( +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c100, +/obj/item/coin/gold, +/obj/item/coin/gold, +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/item/storage/bag/money, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Fore) +"bo" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/mob/living/simple_animal/lizard, +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"bp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"bq" = ( +/obj/item/tank/internals/emergency_oxygen/empty, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission/BMPship/Buffer) +"br" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/warning_stripes/south, +/obj/structure/largecrate/goat, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"bs" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"bt" = ( +/obj/machinery/door/airlock/silver, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/restraints/legcuffs/beartrap{ + armed = 1 + }, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 2.8 + }, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Buffer) +"bu" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"bv" = ( +/obj/structure/bed, +/obj/item/bedsheet/cult, +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 24; + pixel_x = 8 + }, +/obj/machinery/light_construct/directional/east, +/obj/item/petcollar{ + name = "Derpy" + }, +/obj/effect/mob_spawn/human/corpse/tacticool, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Fore) +"bw" = ( +/obj/structure/alien/weeds, +/obj/effect/landmark/damageturf, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"by" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"bz" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"bA" = ( +/obj/effect/gibspawner/generic, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"bB" = ( +/obj/structure/girder, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"bE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/spawner/window/shuttle, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Fore) +"bF" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/item/shard, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Fore) +"bG" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Fore) +"bH" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 10; + pixel_x = -13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"bI" = ( +/obj/machinery/door/airlock/external{ + locked = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"bJ" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/largecrate, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"bL" = ( +/obj/item/reagent_containers/glass/beaker/waterbottle/large, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"bM" = ( +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"bN" = ( +/obj/structure/closet, +/obj/item/clothing/suit/xenos, +/obj/item/clothing/head/xenos, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/instrument/xylophone, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"bO" = ( +/obj/structure/table/wood, +/obj/item/paper{ + info = "DEAR DAIRY: So we was doing our typpical route when the captain says we've been picking up weird signals on some backwatter planet. Madsen wanted to stay on course but he ain't the captain, so we went out of the way to check it out. There was lots of rocks on the way, but we got to the planet fine. Found a big fancy camp with nobody around and this big metal donut thing with NT stamps all over it right in the middle. Case of beer too. Captain reckons we can pass it off to some buyer in the Syndicate. Ingram says it's bad luck and that someone is going to come look for it but it sounds like better money than selling bad meat to jerky companies."; + name = "Old Diary"; + layer = 2.9 + }, +/obj/item/pen/red{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/reagent_containers/syringe/charcoal, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"bP" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/effect/spawner/window/shuttle, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Fore) +"bQ" = ( +/obj/structure/dresser, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Fore) +"bR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/item/pen/multi/gold, +/obj/item/paper/crumpled/bloody{ + layer = 2.9; + desc = "Badly crumpled paper, heavily stained with blood. The full text cannot be understood, however, from fragments of words it becomes clear that this is a death note." + }, +/obj/item/gun/energy/gun/mini{ + layer = 2.8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "wood-broken"; + tag = "icon-wood-broken" + }, +/area/awaymission/BMPship/Fore) +"bT" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"bU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"bW" = ( +/obj/machinery/gateway, +/obj/effect/decal/cleanable/blood/tracks, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"bY" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"bZ" = ( +/obj/effect/decal/warning_stripes/south, +/obj/item/reagent_containers/food/drinks/sillycup, +/obj/item/reagent_containers/food/pill/methamphetamine, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"ca" = ( +/obj/item/clothing/glasses/regular/hipster, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"cb" = ( +/obj/machinery/door/airlock/titanium{ + locked = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Armory) +"cc" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/projectile/shotgun/riot/short{ + pixel_x = 6 + }, +/obj/item/gun/projectile/shotgun/riot/short{ + pixel_x = 3 + }, +/obj/item/gun/projectile/shotgun/riot/short, +/obj/structure/alien/weeds, +/obj/structure/alien/resin, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"cd" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"ce" = ( +/obj/structure/sign/poster/contraband/syndicate_pistol{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"cg" = ( +/obj/machinery/door/airlock/titanium{ + locked = 1 + }, +/obj/machinery/door/poddoor{ + layer = 2.8; + id_tag = "packerCaptain" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "carpetside"; + tag = "icon-carpetside (NORTH)" + }, +/area/awaymission/BMPship/Fore) +"ch" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"ci" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/constructable_frame/machine_frame, +/obj/item/circuitboard/smes, +/obj/item/stack/cable_coil/green, +/turf/simulated/floor/greengrid, +/area/awaymission/BMPship/Buffer) +"cm" = ( +/obj/structure/rack, +/obj/item/storage/box/mousetraps, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"co" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/centcom{ + dir = 4 + }, +/obj/item/reagent_containers/food/pill/methamphetamine, +/obj/structure/sign/poster/contraband/d_day_promo{ + pixel_x = -32 + }, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"cp" = ( +/obj/structure/alien/weeds, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"cq" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/item/ammo_casing, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"cr" = ( +/obj/structure/girder, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TurretsNorth) +"cs" = ( +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"ct" = ( +/obj/item/shard, +/turf/space, +/area/space) +"cu" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/food/snacks/monstermeat/bearmeat, +/obj/item/reagent_containers/food/snacks/monstermeat/bearmeat, +/obj/item/reagent_containers/food/snacks/monstermeat/bearmeat, +/obj/item/reagent_containers/food/snacks/monstermeat/bearmeat, +/obj/item/clothing/gloves/furgloves, +/obj/item/clothing/head/furcap, +/obj/item/clothing/shoes/furboots, +/obj/item/clothing/suit/furcoat, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"cv" = ( +/obj/machinery/defibrillator_mount{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"cw" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/reagent_containers/glass/rag, +/obj/item/storage/bag/trash, +/obj/item/trash/plate, +/obj/item/trash/plate, +/obj/item/trash/fried_vox, +/obj/item/trash/snack_bowl, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsSouth) +"cx" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"cy" = ( +/obj/machinery/door/airlock/silver, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"cz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"cB" = ( +/obj/structure/alien/weeds, +/obj/effect/decal/cleanable/greenglow, +/obj/item/reagent_containers/food/snacks/monstermeat/spiderleg, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"cC" = ( +/obj/structure/alien/weeds, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/alien/resin, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"cD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/rack, +/obj/item/storage/box/lights/mixed, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"cE" = ( +/obj/effect/landmark/damageturf, +/obj/item/stack/tile/plasteel, +/obj/item/stack/sheet/mineral/titanium, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"cF" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/awaymission/BMPship/Engines) +"cG" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/reagent_containers/glass/rag, +/obj/item/storage/bag/trash, +/obj/item/trash/plate, +/obj/item/trash/plate, +/obj/item/trash/tapetrash, +/obj/item/trash/tapetrash, +/obj/item/trash/popcorn, +/obj/item/trash/popcorn, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsSouth) +"cH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/south, +/obj/item/reagent_containers/food/snacks/meat, +/obj/structure/spider/stickyweb, +/obj/structure/spider/cocoon, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Containment) +"cI" = ( +/obj/structure/table, +/obj/item/storage/box, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"cL" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/spider/stickyweb, +/obj/structure/spider/cocoon, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"cM" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/computerframe, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"cN" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/chem_master/condimaster, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"cO" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"cP" = ( +/obj/structure/closet/secure_closet{ + req_access = list(111) + }, +/obj/item/id_decal/centcom, +/obj/item/clothing/head/helmet, +/obj/item/clothing/suit/armor/vest, +/obj/item/storage/box/slug, +/obj/item/storage/box/slug, +/obj/item/clothing/accessory/storage/black_vest, +/obj/structure/alien/weeds, +/obj/structure/alien/resin{ + layer = 3.1 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"cQ" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"cR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/south, +/obj/item/reagent_containers/food/snacks/meat, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"cS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"cT" = ( +/obj/machinery/light_construct/directional/north, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"cU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/structure/windoor_assembly{ + dir = 8 + }, +/obj/item/shard{ + icon_state = "small" + }, +/obj/structure/curtain/black, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"cV" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/sign/poster/contraband/energy_swords{ + pixel_y = 32 + }, +/obj/machinery/light_construct/small/east, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"cX" = ( +/obj/machinery/gibber, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"cY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/alien/weeds, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"cZ" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/food/snacks/monstermeat/lizardmeat, +/obj/item/reagent_containers/food/snacks/monstermeat/lizardmeat, +/obj/item/stack/sheet/animalhide/lizard, +/obj/effect/spawner/lootdrop/lizardboots, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"dc" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/stack/sheet/animalhide/monkey{ + layer = 3.2 + }, +/obj/effect/decal/remains/human, +/obj/structure/sign/poster/contraband/tools{ + pixel_x = -32 + }, +/obj/item/reagent_containers/food/pill/charcoal{ + layer = 2.9 + }, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"de" = ( +/obj/structure/chair/comfy/beige, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"dg" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/storage/wallet/random, +/obj/item/bedsheet/captain{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/revolver{ + pixel_x = -32 + }, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"dh" = ( +/obj/item/poster/random_contraband, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsSouth) +"dj" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/sign/securearea{ + name = "MAXIMUM ATTENTION"; + pixel_x = -32 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"dl" = ( +/obj/item/whetstone, +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider{ + health = 250; + maxHealth = 250; + name = "angry giant spider" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"dm" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"dn" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/spider/stickyweb, +/obj/item/stack/medical/bruise_pack/advanced, +/obj/item/stack/medical/bruise_pack/advanced, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/BMPship/Bath) +"do" = ( +/obj/item/skeleton, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"dp" = ( +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"dq" = ( +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"dr" = ( +/obj/structure/alien/weeds, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"ds" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"dt" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Buffer) +"du" = ( +/obj/item/mounted/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/item/soap/ducttape, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/BMPship/Bath) +"dv" = ( +/obj/structure/flora/straw_bail, +/turf/simulated/floor/grass, +/area/awaymission/BMPship/Kitchen) +"dw" = ( +/obj/effect/landmark/burnturf, +/obj/item/stock_parts/cell, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"dx" = ( +/obj/item/flashlight/flare{ + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"dy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/greencross{ + pixel_x = -32 + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"dz" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/warning_stripes/east, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"dA" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"dB" = ( +/obj/item/crowbar, +/obj/item/storage/box/monkeycubes, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"dC" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"dD" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + opened = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"dE" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"dF" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/spider/stickyweb, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/machinery/power/apc/off_station{ + dir = 8; + lighting_channel = 2; + locked = 0; + environment_channel = 0; + equipment_channel = 0; + pixel_x = -24; + start_charge = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"dG" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/largecrate/lisa, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"dH" = ( +/obj/item/paper{ + info = "I'm no scientist, but judging from the design and components, it seems to be some kind of gateway. This thing is gonna be worth a lot of cash to the right man. The boys are excited, as they have every right to be, and I've let them crack into that case of beer we got. I normally wouldn't allow such a thing, but this is a time for celebration! It's not like a couple drinks will hurt anything."; + name = "Captain's log entry" + }, +/obj/structure/alien/weeds, +/obj/item/folder/red{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/structure/table, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"dI" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"dJ" = ( +/obj/item/flashlight/lamp/bananalamp{ + pixel_x = -6; + pixel_y = 10; + on = 0 + }, +/obj/structure/alien/weeds, +/obj/item/paperplane{ + pixel_x = 8 + }, +/obj/structure/table, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"dK" = ( +/obj/structure/table, +/obj/item/trash/plate, +/obj/item/kitchen/utensil/fork{ + pixel_x = 7 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_y = 15 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"dL" = ( +/obj/structure/alien/weeds, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"dM" = ( +/obj/structure/table/wood, +/obj/item/clothing/glasses/sunglasses/noir{ + pixel_y = -3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 10; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_y = 10; + layer = 2.9 + }, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"dN" = ( +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/poison/giant_spider{ + health = 250; + maxHealth = 250; + name = "angry giant spider" + }, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"dO" = ( +/obj/machinery/door/airlock/silver, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 2.8 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"dP" = ( +/obj/structure/closet/critter{ + opened = 1 + }, +/mob/living/simple_animal/hostile/feral_cat, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"dR" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/weeds/node, +/obj/structure/alien/weeds, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"dT" = ( +/obj/machinery/shieldwallgen{ + anchored = 1 + }, +/obj/structure/sign/securearea{ + name = "DANGEROUS CARGO!"; + pixel_y = 32 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"dU" = ( +/obj/item/reagent_containers/food/drinks/sillycup, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"dV" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"dX" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/red, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"dY" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"dZ" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/machinery/firealarm/no_alarm{ + pixel_y = -24; + dir = 1 + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"ea" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/Kitchen) +"eb" = ( +/obj/machinery/door/window/classic/reversed{ + color = "green" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 0; + icon_state = "green" + }, +/area/awaymission/BMPship/Kitchen) +"ec" = ( +/obj/machinery/economy/vending/coffee/free, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"ed" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + color = "green" + }, +/turf/simulated/floor/plasteel{ + dir = 0; + icon_state = "green" + }, +/area/awaymission/BMPship/Kitchen) +"ee" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsNorth) +"ef" = ( +/obj/structure/alien/weeds, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/pen/fancy, +/obj/structure/table, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"eg" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"eh" = ( +/obj/structure/alien/weeds, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"ej" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"ek" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/spider/cocoon, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"el" = ( +/obj/structure/closet/critter{ + opened = 1 + }, +/mob/living/simple_animal/hostile/retaliate/poison/snake, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"em" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 26 + }, +/obj/structure/safe/floor, +/obj/item/coin/antagtoken, +/obj/item/coin/clown, +/obj/item/coin/uranium, +/obj/item/coin/uranium, +/obj/item/clothing/head/crown/fancy, +/obj/item/stamp/chameleon, +/obj/item/clothing/accessory/medal/fluff/panzermedal, +/obj/item/stack/sheet/mineral/diamond{ + amount = 10 + }, +/obj/item/stack/sheet/mineral/gold{ + amount = 7 + }, +/obj/item/stack/sheet/mineral/silver{ + amount = 5 + }, +/obj/item/stack/spacecash/c1000{ + amount = 6590 + }, +/obj/item/clothing/gloves/ring/plasma, +/obj/item/clothing/gloves/ring/gold, +/obj/item/clothing/gloves/ring/gold, +/obj/machinery/economy/vending/boozeomat{ + layer = 3.1 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Fore) +"en" = ( +/obj/effect/landmark/awaystart, +/obj/item/stack/tile/plasteel, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"ep" = ( +/obj/machinery/door/airlock/titanium, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"eq" = ( +/obj/structure/weightmachine/stacklifter, +/obj/item/reagent_containers/food/pill/methamphetamine, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"er" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/BMPship/Containment) +"et" = ( +/obj/item/stack/sheet/mineral/uranium{ + amount = 30 + }, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Engines) +"ev" = ( +/obj/structure/alien/weeds/node, +/obj/structure/alien/weeds, +/obj/structure/alien/weeds/node, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"ew" = ( +/obj/item/shard, +/obj/structure/alien/weeds, +/obj/structure/alien/resin, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"ex" = ( +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"ey" = ( +/obj/structure/table, +/obj/item/kitchen/knife/butcher, +/obj/item/reagent_containers/food/snacks/monstermeat/lizardmeat, +/obj/item/trash/plate{ + pixel_x = -5; + pixel_y = -1; + layer = 2.9 + }, +/obj/machinery/firealarm/no_alarm{ + pixel_x = -28; + layer = 3.6 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Kitchen) +"ez" = ( +/obj/effect/decal/cleanable/flour, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Kitchen) +"eA" = ( +/obj/structure/computerframe, +/obj/structure/alien/weeds, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"eC" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/landmark/damageturf, +/obj/item/stack/cable_coil, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TurretsNorth) +"eD" = ( +/obj/structure/spider/stickyweb, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"eE" = ( +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Buffer) +"eF" = ( +/obj/structure/spider/stickyweb, +/obj/structure/spider/cocoon, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"eG" = ( +/obj/item/stack/sheet/mineral/titanium, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission/BMPship/Buffer) +"eH" = ( +/obj/structure/closet, +/obj/item/clothing/under/misc/overalls, +/obj/item/clothing/suit/chickensuit, +/obj/item/clothing/head/chicken, +/obj/item/laser_pointer, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/instrument/trombone, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"eI" = ( +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/engine/vacuum, +/area/awaymission/BMPship/Buffer) +"eJ" = ( +/obj/structure/sink/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"eK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall/r_wall, +/area/awaymission/BMPship/Containment) +"eL" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4; + tag = "icon-heater (EAST)" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Engines) +"eM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall/r_wall, +/area/awaymission/BMPship/Containment) +"eN" = ( +/obj/structure/window/reinforced{ + color = "yellow"; + layer = 2.9 + }, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ + health = 150; + maxHealth = 150; + name = "Angry giant spider" + }, +/turf/simulated/floor/grass, +/area/awaymission/BMPship/Kitchen) +"eO" = ( +/obj/structure/table, +/obj/item/trash/plate{ + pixel_x = -5; + pixel_y = -1; + layer = 2.9 + }, +/obj/item/kitchen/utensil/fork, +/obj/item/reagent_containers/food/drinks/britcup{ + pixel_x = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"eP" = ( +/obj/structure/closet/walllocker/medlocker/west, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/splint, +/obj/item/stack/medical/splint, +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/warning_stripes/green, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"eQ" = ( +/obj/structure/window/reinforced{ + color = "yellow"; + layer = 2.9 + }, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/turf/simulated/floor/grass, +/area/awaymission/BMPship/Kitchen) +"eR" = ( +/obj/machinery/light_construct/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowalt" + }, +/area/awaymission/BMPship/Dormitories) +"eS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Kitchen) +"eT" = ( +/obj/item/storage/bag/fish, +/obj/item/storage/firstaid/aquatic_kit/full, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"eU" = ( +/obj/machinery/door/airlock/titanium, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 2.8 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"eV" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"eW" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/structure/alien/weeds, +/obj/structure/alien/resin, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"eX" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/alien/weeds, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"eY" = ( +/obj/structure/alien/weeds, +/obj/item/reagent_containers/glass/beaker/drugs/meth{ + layer = 2.9 + }, +/obj/structure/table, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"eZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/alien/weeds, +/obj/structure/alien/resin, +/obj/machinery/firealarm/no_alarm{ + pixel_x = 28 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"fb" = ( +/obj/machinery/light_construct/directional/east, +/obj/structure/alien/weeds, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"fc" = ( +/obj/effect/landmark/damageturf, +/obj/item/stack/ore/iron, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"fd" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/nasavoid, +/obj/item/clothing/head/helmet/space/nasavoid, +/obj/item/clothing/mask/gas/explorer, +/obj/effect/decal/warning_stripes/north, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"fe" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"ff" = ( +/turf/simulated/wall/mineral/titanium/nodiagonal, +/area/awaymission/BMPship/Buffer) +"fg" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"fh" = ( +/obj/item/cigbutt{ + pixel_x = -10; + pixel_y = -6 + }, +/obj/item/cigbutt, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"fi" = ( +/obj/item/stack/sheet/mineral/titanium, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission) +"fj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/ripped{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/item/ashtray/bronze, +/obj/item/cigbutt, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 4; + pixel_y = 12 + }, +/obj/item/cigbutt/roach{ + pixel_x = -12 + }, +/obj/machinery/light/directional/north, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"fk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Buffer) +"fl" = ( +/obj/effect/decal/remains/human, +/obj/effect/gibspawner/generic, +/turf/space, +/area/space) +"fn" = ( +/obj/machinery/door/airlock/silver, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 2.8 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Dormitories) +"fp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredaltstrip" + }, +/area/awaymission/BMPship/CommonArea) +"fq" = ( +/obj/item/trash/tastybread, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"fr" = ( +/obj/item/stack/tile/plasteel, +/turf/space, +/area/space) +"fs" = ( +/obj/structure/closet/crate/can, +/obj/item/trash/plate, +/obj/item/trash/plate, +/obj/item/kitchen/utensil/fork, +/obj/item/kitchen/utensil/fork, +/obj/item/trash/chips, +/obj/item/trash/semki, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"ft" = ( +/obj/structure/sink/directional/west, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "barber"; + tag = "icon-barber" + }, +/area/awaymission/BMPship/Kitchen) +"fu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/alien/weeds, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"fv" = ( +/obj/item/stack/tile/plasteel, +/obj/item/stack/tile/plasteel, +/obj/item/stack/tile/plasteel, +/turf/space, +/area/space) +"fw" = ( +/obj/structure/alien/weeds, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/off_station{ + dir = 1; + lighting_channel = 0; + locked = 0; + pixel_y = 24; + environment_channel = 0; + equipment_channel = 0; + operating = 0; + start_charge = 0 + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"fx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants{ + icon_state = "plant-dead"; + tag = "plant-dead" + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"fy" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/obj/item/reagent_containers/food/snacks/fried_vox{ + pixel_x = 4; + pixel_y = 12; + layer = 2.9 + }, +/obj/machinery/light_construct/directional/north, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Kitchen) +"fz" = ( +/obj/item/beach_ball/holoball, +/obj/effect/decal/warning_stripes/north, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"fA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor{ + layer = 2.71; + id_tag = "packerCargo" + }, +/obj/machinery/door/airlock/silver{ + locked = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"fB" = ( +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"fC" = ( +/obj/structure/spider/stickyweb, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/firealarm/no_alarm{ + pixel_x = -24; + layer = 3.6; + dir = 8 + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"fD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"fE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"fF" = ( +/obj/item/stack/tile/plasteel, +/obj/structure/alien/weeds, +/obj/structure/alien/resin, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"fG" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 16; + pixel_x = 4 + }, +/obj/item/ammo_casing/shotgun{ + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"fH" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/item/shard{ + icon_state = "small" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"fJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"fK" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"fL" = ( +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/wood, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"fM" = ( +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/north, +/obj/item/kirbyplants{ + icon_state = "plant-dead"; + tag = "plant-dead" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"fN" = ( +/obj/structure/sign/securearea{ + name = "MAXIMUM ATTENTION"; + pixel_x = 32 + }, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"fP" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/retaliate/kangaroo, +/obj/structure/closet/critter{ + opened = 1 + }, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"fQ" = ( +/obj/item/stack/ore/iron, +/obj/item/skeleton/r_leg, +/turf/space, +/area/space) +"fS" = ( +/obj/structure/table, +/obj/structure/window/reinforced, +/obj/machinery/kitchen_machine/microwave{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber"; + tag = "icon-barber" + }, +/area/awaymission/BMPship/Kitchen) +"fT" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"fU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/spider/stickyweb, +/obj/structure/spider/cocoon, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"fW" = ( +/obj/structure/closet, +/obj/item/clothing/head/bio_hood, +/obj/item/clothing/suit/bio_suit, +/obj/item/clothing/gloves/color/black, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"fX" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/awaymission) +"fY" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/alien/weeds, +/obj/item/gun/syringe{ + pixel_y = 2 + }, +/obj/item/storage/box/syringes, +/obj/structure/closet/walllocker/medlocker/east, +/obj/item/reagent_containers/glass/bottle/ether, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"fZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/alien/weeds, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"ga" = ( +/obj/item/stack/rods/ten, +/turf/space, +/area/space) +"gb" = ( +/obj/item/tank/internals/oxygen, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission/BMPship/Mining) +"gc" = ( +/obj/machinery/light_construct/directional/south, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"gd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"ge" = ( +/obj/item/ammo_casing{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/space, +/area/space) +"gf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -7; + pixel_y = -10 + }, +/obj/item/shard{ + icon_state = "small" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"gh" = ( +/obj/machinery/door/airlock/titanium{ + locked = 1 + }, +/obj/structure/alien/weeds, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Fore) +"gi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/titanium{ + locked = 1 + }, +/obj/structure/alien/weeds, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Fore) +"gk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"gl" = ( +/obj/machinery/door/airlock/titanium{ + id = "packerToilet"; + locked = 1 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"gm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/rack, +/obj/item/flashlight/flare/glowstick, +/obj/item/flashlight/flare/glowstick/emergency{ + pixel_x = 2 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"gn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"go" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/window/classic/normal, +/obj/structure/windoor_assembly, +/obj/structure/curtain/black, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"gq" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"gr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/alien/weeds/node, +/obj/structure/alien/resin, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"gs" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"gt" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"gu" = ( +/obj/item/shard{ + icon_state = "small" + }, +/turf/space, +/area/space) +"gv" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/sliceable/xenomeatbread, +/obj/item/kitchen/knife, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"gw" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"gx" = ( +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"gy" = ( +/obj/effect/mob_spawn/human/corpse/tacticool, +/turf/space, +/area/space) +"gz" = ( +/obj/item/shard, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"gA" = ( +/obj/structure/lattice{ + light_power = 0 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/space, +/area/space) +"gB" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"gC" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/item/stack/tile/plasteel, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"gD" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"gE" = ( +/obj/structure/computerframe{ + dir = 1 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"gF" = ( +/obj/machinery/door/airlock/titanium, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsNorth) +"gG" = ( +/obj/structure/chair/office/dark, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"gH" = ( +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/south, +/obj/item/kirbyplants{ + icon_state = "plant-dead"; + tag = "plant-dead" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"gI" = ( +/obj/structure/sink/puddle, +/turf/simulated/floor/grass, +/area/awaymission/BMPship/Kitchen) +"gJ" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/mob/living/simple_animal/hostile/poison/giant_spider{ + health = 250; + maxHealth = 250; + name = "angry giant spider" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredaltstrip" + }, +/area/awaymission/BMPship/CommonArea) +"gL" = ( +/obj/machinery/processor, +/turf/simulated/floor/plasteel{ + icon_state = "barber"; + tag = "icon-barber" + }, +/area/awaymission/BMPship/Kitchen) +"gM" = ( +/obj/item/reagent_containers/food/snacks/hugemushroomslice, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Kitchen) +"gN" = ( +/obj/structure/computerframe{ + dir = 4 + }, +/obj/structure/alien/weeds, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"gP" = ( +/obj/item/multitool, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission) +"gQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/stack/tile/plasteel, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"gR" = ( +/obj/item/stack/cable_coil{ + amount = 5 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"gS" = ( +/obj/structure/cable, +/obj/effect/landmark/damageturf, +/obj/item/tank/internals/emergency_oxygen/empty, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"gT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"gU" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/awaymission/BMPship/Dormitories) +"gV" = ( +/obj/machinery/door_control/shutter/south{ + id = "packerCargo" + }, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"gW" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -30 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"gX" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/awaymission/BMPship/Dormitories) +"gY" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"gZ" = ( +/obj/effect/landmark/awaystart, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"ha" = ( +/obj/effect/gibspawner/robot, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"hb" = ( +/obj/effect/landmark/burnturf, +/obj/item/clothing/mask/gas/explorer, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"hc" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/closet/cardboard{ + opened = 1 + }, +/obj/structure/alien/weeds, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"he" = ( +/obj/structure/alien/weeds, +/obj/structure/table/wood/fancy/red, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"hf" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"hg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/silver/glass, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/awaymission/BMPship/Dormitories) +"hh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/grille, +/turf/simulated/floor/engine/vacuum, +/area/awaymission/BMPship/TurretsSouth) +"hj" = ( +/turf/simulated/mineral/random, +/area/awaymission) +"hk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"hq" = ( +/obj/structure/alien/weeds, +/obj/machinery/firealarm/no_alarm{ + pixel_y = -28 + }, +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider{ + health = 250; + maxHealth = 250; + name = "angry giant spider" + }, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"hr" = ( +/obj/effect/landmark/burnturf, +/obj/structure/spider/stickyweb, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber"; + tag = "icon-barber" + }, +/area/awaymission/BMPship/Kitchen) +"ht" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/portable/canister/air, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"hu" = ( +/obj/structure/table/wood, +/obj/item/lighter/zippo/fluff/michael_guess_1, +/obj/item/clothing/mask/cigarette/cigar, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"hw" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"hx" = ( +/obj/structure/table/wood, +/obj/item/lighter/zippo/engraved{ + pixel_y = 12; + pixel_x = -9 + }, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"hy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/silver{ + locked = 1 + }, +/obj/structure/alien/weeds, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 2.8 + }, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Fore) +"hz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/greenglow, +/obj/item/reagent_containers/food/snacks/monstermeat/spiderleg, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"hB" = ( +/obj/machinery/light_construct/small/north, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"hC" = ( +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission/BMPship/Buffer) +"hD" = ( +/obj/structure/rack, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Buffer) +"hE" = ( +/obj/machinery/light_construct/small/north, +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen/empty, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission/BMPship/Buffer) +"hF" = ( +/turf/simulated/wall/mineral/titanium, +/area/awaymission) +"hG" = ( +/obj/machinery/fishtank, +/turf/simulated/floor/grass, +/area/awaymission/BMPship/Kitchen) +"hH" = ( +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"hI" = ( +/turf/simulated/floor/grass, +/area/awaymission/BMPship/Kitchen) +"hJ" = ( +/obj/machinery/light_construct/small/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"hK" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"hL" = ( +/obj/item/mounted/frame/apc_frame, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"hM" = ( +/obj/structure/ore_box, +/obj/machinery/light_construct/small/north, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"hN" = ( +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/crowbar/red, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"hO" = ( +/obj/structure/ore_box, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"hP" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"hR" = ( +/obj/item/hand_labeler, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/wood, +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"hS" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/reagent_containers/glass/rag, +/obj/item/storage/bag/trash, +/obj/item/trash/plate, +/obj/item/trash/plate, +/obj/item/trash/raisins, +/obj/item/trash/raisins, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsSouth) +"hT" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/shard, +/obj/effect/landmark/damageturf, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"hV" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"hW" = ( +/obj/machinery/door/airlock/titanium, +/turf/simulated, +/area/awaymission/BMPship/Fore) +"hX" = ( +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"hY" = ( +/obj/effect/gibspawner/robot, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Buffer) +"hZ" = ( +/obj/structure/window/reinforced{ + color = "yellow"; + layer = 2.9 + }, +/obj/structure/fermenting_barrel, +/turf/simulated/floor/grass, +/area/awaymission/BMPship/Kitchen) +"ia" = ( +/obj/structure/mecha_wreckage/ripley, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"ib" = ( +/obj/effect/landmark/awaystart, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission/BMPship/Mining) +"id" = ( +/obj/effect/landmark/awaystart, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"ie" = ( +/obj/structure/table/wood, +/obj/item/lighter/zippo/fluff/duckchan, +/obj/item/clothing/mask/cigarette/pipe, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"if" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"ih" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Armory) +"ii" = ( +/obj/structure/window/reinforced, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -7; + pixel_y = -10 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"ij" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"ik" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/power/port_gen/pacman/super, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Engines) +"il" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"im" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowalt" + }, +/area/awaymission/BMPship/Dormitories) +"in" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/light_construct/directional/north, +/turf/simulated/floor/grass, +/area/awaymission/BMPship/Kitchen) +"ir" = ( +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/Fore) +"is" = ( +/obj/item/kitchen/knife/butcher, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"it" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/hugemushroomslice, +/obj/effect/decal/warning_stripes/south, +/obj/item/reagent_containers/food/snacks/monstermeat/spidermeat, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"iu" = ( +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"iv" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/rack, +/obj/item/flashlight/flare{ + pixel_y = -3 + }, +/obj/item/flashlight/flare{ + pixel_y = 3 + }, +/obj/item/flashlight/flare, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"iw" = ( +/obj/structure/alien/weeds, +/obj/machinery/photocopier, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"ix" = ( +/obj/item/caution, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"iz" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"iA" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/structure/window/reinforced, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/BMPship/Kitchen) +"iB" = ( +/obj/structure/closet/critter{ + opened = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"iC" = ( +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/BMPship/Bath) +"iF" = ( +/obj/machinery/porta_turret{ + lethal = 1; + name = "ship defense turret"; + attacked = 1 + }, +/turf/simulated/floor/engine/vacuum, +/area/awaymission/BMPship/TurretsSouth) +"iG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/engine/vacuum, +/area/awaymission/BMPship/TurretsSouth) +"iH" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"iI" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/structure/spider/stickyweb, +/obj/machinery/power/apc/off_station{ + dir = 1; + lighting_channel = 2; + locked = 0; + pixel_y = 24; + environment_channel = 0; + equipment_channel = 0; + start_charge = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"iJ" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/resin, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"iK" = ( +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"iL" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/grenade/chem_grenade/drugs, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"iM" = ( +/turf/simulated/mineral/random/high_chance/clown, +/area/awaymission) +"iN" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"iO" = ( +/obj/item/ammo_casing{ + pixel_y = 3; + pixel_x = 9 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 24; + pixel_x = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"iP" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/clothing/mask/gas/syndicate, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"iQ" = ( +/obj/machinery/door/airlock/external{ + name = "Crackden Airlock" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"iR" = ( +/obj/machinery/door/airlock/external{ + name = "Plain Airlock" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"iU" = ( +/obj/structure/table, +/obj/item/storage/toolbox/syndicate, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"iV" = ( +/obj/item/ammo_casing{ + pixel_y = 3; + pixel_x = 9 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"iW" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/monitor{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"iX" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/drugs/meth, +/obj/item/reagent_containers/glass/beaker/drugs/meth, +/obj/item/reagent_containers/glass/beaker/drugs/meth, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"iY" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"iZ" = ( +/obj/item/reagent_containers/food/snacks/chips, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"ja" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"jb" = ( +/obj/machinery/chem_dispenser, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"jc" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"jd" = ( +/obj/machinery/floodlight{ + in_use = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"je" = ( +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"jg" = ( +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/Engines) +"jh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"ji" = ( +/obj/machinery/sleeper{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"jl" = ( +/obj/structure/chair/stool, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"jm" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TurretsNorth) +"jn" = ( +/obj/structure/table, +/obj/item/kitchen/utensil/fork{ + pixel_x = -2 + }, +/obj/item/reagent_containers/food/snacks/pastatomato, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"jq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/north, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"jr" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/closet/crate/plastic, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/effect/decal/warning_stripes/red/partial, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"js" = ( +/obj/machinery/economy/vending/wallmed/directional/west, +/obj/structure/mopbucket, +/obj/item/mop, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"jv" = ( +/obj/structure/closet/walllocker/medlocker/west, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/toxin, +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/warning_stripes/green, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"jw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security{ + locked = 1 + }, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 2.8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/awaymission/BMPship/Containment) +"jx" = ( +/turf/simulated/wall/mineral/plastitanium, +/area/awaymission/BMPship/TraderShuttle) +"jB" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/candy/candycane, +/obj/item/reagent_containers/food/snacks/candy/confectionery/caramel_nougat, +/obj/item/reagent_containers/food/snacks/candy/confectionery/toffee, +/turf/simulated/floor/plasteel{ + icon_state = "barber"; + tag = "icon-barber" + }, +/area/awaymission/BMPship/Kitchen) +"jE" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/item/skeleton/head, +/turf/space, +/area/space) +"jF" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/xenomeatbreadslice{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/snacks/xenoburger{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/trash/plate{ + pixel_x = 6; + pixel_y = 5; + layer = 2.9 + }, +/obj/item/trash/plate{ + pixel_x = -5; + pixel_y = -1; + layer = 2.9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"jG" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/structure/alien/weeds, +/obj/item/reagent_containers/food/snacks/meat, +/obj/machinery/light_construct/small/north, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"jI" = ( +/obj/machinery/door/airlock/security{ + locked = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 2.8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/awaymission/BMPship/Containment) +"jL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/spider/cocoon, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"jM" = ( +/obj/item/stack/cable_coil/pink, +/turf/space, +/area/space) +"jT" = ( +/obj/item/stock_parts/cell/empty, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission/BMPship/Mining) +"kb" = ( +/obj/machinery/door/airlock/titanium, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 3.3 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"kc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"kn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"kr" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/alien/weeds, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"ks" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/poison/giant_spider{ + health = 250; + maxHealth = 250; + name = "angry giant spider" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"ku" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mob_spawn/human/corpse/damaged{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"kv" = ( +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/awaymission/BMPship/TraderShuttle) +"kx" = ( +/obj/structure/table/survival_pod, +/obj/item/reagent_containers/glass/beaker/drugs/meth, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + pixel_x = -3; + pixel_y = 4; + layer = 2.9 + }, +/turf/simulated/floor/pod, +/area/awaymission/BMPship/Shelter) +"kA" = ( +/obj/structure/spider/cocoon, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"kI" = ( +/obj/machinery/door/airlock/silver, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 2.8 + }, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Buffer) +"kJ" = ( +/obj/item/stack/tile/plasteel, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"kK" = ( +/obj/machinery/door/airlock/silver, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"kO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/spider/stickyweb, +/obj/structure/spider/cocoon, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"kP" = ( +/obj/item/flag/species/human, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Fore) +"kR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"kZ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/landmark/damageturf, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"ld" = ( +/obj/item/clothing/suit/space/syndicate/green/dark, +/turf/space, +/area/space) +"ll" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"lu" = ( +/obj/structure/dresser, +/obj/item/paper{ + info = "DEAR DAIRY: So we was doing our typpical route when the captain says we've been picking up weird signals on some backwatter planet. Madsen wanted to stay on course but he ain't the captain, so we went out of the way to check it out. There was lots of rocks on the way, but we got to the planet fine. Found a big fancy camp with nobody around and this big metal donut thing with NT stamps all over it right in the middle. Case of beer too. Captain reckons we can pass it off to some buyer in the Syndicate. Ingram says it's bad luck and that someone is going to come look for it but it sounds like better money than selling bad meat to jerky companies."; + name = "Old Diary p2"; + layer = 3.1 + }, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"lv" = ( +/obj/machinery/light_construct/directional/east, +/obj/structure/alien/weeds, +/obj/structure/alien/resin, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"lw" = ( +/obj/structure/coatrack{ + layer = 2.9 + }, +/obj/structure/coatrack{ + layer = 2.9 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Fore) +"lD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"lF" = ( +/obj/structure/closet/secure_closet{ + color = "gray" + }, +/obj/item/clothing/under/syndicate/tacticool, +/obj/item/clothing/mask/fawkes, +/obj/item/clothing/shoes/combat, +/obj/item/storage/belt/military/assault, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/accessory/holster, +/obj/item/clothing/suit/jacket/miljacket, +/obj/item/clothing/glasses/hud/security/sunglasses/fluff/eyepro, +/obj/structure/alien/weeds, +/obj/structure/alien/resin{ + layer = 3.1 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"lH" = ( +/obj/structure/table/tray, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"lK" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/bear, +/obj/structure/closet/critter{ + opened = 1 + }, +/obj/item/reagent_containers/food/snacks/meat, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"lL" = ( +/obj/structure/closet/crate/engineering, +/obj/item/stock_parts/cell/high, +/obj/item/storage/belt/utility/full, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsNorth) +"lR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsNorth) +"lU" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/survival_pod, +/turf/simulated/floor/pod, +/area/awaymission/BMPship/Shelter) +"lV" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/item/shard{ + icon_state = "small" + }, +/obj/structure/sign/poster/contraband/eat{ + pixel_y = 32 + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"lW" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission) +"lX" = ( +/obj/item/apc_electronics, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"mb" = ( +/obj/machinery/light/directional/east, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"mc" = ( +/obj/machinery/door_control/shutter/west{ + id = "packerToilet"; + name = "remote door-control packerToilet" + }, +/obj/machinery/light/small/directional/south, +/obj/structure/toilet/material/gold{ + dir = 1 + }, +/obj/item/stack/spacecash/c500{ + layer = 2.9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/BMPship/Bath) +"mh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"mi" = ( +/obj/structure/sink/puddle, +/turf/simulated/floor/grass, +/area/awaymission) +"mp" = ( +/obj/structure/table, +/obj/item/screwdriver, +/obj/item/paper{ + info = "The next person who takes one of my screwdrivers gets stabbed with one. They are MINE. - Love, Madsen"; + name = "scribbled note" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/awaymission/BMPship/Kitchen) +"mA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants{ + icon_state = "plant-dead"; + tag = "plant-dead" + }, +/obj/machinery/light_construct/small/north, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"mF" = ( +/obj/structure/girder, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"mI" = ( +/mob/living/simple_animal/cow{ + name = "Space cow Betsy" + }, +/turf/simulated/floor/grass, +/area/awaymission) +"mJ" = ( +/obj/structure/girder, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"mL" = ( +/obj/structure/alien/weeds, +/obj/item/circuitboard/hydroponics, +/obj/item/stack/cable_coil/green, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"mP" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/weeds/node, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"mW" = ( +/obj/structure/weightmachine/weightlifter, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"mY" = ( +/obj/machinery/light_construct/small/south, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"nl" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"nn" = ( +/obj/item/ammo_casing{ + pixel_y = 3; + pixel_x = 9 + }, +/turf/space, +/area/space) +"nt" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"nB" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsNorth) +"nD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Armory) +"nE" = ( +/obj/effect/decal/cleanable/blood/old{ + layer = 2.8 + }, +/obj/effect/mob_spawn/human/corpse/syndicatesoldier/trader, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TraderShuttle) +"nH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/spider/stickyweb, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"nI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredaltstrip" + }, +/area/awaymission/BMPship/CommonArea) +"nK" = ( +/obj/item/stack/sheet/mineral/titanium, +/turf/space, +/area/space/nearstation) +"nO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/south, +/obj/item/kirbyplants{ + icon_state = "plant-dead"; + tag = "plant-dead" + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"nQ" = ( +/obj/structure/curtain/open{ + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkyellowalt" + }, +/area/awaymission/BMPship/Dormitories) +"nT" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 10; + pixel_x = -13 + }, +/obj/item/ammo_casing{ + pixel_y = 3; + pixel_x = 9 + }, +/obj/item/ammo_casing{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/ammo_box/magazine/m10mm, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"nU" = ( +/obj/item/crowbar/brass, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Gate) +"oe" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider{ + health = 250; + maxHealth = 250; + name = "angry giant spider"; + speed = 0.9 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"oh" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/item/ammo_casing{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"ol" = ( +/obj/item/tank/internals/oxygen, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"op" = ( +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "barber"; + tag = "icon-barber" + }, +/area/awaymission/BMPship/Kitchen) +"or" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"os" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/mounted/frame/apc_frame, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Armory) +"ov" = ( +/turf/simulated/wall/mineral/titanium/nodiagonal, +/area/awaymission/BMPship/Dormitories) +"oy" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/window/classic/normal{ + dir = 1 + }, +/obj/structure/windoor_assembly{ + dir = 2 + }, +/obj/structure/curtain/black, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"oA" = ( +/obj/item/stack/ore/iron, +/turf/space, +/area/space) +"oC" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 11; + pixel_y = 13 + }, +/obj/item/clothing/head/collectable/captain, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Fore) +"oD" = ( +/obj/effect/landmark/damageturf, +/obj/item/stock_parts/cell/empty, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Buffer) +"oG" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"oR" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/space, +/area/space) +"pc" = ( +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/reagent_containers/food/snacks/grown/banana{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/snacks/grown/banana{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/simulated/floor/grass, +/area/awaymission/BMPship/Kitchen) +"pd" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/item/ammo_casing/shotgun{ + pixel_x = 12; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/apc_electronics, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"pe" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"pg" = ( +/obj/structure/closet/secure_closet{ + req_access = list(111) + }, +/obj/item/id_decal/gold, +/obj/item/clothing/head/helmet, +/obj/item/clothing/suit/armor/vest, +/obj/item/storage/box/slug, +/obj/item/storage/box/slug, +/obj/item/clothing/accessory/storage/black_vest, +/obj/structure/alien/weeds, +/obj/structure/alien/resin{ + layer = 3.1 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"pn" = ( +/obj/effect/landmark/damageturf, +/obj/item/apc_electronics, +/obj/item/clothing/mask/gas/explorer, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"pp" = ( +/obj/effect/decal/cleanable/ash, +/obj/item/skeleton/head, +/turf/space, +/area/space) +"pq" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/spider/stickyweb, +/obj/machinery/power/apc/off_station{ + dir = 4; + lighting_channel = 2; + locked = 0; + environment_channel = 2; + equipment_channel = 2; + pixel_x = 24; + start_charge = 100 + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"pr" = ( +/turf/simulated/wall/mineral/titanium/nodiagonal, +/area/awaymission/BMPship/CommonArea) +"pt" = ( +/obj/machinery/light_construct/small/south, +/mob/living/simple_animal/cockroach, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"pC" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/red_rum{ + pixel_x = -32 + }, +/obj/item/toy/sword{ + pixel_x = 8 + }, +/obj/item/bedsheet/wiz{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"pG" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -3; + pixel_y = 5; + layer = 2.9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/newspaper{ + pixel_y = 3; + pixel_x = 3; + layer = 2.9 + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"pH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/south, +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"pN" = ( +/obj/structure/closet/secure_closet{ + color = "gray" + }, +/obj/item/clothing/under/syndicate/tacticool, +/obj/item/clothing/mask/face/bee, +/obj/item/clothing/shoes/combat, +/obj/item/storage/belt/military/assault, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/accessory/holster, +/obj/item/clothing/suit/jacket/miljacket/navy, +/obj/item/clothing/glasses/hud/security/sunglasses/fluff/eyepro, +/obj/structure/alien/weeds, +/obj/structure/alien/resin{ + layer = 3.1 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"pT" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/resin, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"pU" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"pV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/critter{ + opened = 1 + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"pW" = ( +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"pZ" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/spider/stickyweb, +/obj/structure/sign/radiation/rad_area{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"qb" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/item/circuitboard/smes, +/obj/item/stack/cable_coil/blue, +/turf/simulated/floor/greengrid, +/area/awaymission/BMPship/Buffer) +"qk" = ( +/obj/structure/holohoop{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"ql" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"qp" = ( +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/ash, +/obj/item/stack/sheet/mineral/titanium, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Buffer) +"qC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/power/smes/magical{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit"; + outputting = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"qE" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 10; + pixel_x = -13 + }, +/obj/item/ammo_casing{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/space, +/area/space) +"qF" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellowalt" + }, +/area/awaymission/BMPship/Dormitories) +"qI" = ( +/obj/structure/table/wood, +/obj/item/clothing/glasses/sunglasses/big, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"qJ" = ( +/obj/machinery/door/airlock/silver, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 2.8 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"qK" = ( +/obj/item/assembly/mousetrap/armed, +/obj/item/trash/tastybread, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"qL" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/space, +/area/space) +"qQ" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"qS" = ( +/obj/effect/landmark/damageturf, +/obj/machinery/firealarm/no_alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"qX" = ( +/obj/effect/landmark/damageturf, +/obj/item/crowbar/fluff/zelda_creedy_1, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"rd" = ( +/obj/item/stack/ore/iron, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/awaymission/BMPship/TraderShuttle) +"rg" = ( +/obj/effect/landmark/damageturf, +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ + health = 150; + maxHealth = 150; + name = "Angry giant spider" + }, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"rk" = ( +/obj/machinery/sleeper/survival_pod, +/obj/machinery/economy/vending/wallmed/survival_pod{ + pixel_x = -25 + }, +/turf/simulated/floor/pod, +/area/awaymission/BMPship/Shelter) +"rm" = ( +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"rw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"ry" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"rB" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsSouth) +"rE" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Buffer) +"rJ" = ( +/obj/effect/decal/warning_stripes/south, +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"rL" = ( +/obj/structure/coatrack, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/light/small/directional/west, +/obj/item/clothing/suit/soldiercoat, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"rM" = ( +/obj/structure/table, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/awaymission/BMPship/TraderShuttle) +"rT" = ( +/turf/simulated/floor/engine/vacuum, +/area/awaymission/BMPship/Buffer) +"rY" = ( +/obj/structure/lattice, +/obj/item/gun/energy/gun/turret, +/turf/space, +/area/awaymission) +"sg" = ( +/obj/structure/curtain/open{ + anchored = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkyellowalt" + }, +/area/awaymission/BMPship/Dormitories) +"sh" = ( +/obj/item/clothing/gloves/color/yellow/fake, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission/BMPship/Mining) +"sj" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"so" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 10; + pixel_x = -13 + }, +/obj/item/wrench, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Fore) +"sq" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/clothing/head/corgi, +/obj/structure/sign/poster/contraband/syndicate_recruitment{ + pixel_x = -32 + }, +/obj/item/reagent_containers/food/pill/charcoal, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"su" = ( +/obj/effect/landmark/damageturf, +/obj/item/bodyanalyzer, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"sv" = ( +/obj/item/stack/tile/plasteel, +/obj/effect/landmark/damageturf, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"sF" = ( +/obj/item/clothing/gloves/color/yellow, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Engines) +"sK" = ( +/obj/effect/decal/cleanable/blood/old{ + layer = 3.1 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"sP" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ + health = 150; + maxHealth = 150; + name = "Angry giant spider" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"sQ" = ( +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Buffer) +"sU" = ( +/turf/simulated/wall/mineral/titanium/survival/pod, +/area/awaymission/BMPship/Shelter) +"sW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"sX" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 24; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"sZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"tb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"tc" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 8 + }, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/awaymission/BMPship/TraderShuttle) +"tt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/awaymission/BMPship/Engines) +"tw" = ( +/obj/effect/landmark/burnturf, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"tx" = ( +/obj/effect/decal/warning_stripes/white/partial, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/awaymission/BMPship/Dormitories) +"ty" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + tag = "icon-propulsion (WEST)" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Gate) +"tA" = ( +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/Kitchen) +"tE" = ( +/obj/effect/landmark/damageturf, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"tF" = ( +/mob/living/simple_animal/hostile/carp{ + maxHealth = 50; + name = "Annoyed space carp"; + health = 50 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission) +"tJ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"tM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"tS" = ( +/obj/item/stack/sheet/mineral/plastitanium, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/awaymission/BMPship/TraderShuttle) +"tX" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Bath) +"tY" = ( +/obj/structure/alien/weeds, +/obj/item/skeleton/r_arm, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"uj" = ( +/obj/effect/mob_spawn/human/corpse/tacticool{ + layer = 4 + }, +/obj/item/gun/energy/laser{ + pixel_x = -5 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission/BMPship/Mining) +"um" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"uo" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/Buffer) +"ur" = ( +/obj/machinery/door/airlock/titanium{ + locked = 1 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"ut" = ( +/turf/simulated/floor/engine/vacuum, +/area/awaymission/BMPship/TurretsSouth) +"uu" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas/explorer, +/obj/effect/decal/warning_stripes/north, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/clothing/head/helmet/space/nasavoid/ltblue, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"ux" = ( +/mob/living/simple_animal/cockroach, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"uB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/rack, +/obj/item/storage/belt/utility/full, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"uC" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"uI" = ( +/obj/item/stock_parts/cell/empty, +/turf/simulated/floor/engine/vacuum, +/area/awaymission/BMPship/Buffer) +"uN" = ( +/obj/structure/closet/secure_closet{ + color = "gray" + }, +/obj/item/clothing/under/syndicate/tacticool, +/obj/item/clothing/mask/gas/monkeymask, +/obj/item/clothing/shoes/combat, +/obj/item/storage/belt/military/assault, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/accessory/holster, +/obj/item/clothing/glasses/hud/security/sunglasses/fluff/eyepro, +/obj/item/clothing/suit/jacket/miljacket/desert, +/obj/structure/alien/weeds, +/obj/structure/alien/resin{ + layer = 3.1 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"uR" = ( +/obj/item/circuitboard/operating, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"uS" = ( +/obj/machinery/door/airlock/titanium, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 2.8 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Bath) +"uT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"va" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/window/classic/normal, +/obj/structure/spider/stickyweb, +/obj/structure/windoor_assembly{ + dir = 2 + }, +/obj/structure/curtain/black, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"vd" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/space, +/area/space) +"ve" = ( +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/MedBay) +"vi" = ( +/obj/machinery/door/airlock/vault{ + req_access = list(111); + hackProof = 1; + locked = 1 + }, +/obj/effect/mine/stun{ + faction = list("alien"); + layer = 2.6 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"vl" = ( +/obj/item/clothing/suit/space/hardsuit/medical, +/turf/space, +/area/space) +"vr" = ( +/obj/structure/lattice, +/obj/item/stack/cable_coil, +/turf/space, +/area/space/nearstation) +"vs" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/awaymission/BMPship/TraderShuttle) +"vy" = ( +/obj/structure/sink/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"vD" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 24; + pixel_x = 8 + }, +/obj/item/ammo_casing{ + pixel_y = 3; + pixel_x = 9 + }, +/turf/space, +/area/space) +"vH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ + health = 150; + maxHealth = 150; + name = "Angry giant spider" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"vK" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"vV" = ( +/obj/machinery/door/airlock/titanium{ + locked = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/MedBay) +"vY" = ( +/obj/structure/alien/weeds, +/obj/machinery/shieldwallgen{ + anchored = 1 + }, +/obj/structure/sign/securearea{ + name = "DANGEROUS CARGO!"; + pixel_y = 32 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"wd" = ( +/obj/machinery/light_construct/small/south, +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TurretsNorth) +"wg" = ( +/obj/structure/alien/weeds, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/door_control/shutter/north{ + id = "packerCaptain" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"wh" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission) +"wi" = ( +/obj/structure/alien/weeds, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"wk" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TurretsNorth) +"wo" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ + health = 150; + maxHealth = 150; + name = "Angry giant spider" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Kitchen) +"wt" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"wv" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 1 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"wx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"wA" = ( +/mob/living/simple_animal/hostile/carp{ + maxHealth = 50; + name = "Annoyed space carp"; + health = 50 + }, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/awaymission/BMPship/TraderShuttle) +"wB" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/CommonArea) +"wG" = ( +/obj/effect/decal/cleanable/greenglow, +/obj/item/reagent_containers/food/snacks/monstermeat/spiderleg, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"wH" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/awaymission/BMPship/Dormitories) +"wI" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 24; + pixel_x = 8 + }, +/obj/item/mounted/frame/apc_frame, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"wQ" = ( +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Buffer) +"wU" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/laser{ + pixel_x = -8 + }, +/obj/item/gun/energy/laser, +/obj/structure/alien/weeds, +/obj/structure/alien/resin{ + layer = 3.1 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"wV" = ( +/obj/effect/decal/warning_stripes/north, +/mob/living/simple_animal/lizard, +/obj/structure/sign/engineering{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"wY" = ( +/obj/structure/spider/stickyweb, +/turf/simulated/floor/grass, +/area/awaymission/BMPship/Kitchen) +"xe" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/power/apc/off_station{ + dir = 1; + lighting_channel = 2; + locked = 0; + pixel_y = 24; + environment_channel = 1; + equipment_channel = 0; + start_charge = 100 + }, +/obj/structure/sign/securearea{ + pixel_x = 32; + name = "DANGEROUS CARGO!" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"xg" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/closet/critter{ + opened = 1 + }, +/obj/structure/alien/weeds, +/mob/living/simple_animal/hostile/alien/sentinel{ + health = 250; + maxHealth = 250 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"xj" = ( +/obj/item/clothing/under/syndicate/tacticool, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/firealarm/no_alarm{ + pixel_y = -28 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/awaymission/BMPship/Dormitories) +"xk" = ( +/obj/item/clothing/gloves/color/latex/nitrile, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"xq" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/turf/space, +/area/space) +"xy" = ( +/obj/structure/coatrack, +/obj/item/clothing/head/fedora, +/obj/item/clothing/suit/draculacoat, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/off_station{ + dir = 1; + lighting_channel = 2; + locked = 0; + pixel_y = 24; + environment_channel = 0; + equipment_channel = 0; + start_charge = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/awaymission/BMPship/Dormitories) +"xz" = ( +/obj/item/stack/ore/uranium, +/obj/effect/decal/cleanable/ash, +/obj/item/stock_parts/cell/empty, +/turf/space, +/area/space/nearstation) +"xA" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/reagent_containers/glass/rag, +/obj/item/storage/bag/trash, +/obj/item/trash/plate, +/obj/item/trash/plate, +/obj/item/trash/fried_vox, +/obj/item/trash/spacetwinkie, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsSouth) +"xC" = ( +/obj/structure/rack, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"xG" = ( +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/Dormitories) +"xI" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TurretsSouth) +"xO" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/black, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"xQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/alien/weeds, +/obj/structure/alien/resin, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"xW" = ( +/mob/living/simple_animal/hostile/retaliate/poison/snake, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"ye" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/landmark/damageturf, +/mob/living/simple_animal/hostile/carp{ + maxHealth = 50; + name = "Annoyed space carp"; + health = 50 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TraderShuttle) +"yf" = ( +/obj/item/storage/pill_bottle/random_drug_bottle, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"yh" = ( +/turf/simulated/wall/mineral/titanium/nodiagonal, +/area/awaymission/BMPship/Fore) +"yu" = ( +/obj/item/reagent_containers/food/snacks/meat, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/north, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ + health = 150; + maxHealth = 150; + name = "Angry giant spider" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"yv" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/Fore) +"yw" = ( +/obj/machinery/door/airlock/titanium, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsSouth) +"yE" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/structure/alien/weeds, +/obj/structure/alien/weeds/node, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"yG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"yL" = ( +/obj/structure/closet/secure_closet{ + color = "gray" + }, +/obj/item/clothing/under/syndicate/tacticool, +/obj/item/clothing/mask/pig, +/obj/item/clothing/shoes/combat, +/obj/item/storage/belt/military/assault, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/accessory/holster, +/obj/item/clothing/suit/jacket/leather/overcoat, +/obj/item/clothing/glasses/hud/security/sunglasses/fluff/eyepro, +/obj/structure/alien/weeds, +/obj/structure/alien/resin{ + layer = 3.1 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"yN" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"yQ" = ( +/obj/item/stack/tile/plasteel, +/obj/structure/alien/weeds, +/obj/structure/alien/weeds/node, +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"yT" = ( +/obj/machinery/gateway/centeraway{ + calibrated = 0 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"zb" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/engine/vacuum, +/area/awaymission/BMPship/Buffer) +"zf" = ( +/obj/item/clothing/head/helmet/space/syndicate/green/dark, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission) +"zo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider{ + health = 250; + maxHealth = 250; + name = "angry giant spider"; + speed = 0.9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"zs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"zt" = ( +/obj/structure/closet/critter{ + opened = 1 + }, +/obj/structure/spider/stickyweb, +/obj/item/reagent_containers/food/snacks/meat, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"zy" = ( +/obj/structure/table, +/obj/item/pen/red, +/obj/item/poster/syndicate_recruitment{ + pixel_y = 12 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"zC" = ( +/obj/item/reagent_containers/food/pill/charcoal, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"zD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/gibspawner/generic, +/obj/structure/alien/weeds, +/obj/effect/decal/remains/human, +/obj/structure/closet/critter{ + opened = 1 + }, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"zP" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"zW" = ( +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"zX" = ( +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/Buffer) +"Ab" = ( +/obj/item/clothing/gloves/color/yellow, +/turf/space, +/area/space) +"Ac" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"Ad" = ( +/obj/structure/bed/pod, +/obj/item/bedsheet/rainbow, +/turf/simulated/floor/pod, +/area/awaymission/BMPship/Shelter) +"Af" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/awaymission/BMPship/Dormitories) +"Ak" = ( +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/Armory) +"Ao" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/pod, +/area/awaymission/BMPship/Shelter) +"At" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/reagent_containers/food/snacks/meat, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"Aw" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/item/reagent_containers/food/pill/charcoal, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"Ay" = ( +/obj/item/stack/sheet/metal, +/turf/space, +/area/space) +"Az" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/item/wrench, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Armory) +"AI" = ( +/obj/structure/window/reinforced{ + color = "yellow"; + layer = 2.9 + }, +/obj/item/reagent_containers/glass/bucket/wooden, +/turf/simulated/floor/grass, +/area/awaymission/BMPship/Kitchen) +"AL" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/clothing/head/bearpelt, +/obj/item/reagent_containers/food/pill/methamphetamine{ + layer = 2.9 + }, +/obj/structure/sign/poster/contraband/have_a_puff{ + pixel_x = -32 + }, +/mob/living/simple_animal/cockroach, +/obj/item/reagent_containers/food/pill/charcoal{ + layer = 2.9 + }, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"AN" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + color = "red"; + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TraderShuttle) +"AW" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"AZ" = ( +/obj/effect/decal/cleanable/greenglow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/north, +/obj/effect/mob_spawn/human/corpse/damaged, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"Bi" = ( +/obj/structure/table, +/obj/item/kitchen/utensil/fork, +/obj/item/trash/snack_bowl, +/obj/item/reagent_containers/food/drinks/mug/cap{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"Bn" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"Bw" = ( +/obj/structure/alien/weeds, +/mob/living/simple_animal/hostile/alien{ + health = 180; + maxHealth = 180 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"Bx" = ( +/obj/machinery/door/airlock/silver{ + locked = 1 + }, +/obj/structure/alien/weeds, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 2.8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Fore) +"BC" = ( +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"BG" = ( +/mob/living/simple_animal/hostile/carp{ + maxHealth = 50; + name = "Annoyed space carp"; + health = 50 + }, +/turf/space, +/area/space) +"BI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/critter{ + opened = 1 + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Containment) +"BK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + color = "green" + }, +/obj/machinery/constructable_frame/machine_frame, +/obj/item/stack/cable_coil/yellow, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/awaymission/BMPship/Kitchen) +"BL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/spider/cocoon, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"BQ" = ( +/obj/structure/closet/walllocker/medlocker/west, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/warning_stripes/green, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"BS" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"BV" = ( +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"BZ" = ( +/obj/machinery/door/airlock/silver{ + locked = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 3.3 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Gate) +"Cb" = ( +/obj/structure/largecrate, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"Ck" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Cn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"Cu" = ( +/obj/item/clothing/mask/gas/explorer, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission/BMPship/Buffer) +"Cy" = ( +/mob/living/simple_animal/mouse/gray, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/awaymission/BMPship/Dormitories) +"CA" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/structure/closet/walllocker/medlocker/west, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"CI" = ( +/obj/structure/alien/weeds, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = 8; + pixel_y = 2 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"CJ" = ( +/turf/simulated/mineral/random, +/area/awaymission/BMPship/Buffer) +"Dc" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 10; + pixel_x = -13 + }, +/turf/space, +/area/space) +"De" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"Dh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"Dj" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/nasavoid/yellow, +/obj/item/clothing/head/helmet/space/nasavoid/yellow, +/obj/item/clothing/mask/gas/explorer, +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"Dn" = ( +/obj/structure/table/wood, +/obj/item/lighter/zippo/engraved, +/obj/item/clothing/mask/cigarette/medical_marijuana, +/obj/item/clothing/mask/cigarette/medical_marijuana{ + pixel_y = 2; + pixel_x = 2 + }, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"Dp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider{ + health = 250; + maxHealth = 250; + name = "angry giant spider"; + speed = 0.9 + }, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"Dr" = ( +/obj/item/reagent_containers/food/snacks/meat, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"Ds" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider{ + health = 250; + maxHealth = 250; + name = "angry giant spider" + }, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"Du" = ( +/obj/machinery/door/window/classic/reversed, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber"; + tag = "icon-barber" + }, +/area/awaymission/BMPship/Kitchen) +"Dx" = ( +/obj/structure/sink/directional/west, +/obj/structure/mirror{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"Dy" = ( +/obj/machinery/shieldwallgen{ + anchored = 1 + }, +/obj/structure/sign/securearea{ + name = "DANGEROUS CARGO!"; + pixel_y = -32 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"DC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"DD" = ( +/obj/structure/alien/weeds, +/obj/effect/mob_spawn/human/corpse/tacticool, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"DG" = ( +/obj/item/storage/bag/money{ + layer = 3.1 + }, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c100, +/obj/item/stack/spacecash/c100, +/obj/item/stack/spacecash/c10, +/obj/item/stack/spacecash/c10, +/obj/item/stack/spacecash/c10, +/obj/item/coin/iron, +/obj/item/coin/iron, +/obj/item/assembly/mousetrap/armed{ + layer = 2.9 + }, +/obj/structure/rack, +/obj/structure/alien/weeds, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"DP" = ( +/obj/item/clothing/suit/space/nasavoid/ltblue, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"DT" = ( +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"Ec" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"Eh" = ( +/turf/simulated/wall/mineral/titanium/nodiagonal, +/area/awaymission/BMPship/Gate) +"Ej" = ( +/obj/structure/table, +/obj/item/clothing/head/papersack, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"El" = ( +/obj/effect/mob_spawn/human/corpse/tacticool, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"Em" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/economy/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/awaymission/BMPship/Kitchen) +"Eo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"Eq" = ( +/obj/effect/decal/cleanable/flour, +/obj/item/trash/fried_vox, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber"; + tag = "icon-barber" + }, +/area/awaymission/BMPship/Kitchen) +"Et" = ( +/obj/machinery/flasher/portable{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Ev" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -7; + pixel_y = -10 + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"Ez" = ( +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"EA" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/awaymission/BMPship/Dormitories) +"EB" = ( +/obj/item/stack/cable_coil, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsNorth) +"EH" = ( +/obj/item/kitchen/knife/combat, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"EL" = ( +/turf/simulated/wall/mineral/titanium/nodiagonal, +/area/awaymission/BMPship/Kitchen) +"EO" = ( +/obj/item/reagent_containers/food/snacks/meat, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"EW" = ( +/obj/structure/closet/crate/internals, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsNorth) +"Fb" = ( +/obj/structure/closet/walllocker/medlocker/west, +/obj/item/stack/medical/ointment/advanced, +/obj/item/stack/medical/ointment/advanced, +/obj/item/stack/medical/bruise_pack/advanced, +/obj/item/stack/medical/bruise_pack/advanced, +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/warning_stripes/green, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"Fe" = ( +/obj/item/shard, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"Fm" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/awaymission/BMPship/TraderShuttle) +"Fp" = ( +/obj/structure/table/tray, +/turf/space, +/area/space) +"Fs" = ( +/obj/machinery/light/small/directional/north, +/obj/item/reagent_containers/food/pill/charcoal, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"Fz" = ( +/obj/structure/sign/poster/contraband/syndicate_recruitment{ + pixel_y = -32 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"FC" = ( +/turf/simulated/mineral, +/area/awaymission) +"FD" = ( +/obj/structure/sign/vacuum{ + pixel_x = 32 + }, +/obj/effect/decal/warning_stripes/northeast, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/shard, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"FJ" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 8 + }, +/obj/item/shard, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/awaymission/BMPship/TraderShuttle) +"FK" = ( +/obj/structure/chair/office/dark{ + layer = 2.8 + }, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"FL" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4; + tag = "icon-heater (EAST)" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Gate) +"FQ" = ( +/obj/effect/landmark/damageturf, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "darkredaltstrip" + }, +/area/awaymission/BMPship/CommonArea) +"FT" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/computerframe, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"FU" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/weeds/node, +/obj/item/skeleton/head, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"FZ" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/BMPship/Armory) +"Gj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"Gn" = ( +/obj/item/card/emag_broken, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Fore) +"Go" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"Gq" = ( +/obj/structure/spider/stickyweb, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/structure/spider/cocoon, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"Gs" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Gu" = ( +/obj/item/assembly/mousetrap/armed, +/obj/item/reagent_containers/food/snacks/breadslice{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Gv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsSouth) +"Gy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Gz" = ( +/obj/structure/alien/weeds, +/mob/living/simple_animal/hostile/alien/sentinel{ + health = 250; + maxHealth = 250 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"GB" = ( +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ + health = 150; + maxHealth = 150; + name = "Angry giant spider" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"GG" = ( +/obj/structure/closet/crate/can, +/obj/item/trash/plate, +/obj/item/trash/plate, +/obj/item/kitchen/utensil/fork, +/obj/item/kitchen/utensil/fork, +/obj/item/trash/candy, +/obj/item/trash/raisins, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"GI" = ( +/obj/structure/dresser, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"GM" = ( +/turf/simulated/wall/mineral/plastitanium, +/area/awaymission/BMPship/Containment) +"GN" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + color = "green" + }, +/turf/simulated/floor/plasteel{ + dir = 0; + icon_state = "green" + }, +/area/awaymission/BMPship/Kitchen) +"GV" = ( +/obj/structure/largecrate, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"GX" = ( +/obj/structure/tubes, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/item/storage/bible, +/turf/simulated/floor/pod, +/area/awaymission/BMPship/Shelter) +"GY" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/vomit, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"Hd" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/firealarm/no_alarm{ + pixel_y = 28 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"Hl" = ( +/obj/item/stack/tile/plasteel, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"Hq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"Hr" = ( +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"Hv" = ( +/obj/structure/grille, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"Hy" = ( +/turf/simulated/wall/mineral/plastitanium/nodiagonal, +/area/awaymission/BMPship/TraderShuttle) +"Hz" = ( +/obj/structure/alien/weeds, +/obj/item/skeleton/l_leg, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"HA" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 16; + pixel_x = 4 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"HE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/mob/living/simple_animal/hostile/poison/giant_spider{ + health = 250; + maxHealth = 250; + name = "angry giant spider" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Armory) +"HH" = ( +/obj/machinery/door/airlock/titanium{ + locked = 1 + }, +/obj/machinery/holosign/surgery{ + id = "surgery1"; + icon_state = "sign_on" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"HJ" = ( +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission/BMPship/Mining) +"HV" = ( +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/TurretsSouth) +"HW" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 10; + pixel_x = -13 + }, +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/MedBay) +"HZ" = ( +/obj/structure/alien/weeds, +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/structure/spider/cocoon, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Ik" = ( +/obj/item/stack/sheet/mineral/plastitanium, +/obj/effect/decal/cleanable/ash, +/turf/space, +/area/space) +"Io" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/storage/box, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"Ip" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"It" = ( +/obj/item/multitool, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Engines) +"Iy" = ( +/obj/effect/decal/warning_stripes/north, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"Iz" = ( +/obj/item/stack/sheet/mineral/titanium, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Buffer) +"IA" = ( +/obj/effect/decal/remains/human, +/turf/space, +/area/space) +"IB" = ( +/obj/item/cigbutt/roach{ + pixel_x = -12 + }, +/obj/machinery/firealarm/no_alarm{ + pixel_y = 28 + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"IF" = ( +/obj/effect/landmark/damageturf, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"IG" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/sign/securearea{ + name = "MAXIMUM ATTENTION"; + pixel_x = -32 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"IH" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"IJ" = ( +/obj/effect/decal/warning_stripes/white/partial, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/awaymission/BMPship/Dormitories) +"IN" = ( +/obj/structure/spider/stickyweb, +/obj/structure/spider/cocoon, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"IX" = ( +/obj/item/healthanalyzer/advanced, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"IY" = ( +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsNorth) +"Je" = ( +/obj/structure/alien/weeds/node, +/obj/structure/alien/weeds, +/obj/structure/cable{ + icon_state = "1-2" + }, +/mob/living/simple_animal/hostile/alien/sentinel{ + health = 250; + maxHealth = 250 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"Jh" = ( +/obj/effect/landmark/damageturf, +/obj/item/mounted/frame/apc_frame, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TurretsNorth) +"Jj" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = -3 + }, +/mob/living/simple_animal/pet/cat/kitten{ + faction = list("alien","neutral"); + desc = "Он выглядит так, будто повидал многое за свою короткую жизнь" + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Fore) +"Jz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/machinery/door/window/classic/normal, +/obj/structure/windoor_assembly, +/obj/structure/curtain/black, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"JA" = ( +/obj/item/flashlight/flare{ + pixel_y = 3 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"JI" = ( +/obj/structure/alien/weeds, +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"JJ" = ( +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Engines) +"JL" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Buffer) +"JS" = ( +/turf/simulated/wall/mineral/titanium/nodiagonal, +/area/awaymission/BMPship/Bath) +"Kd" = ( +/obj/machinery/door/airlock/titanium, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 2.8 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"Ky" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/largecrate/cow, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"KD" = ( +/obj/structure/shuttle/engine/heater, +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TraderShuttle) +"KF" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 16; + pixel_x = 4 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission) +"KG" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/bear, +/obj/structure/closet/critter{ + opened = 1 + }, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"KI" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"KK" = ( +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsSouth) +"KN" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 24; + pixel_x = 8 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission) +"KV" = ( +/obj/structure/alien/weeds, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Lc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window{ + dir = 8 + }, +/obj/item/storage/secure/briefcase/syndie, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/awaymission/BMPship/TraderShuttle) +"Le" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 16; + pixel_x = 4 + }, +/obj/structure/alien/weeds, +/mob/living/simple_animal/hostile/alien/sentinel{ + health = 250; + maxHealth = 250 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"Lk" = ( +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/awaymission/BMPship/Engines) +"Ll" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Ls" = ( +/obj/structure/sign/electricshock{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"Lt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"Lu" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Lx" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"LC" = ( +/obj/structure/girder, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Buffer) +"LN" = ( +/obj/machinery/door/airlock/external{ + emagged = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/awaymission/BMPship/TraderShuttle) +"LR" = ( +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/Bath) +"LT" = ( +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"LV" = ( +/obj/effect/decal/warning_stripes/south, +/mob/living/simple_animal/mouse/brown, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"Md" = ( +/obj/structure/alien/weeds, +/obj/item/reagent_containers/food/drinks/mug/novelty{ + pixel_y = 10; + pixel_x = 10 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"Mf" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsSouth) +"Mg" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/awaymission) +"Mi" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + tag = "icon-propulsion (WEST)" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Bath) +"Ms" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/spider/stickyweb, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Mu" = ( +/obj/item/folder/red, +/turf/space, +/area/space) +"MD" = ( +/obj/machinery/optable, +/obj/effect/decal/cleanable/blood/old{ + layer = 3.1 + }, +/obj/effect/mob_spawn/human/corpse/tacticool, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"MM" = ( +/obj/structure/alien/weeds, +/obj/item/storage/fancy/donut_box, +/obj/structure/table, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"MN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"MT" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"MY" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/carp, +/obj/structure/closet/critter{ + opened = 1 + }, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"Nd" = ( +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/Mining) +"Nf" = ( +/obj/structure/closet/crate, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate, +/obj/item/storage/fancy/cigarettes/cigpack_midori, +/obj/item/storage/fancy/cigarettes/cigpack_med, +/obj/item/storage/fancy/cigarettes, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/obj/item/storage/box/matches, +/obj/machinery/light/small/directional/west, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsSouth) +"Nq" = ( +/obj/structure/cable, +/obj/machinery/power/apc/off_station{ + lighting_channel = 2; + locked = 0; + pixel_y = -24; + environment_channel = 0; + equipment_channel = 0; + start_charge = 0 + }, +/turf/simulated/floor/engine/vacuum, +/area/awaymission/BMPship/TurretsSouth) +"Nw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"ND" = ( +/obj/item/stack/ore/iron, +/obj/effect/decal/cleanable/ash, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TraderShuttle) +"NI" = ( +/obj/effect/decal/cleanable/ash, +/obj/item/stack/ore/uranium, +/turf/space, +/area/space) +"NW" = ( +/obj/machinery/flasher/portable{ + anchored = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"NZ" = ( +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Oj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/obj/machinery/firealarm/no_alarm{ + pixel_y = 28 + }, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Armory) +"Ok" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/simulated/floor/engine/vacuum, +/area/awaymission/BMPship/Buffer) +"Ol" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/helmet/skull, +/obj/structure/alien/weeds/node, +/obj/structure/closet/critter{ + opened = 1 + }, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"OC" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/machinery/power/apc/off_station{ + dir = 8; + lighting_channel = 2; + locked = 0; + environment_channel = 0; + equipment_channel = 0; + pixel_x = -24; + start_charge = 0 + }, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Bath) +"OH" = ( +/obj/item/stack/sheet/mineral/titanium, +/turf/space, +/area/space) +"OI" = ( +/obj/structure/spider/stickyweb, +/obj/item/stack/cable_coil, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/awaymission/BMPship/Engines) +"OS" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TraderShuttle) +"OU" = ( +/obj/machinery/light/directional/north, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/awaymission/BMPship/Dormitories) +"OV" = ( +/obj/structure/alien/weeds, +/obj/machinery/recharger, +/obj/structure/table, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"Ph" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/ash, +/turf/space, +/area/space) +"Pi" = ( +/obj/item/reagent_containers/glass/beaker/drugs/meth, +/mob/living/simple_animal/hostile/syndicate/ranged/space{ + health = 300; + maxHealth = 300 + }, +/turf/simulated/floor/pod, +/area/awaymission/BMPship/Shelter) +"Pt" = ( +/turf/simulated/floor/mineral/plastitanium/red/airless, +/area/awaymission/BMPship/TraderShuttle) +"Pu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"Pz" = ( +/obj/structure/alien/weeds, +/obj/item/lighter/zippo/gonzofist, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"PF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/cell/empty, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Buffer) +"PH" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/mineral/random/high_chance, +/area/awaymission) +"PJ" = ( +/obj/structure/alien/weeds, +/obj/item/weldingtool/largetank, +/obj/item/screwdriver, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"PK" = ( +/obj/item/stack/tile/plasteel, +/obj/item/skeleton/l_leg, +/turf/space, +/area/space) +"PL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredaltstrip" + }, +/area/awaymission/BMPship/CommonArea) +"PO" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ + health = 150; + maxHealth = 150; + name = "Angry giant spider" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"PP" = ( +/obj/structure/closet/crate/plastic, +/obj/item/restraints/handcuffs/cable, +/obj/item/restraints/handcuffs/cable, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsNorth) +"PQ" = ( +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/north, +/obj/effect/mob_spawn/human/corpse/tacticool, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"PR" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/largecrate/cat, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"PY" = ( +/obj/structure/closet, +/obj/item/clothing/head/corgi, +/obj/item/clothing/suit/corgisuit, +/obj/item/laser_pointer, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/instrument/accordion, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"Qc" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 16; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/ChemLab) +"Qf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"Qi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/snacks/meat, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"Qj" = ( +/obj/structure/alien/weeds, +/obj/item/reagent_containers/food/snacks/monstermeat/spiderleg, +/obj/effect/decal/cleanable/greenglow, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"Qk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants{ + icon_state = "plant-dead"; + tag = "plant-dead" + }, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Qo" = ( +/obj/item/analyzer, +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 24; + pixel_x = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"Qs" = ( +/obj/structure/fans, +/turf/simulated/floor/pod, +/area/awaymission/BMPship/Shelter) +"QA" = ( +/obj/machinery/smartfridge/survival_pod, +/turf/simulated/floor/pod, +/area/awaymission/BMPship/Shelter) +"QD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/item/shard, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"QN" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TraderShuttle) +"QQ" = ( +/obj/machinery/flasher/portable{ + anchored = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"QT" = ( +/obj/structure/rack, +/obj/item/reagent_containers/food/drinks/trophy/gold_cup, +/obj/item/storage/box/flashbangs, +/obj/item/fluff/dogwhistle, +/obj/structure/alien/weeds, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"QW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "darkredaltstrip" + }, +/area/awaymission/BMPship/CommonArea) +"QY" = ( +/obj/structure/rack, +/obj/effect/decal/warning_stripes/northwest, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"QZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/economy/vending/hydronutrients, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/awaymission/BMPship/Kitchen) +"Ra" = ( +/obj/structure/spider/stickyweb, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/BMPship/Kitchen) +"Rg" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Ri" = ( +/obj/item/trash/cheesie, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"Rk" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsNorth) +"Rm" = ( +/obj/machinery/door_control/shutter/south{ + id = "packerCaptain" + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Fore) +"Rn" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/MedBay) +"RB" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TraderShuttle) +"RF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"RJ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/vault, +/area/awaymission/BMPship/Buffer) +"RK" = ( +/obj/structure/girder, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TraderShuttle) +"Sd" = ( +/obj/machinery/door/airlock/silver, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/CommonArea) +"Sf" = ( +/obj/structure/table, +/obj/effect/decal/warning_stripes/north, +/obj/item/trash/fried_vox{ + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"Sg" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 10; + pixel_x = -13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"Sh" = ( +/turf/simulated/floor/grass, +/area/awaymission) +"Si" = ( +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"Sn" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TraderShuttle) +"Sq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"Sw" = ( +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"Sy" = ( +/obj/machinery/light_construct/small/north, +/obj/structure/alien/weeds, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"SF" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + tag = "icon-propulsion (WEST)" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Engines) +"SJ" = ( +/obj/item/stack/ore/uranium, +/turf/space, +/area/space) +"SM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"SV" = ( +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Bath) +"Td" = ( +/obj/structure/signpost, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission) +"Ti" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/alien/weeds, +/obj/structure/alien/resin, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Armory) +"Tj" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Tt" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/decal/warning_stripes/north, +/obj/item/reagent_containers/food/snacks/meat/corgi, +/obj/item/reagent_containers/food/snacks/meat/corgi, +/obj/item/reagent_containers/food/snacks/meat/corgi, +/obj/item/reagent_containers/food/snacks/meat/corgi, +/obj/item/reagent_containers/food/snacks/meat/corgi, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"Tv" = ( +/mob/living/simple_animal/hostile/retaliate/poison/snake, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"TB" = ( +/obj/structure/closet/crate/engineering, +/obj/item/stock_parts/cell/high, +/obj/item/storage/belt/utility/full, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/TurretsNorth) +"TI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ + health = 150; + maxHealth = 150; + name = "Angry giant spider" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"TJ" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/wall/r_wall, +/area/awaymission/BMPship/Containment) +"TM" = ( +/obj/effect/decal/cleanable/blood/old{ + layer = 3 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"TU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"TX" = ( +/obj/structure/lattice, +/obj/item/skeleton/r_hand, +/obj/item/skeleton/r_arm, +/obj/item/skeleton/l_hand, +/obj/item/skeleton/l_arm, +/turf/space, +/area/awaymission) +"Uc" = ( +/obj/item/ammo_casing/shotgun{ + pixel_x = 6 + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"Ue" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Ug" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/Armory) +"Uh" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/computerframe, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Uj" = ( +/obj/item/shard, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/TraderShuttle) +"Un" = ( +/mob/living/simple_animal/hostile/carp, +/turf/space, +/area/space) +"Uy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"UA" = ( +/obj/structure/spider/stickyweb, +/obj/structure/spider/cocoon, +/obj/machinery/economy/vending/wallmed{ + name = "Emergency NanoMed"; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"UF" = ( +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"UH" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"UI" = ( +/obj/structure/alien/weeds, +/obj/item/reagent_containers/food/drinks/mug{ + pixel_x = -8 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"UK" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/awaymission) +"UQ" = ( +/obj/effect/gibspawner/generic, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"UT" = ( +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/TurretsNorth) +"UZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"Vb" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/resin, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"Vd" = ( +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/black, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"Vi" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowalt" + }, +/area/awaymission/BMPship/Dormitories) +"Vm" = ( +/obj/structure/alien/weeds, +/obj/effect/decal/cleanable/greenglow, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"Vn" = ( +/obj/structure/closet/secure_closet{ + color = "gold"; + layer = 2.9; + req_access = list(111) + }, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/space/nasavoid/captain, +/obj/item/clothing/head/helmet/space/nasavoid/captain, +/obj/item/clothing/accessory/medal/heart, +/turf/simulated/floor/wood/oak, +/area/awaymission/BMPship/Fore) +"Vo" = ( +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"Vt" = ( +/mob/living/simple_animal/hostile/retaliate/carp/koi, +/turf/space, +/area/space) +"Vu" = ( +/obj/structure/alien/weeds, +/obj/structure/windoor_assembly{ + dir = 2 + }, +/obj/item/shard, +/obj/structure/curtain/black, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"Vw" = ( +/obj/effect/landmark/damageturf, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"VG" = ( +/obj/effect/decal/cleanable/greenglow, +/obj/item/reagent_containers/food/snacks/monstermeat/spiderleg, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"VH" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/alien/weeds, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/alien/resin, +/obj/machinery/power/apc/off_station{ + dir = 1; + lighting_channel = 0; + pixel_y = 24; + environment_channel = 0; + equipment_channel = 0; + operating = 0; + start_charge = 0 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"VL" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/largecrate, +/obj/effect/decal/warning_stripes/red, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"VO" = ( +/obj/effect/landmark/damageturf, +/obj/item/clothing/mask/gas/explorer, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Mining) +"VQ" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"VV" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/TurretsNorth) +"VX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/greenglow, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Wc" = ( +/obj/structure/sink/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green"; + tag = "icon-green (EAST)" + }, +/area/awaymission/BMPship/Kitchen) +"Wi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/stock_parts/cell/empty, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Buffer) +"Wu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"WC" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4; + tag = "icon-heater (EAST)" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Bath) +"WD" = ( +/obj/effect/gibspawner/generic, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/grass, +/area/awaymission/BMPship/Kitchen) +"WI" = ( +/obj/item/gps/computer, +/turf/simulated/floor/pod, +/area/awaymission/BMPship/Shelter) +"WK" = ( +/obj/machinery/porta_turret/syndicate/exterior{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Shelter) +"WO" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"WS" = ( +/obj/structure/sign/poster/contraband/c20r{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"Xa" = ( +/obj/machinery/seed_extractor, +/obj/item/seeds/plump/walkingmushroom, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/awaymission/BMPship/Kitchen) +"Xb" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"Xj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/hand_labeler, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"Xn" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/punching_bag, +/turf/simulated/floor/wood/fancy/oak, +/area/awaymission/BMPship/CommonArea) +"Xy" = ( +/obj/item/stack/tile/plasteel, +/obj/structure/alien/weeds, +/obj/structure/computerframe{ + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"XB" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/alien/weeds, +/obj/structure/alien/resin, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"XH" = ( +/obj/item/trash/tastybread, +/obj/structure/cable, +/obj/machinery/power/apc/off_station{ + dir = 8; + lighting_channel = 2; + locked = 0; + environment_channel = 0; + equipment_channel = 0; + pixel_x = -24; + start_charge = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/awaymission/BMPship/CommonArea) +"XJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mob_spawn/human/corpse/tacticool, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"XP" = ( +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/south, +/obj/item/kirbyplants{ + icon_state = "plant-dead"; + tag = "plant-dead" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"XQ" = ( +/turf/simulated/wall/mineral/titanium, +/area/awaymission/BMPship/CommonArea) +"XT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/item/shard, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"XW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/ammo_casing{ + pixel_y = 3; + pixel_x = 9 + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Armory) +"XY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/BMPship/Engines) +"Yf" = ( +/obj/machinery/door/window/classic/reversed{ + color = "yellow" + }, +/turf/simulated/floor/grass, +/area/awaymission/BMPship/Kitchen) +"Yh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/south, +/obj/item/reagent_containers/food/snacks/meat, +/obj/structure/spider/stickyweb, +/obj/structure/spider/cocoon, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"Yl" = ( +/obj/effect/decal/warning_stripes/white/partial{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowalt" + }, +/area/awaymission/BMPship/Dormitories) +"Yo" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 16; + pixel_x = 4 + }, +/turf/space, +/area/space) +"Yv" = ( +/obj/structure/spider/stickyweb, +/obj/structure/spider/cocoon, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"Yz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"YA" = ( +/obj/machinery/light_construct/small/west, +/obj/effect/decal/warning_stripes/west, +/obj/structure/closet/walllocker/firelocker/west, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Buffer) +"YL" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Gate) +"YO" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/hos{ + dir = 4 + }, +/obj/item/reagent_containers/food/pill/methamphetamine{ + layer = 2.9 + }, +/obj/structure/sign/poster/contraband/grey_tide{ + pixel_x = -32 + }, +/turf/simulated/floor/carpet, +/area/awaymission/BMPship/Dormitories) +"YR" = ( +/obj/item/clothing/mask/gas/explorer, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"YU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants{ + icon_state = "plant-dead"; + tag = "plant-dead" + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/BMPship/Containment) +"YX" = ( +/obj/effect/landmark/damageturf, +/obj/item/stack/tile/plasteel, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/Fore) +"Za" = ( +/obj/machinery/door/airlock/titanium, +/obj/machinery/door/firedoor/closed{ + opacity = 0; + layer = 2.8 + }, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"Zb" = ( +/obj/effect/decal/cleanable/ash, +/turf/space, +/area/space) +"Zg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/obj/item/reagent_containers/food/snacks/meat, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"Zj" = ( +/obj/item/reagent_containers/glass/bucket/wooden, +/turf/simulated/floor/grass, +/area/awaymission) +"Zm" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/awaymission) +"Zz" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/windoor_assembly{ + dir = 2 + }, +/obj/machinery/door/window/classic/normal{ + dir = 1 + }, +/obj/structure/curtain/black, +/turf/simulated/floor/engine, +/area/awaymission/BMPship/Containment) +"ZB" = ( +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"ZF" = ( +/obj/item/flashlight/flare, +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission/BMPship/Mining) +"ZM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/BMPship/Engines) +"ZN" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/stack/rods/ten, +/turf/simulated/floor/plating/airless, +/area/awaymission/BMPship/MedBay) +"ZY" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/awaymission/BMPship/Engines) + +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(9,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(10,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(11,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(14,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(16,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(18,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(21,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 +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(22,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 +aa +aa +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 +ab +ab +ab +ab +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 +ac +ab +ab +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BG +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ab +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 +ac +ab +ab +ab +ab +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(24,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 +aa +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 +ab +ab +ab +ab +ab +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 +ac +ac +ac +ab +ab +ab +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(25,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Td +ab +ab +ab +ab +ab +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 +ab +ab +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(26,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 +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 +ab +ab +ab +ab +ab +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 +BG +aa +aa +ab +ab +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,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 +aa +aa +aa +aa +aa +BG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Yo +ge +ac +ab +ab +ab +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 +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Dc +ge +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BG +aa +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +vd +aa +aa +aa +aa +aa +aa +nn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +vD +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Dc +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,1,1) = {" +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 +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +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 +"} +(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 +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BG +aa +aa +aa +aa +aa +ab +ab +sU +sU +sU +sU +sU +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(34,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +sU +Qs +rk +kx +sU +WK +ac +ab +PH +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(35,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +sU +QA +Pi +Ao +lU +KF +wh +ac +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 +"} +(36,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +sU +WI +Ad +GX +sU +ab +ac +ad +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(37,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +sU +sU +sU +sU +sU +ab +ab +ac +wh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BG +aa +aa +aa +aa +aa +aa +qE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(38,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +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 +hj +hj +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(39,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +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 +ac +hj +hj +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(40,1,1) = {" +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +hj +hj +hj +hj +bf +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(41,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Un +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +hj +hj +ac +ac +aa +aa +BG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(42,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ct +aa +aa +Zb +aa +aa +aa +ac +fl +ld +aa +aa +aa +aa +nn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(43,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BG +aa +aa +aa +aa +ir +ir +gf +Ev +XT +fH +yv +mF +oA +aa +am +rY +IA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hj +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(44,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 +aa +aa +aa +aa +aa +vl +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ir +ir +JI +gN +eY +eY +Xy +yQ +yv +Zb +aa +SJ +Zb +aa +aa +aa +aa +aa +aa +aa +KF +ac +ac +hj +hj +hj +hj +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(45,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ir +ir +dL +Vb +ew +eW +eW +Vb +fF +yv +mF +aa +Zb +gP +aa +aa +NI +aa +aa +aa +ac +ac +ac +hj +hj +hj +hj +hj +hj +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(46,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ir +ir +dL +cB +dL +ev +dL +Vm +Gz +he +yv +gs +AW +fQ +TX +aa +ct +aa +qL +ac +Ab +ac +ac +ac +hj +hj +hj +hj +hj +hj +hj +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(47,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ir +ir +Pz +dL +dL +dL +PJ +mL +dL +dL +he +yv +sv +fc +pp +PK +oA +Zb +BG +ac +ac +ac +ac +ac +ac +ac +ac +hj +hj +hj +hj +hj +hj +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(48,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ir +ir +bk +bE +bP +ir +dL +dL +dL +dH +ef +MM +eX +Vb +dL +Vb +gh +gs +gz +gs +yv +kZ +hT +ii +ir +ir +ac +ac +ac +ac +ac +ac +ac +ac +ac +hj +hj +hj +hj +BG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(49,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ir +Vn +bl +oC +bR +ir +wg +dR +Md +dJ +eh +OV +DD +UI +dL +XB +gi +gC +gA +gE +yv +gs +aa +gs +gs +ir +ac +hj +hj +hj +hj +zf +ac +tF +ac +ac +hj +hj +ac +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 +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(50,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ir +kP +bn +bG +bF +cg +aK +dL +Vb +eA +DD +iw +dL +cB +dL +gr +yv +gB +gD +gE +yv +hB +al +SJ +gs +mF +hj +hj +hj +hj +hj +hj +hj +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ab +ab +ab +ab +BG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(51,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ir +em +Jj +Gn +Rm +ir +cC +CI +Qj +dL +dL +dL +Bw +Vb +wi +fZ +yv +gs +gR +gs +yv +yv +hW +mJ +gs +yv +hj +hj +hj +hj +hj +hj +hj +hj +hj +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ab +ab +ab +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(52,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BG +aa +ir +so +bv +bQ +lw +ir +VH +Je +dr +cY +fb +eZ +xQ +pT +lv +fY +ir +gt +tE +gQ +hk +gS +YR +cE +hX +ir +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +ac +lW +ac +ac +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 +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(53,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ir +ir +ir +ir +ir +ir +ir +ir +ir +ir +ir +ir +hy +Bx +ir +ir +ir +ir +ir +ir +yh +hX +YX +YX +ir +yh +hj +hj +hj +hj +hj +hj +hj +iM +hj +hj +hj +ac +ac +ac +aa +aa +BG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(54,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 +Vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +zX +QY +uC +YA +CA +zX +eE +ci +PF +zX +fw +kr +fu +bw +kr +hq +zX +rT +qb +oD +LC +hC +Iz +bq +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +ac +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 +"} +(55,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +zX +fd +fe +fe +mY +dO +Wi +dt +fk +bt +kO +jL +cS +RJ +gT +Go +kI +zb +Ok +sQ +qJ +hD +hC +bb +hC +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +ac +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 +"} +(56,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +zX +uu +ar +ar +zP +zX +eE +JL +eE +zX +an +fN +rg +jh +fN +eF +zX +uI +eI +uI +zX +rE +hY +hC +zX +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +iM +hj +hj +ac +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 +"} +(57,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +oA +aa +aa +zX +Dj +ar +ar +pH +zX +zX +zX +zX +ff +Tj +GM +jI +jw +GM +Tj +ff +zX +zX +zX +zX +sQ +rE +rE +rE +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +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 +"} +(58,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +zX +Iy +bI +bI +bT +zX +er +er +er +er +NW +fC +Ms +nH +Yv +QQ +er +er +er +er +zX +hE +wQ +bb +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +iM +hj +hj +hj +hj +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 +"} +(59,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uo +FD +El +DP +cd +zX +er +Ol +ah +er +vY +KV +oe +tM +um +Dy +er +ds +BI +er +LC +qp +Cu +eG +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +iM +hj +hj +hj +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 +"} +(60,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ga +LC +uo +bI +bI +zX +zX +er +jG +mP +Vu +HZ +LT +BV +kc +ex +LT +cU +Pu +Yh +eM +zX +LC +CJ +zX +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +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 +"} +(61,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Ay +oA +aa +aa +ve +er +zD +ah +er +dT +rw +sP +cL +Gy +Dy +er +Hq +pV +er +Nd +hj +hj +hj +hj +hj +hF +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +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 +"} +(62,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jE +aa +oA +aa +fv +aa +fr +Ay +ve +er +er +er +er +fM +LT +MN +NZ +wG +XP +er +er +er +er +Nd +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +hj +KN +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(63,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 +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +OH +BG +gu +fr +aa +ve +er +zt +dN +er +dT +rw +XJ +ch +Gy +Dy +eM +Ds +BI +er +hj +hj +hj +hj +hj +hj +hj +hj +hj +iU +iX +hj +hj +hj +hj +hj +hj +hj +hj +hj +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 +"} +(64,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +OH +Un +aa +aa +aa +Ay +SJ +Fp +Zb +aa +as +bB +ve +er +PQ +Gq +Vd +UQ +VG +MN +MN +NZ +UQ +va +Pu +cH +TJ +Nd +hj +hj +hF +hj +hj +hj +hj +iL +iK +iK +ja +hj +hj +hj +hj +hj +hj +hj +hj +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 +"} +(65,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +oA +aa +aa +aa +Zb +vd +oA +Zb +bB +bB +ve +er +zt +dN +er +dT +rw +fE +WO +Gy +Dy +eK +Dp +pV +er +Nd +Nd +hj +hj +hj +hj +hj +fW +iK +iK +iY +iK +je +hj +hj +hj +hj +hj +hj +ac +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 +"} +(66,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ct +oA +as +Zb +vr +ZB +dw +Rn +eM +er +er +er +fM +NZ +Ll +BL +NZ +gH +eM +er +er +TJ +Nd +sh +Nd +hj +hj +hj +hj +hj +iV +iV +iK +yf +jd +hj +hj +hj +hj +hj +hj +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +Un +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(67,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +as +Zb +aa +as +by +pe +tw +Rn +er +dP +Dr +er +LT +Rg +Lu +FT +Gs +LT +eM +fD +lK +er +Nd +gb +uj +hj +hj +hj +hj +gw +iN +iK +iK +jb +hj +hj +hj +hj +hj +hj +ac +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 +"} +(68,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Ay +aa +aa +Zb +as +as +su +ZB +bz +uR +Rn +er +jq +fD +Zz +gd +TI +er +er +ek +kn +Jz +fD +Yz +er +Nd +rm +qX +HJ +hj +hj +hj +hj +iP +iV +iK +jc +hj +hj +hj +hj +hj +hj +ac +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 +"} +(69,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bB +IF +by +bB +Hv +Ac +Rn +er +dP +Dr +er +gd +BS +Uh +cM +tJ +kn +er +Qi +KG +er +Nd +VO +ia +ha +gY +Nd +hj +hj +iO +iK +iK +iK +iK +hj +hj +hj +ac +ac +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 +"} +(70,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +ga +aa +aa +OH +aa +bB +aS +HA +QD +Si +lH +ve +er +er +er +er +mA +ej +MN +MN +kn +nO +eM +er +er +er +Nd +ZF +rm +HJ +BC +jT +Nd +hj +iK +iK +iZ +jd +hj +hj +hj +ac +ac +KF +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 +"} +(71,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ve +aZ +xk +HH +TM +cv +ve +er +iB +EO +er +VX +kA +bU +LT +kn +kn +eM +At +MY +er +Nd +hJ +ib +id +id +BC +Nd +hj +iQ +hj +iK +hj +hj +hj +ac +ac +ac +hj +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(72,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ve +aY +bA +wt +bg +MD +ve +er +yu +Pu +xO +ej +ej +Ue +bU +qK +gd +go +fD +cR +er +Nd +Hl +gZ +id +id +kJ +Nd +hj +Qc +hj +hj +hj +ac +ac +ac +ac +ac +hj +hj +hj +aa +aa +BG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(73,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ve +aT +Si +HW +Xb +ZN +ve +er +iB +Pu +er +kn +gd +hz +bU +gd +gd +er +kR +MY +er +Nd +gb +id +id +ib +ol +Nd +hj +iK +hj +ac +ac +ac +ac +ac +ac +hj +hj +hj +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(74,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ve +ba +TM +aS +Si +Si +ve +er +er +er +er +YU +gd +Ll +ks +kn +fx +eM +er +er +er +Nd +pn +en +id +id +gY +Nd +hj +iR +hj +ac +ac +aa +aa +aa +aa +hj +hj +hj +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(75,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +OH +ve +pe +wI +Fe +bA +ji +ve +er +el +Tv +er +PO +kn +Ue +ku +kn +kn +eM +fD +fP +er +Nd +hL +EH +hH +JA +ix +Nd +ac +ac +fi +ac +aa +aa +aa +aa +aa +aa +hj +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(76,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +OH +ve +cT +by +ca +lX +gc +ve +er +AZ +Dr +oy +kn +kn +Ue +Ue +kn +kn +go +fD +cR +er +Nd +hM +lD +lD +hb +ix +Nd +ac +ac +ac +aa +aa +Un +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(77,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +OH +ve +be +sK +Si +Si +ji +ve +eM +el +xW +er +Qk +Gu +Ck +Ue +ej +Qk +eM +Zg +fP +er +Nd +hN +dx +ij +hH +ix +Nd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(78,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BG +aa +aa +aa +ve +wv +IX +by +Si +Si +ve +er +er +er +er +av +pq +zs +uT +wx +Et +er +er +er +er +Nd +hO +gY +il +xC +iz +Nd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(79,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ve +ve +ve +vV +ve +ve +ve +ve +ve +XQ +pr +qQ +GM +jw +jw +GM +qQ +pr +xG +xG +xG +xG +xG +fn +xG +xG +xG +xG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(80,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Ak +lV +dy +sX +FZ +FZ +FZ +FZ +FZ +XQ +eq +bL +dj +aI +gJ +IG +qk +gW +xG +gU +gX +xG +qF +Vi +xG +GI +AL +xG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(81,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ab +ab +ac +ac +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 +Ak +IN +Uc +pd +FZ +DG +hc +yL +FZ +XQ +dU +fB +Xn +wB +nI +Lx +fB +fB +xG +wH +Cy +hg +tx +Yl +hK +iu +pW +xG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(82,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ab +ab +ab +ab +ab +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Ak +Az +SM +fG +FZ +FU +Le +lF +FZ +XQ +mW +fB +bZ +fp +FQ +Lx +eD +fB +xG +xy +xj +xG +EA +im +xG +gG +hx +xG +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 +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(83,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +FC +FC +FC +FC +FC +ab +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bf +aa +aa +oA +aa +aa +Ak +os +bH +ce +FZ +aG +cp +wU +FZ +XQ +ry +ax +bY +PL +QW +fz +mb +GB +xG +xG +xG +xG +Af +im +xG +xG +xG +xG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(84,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ab +FC +mi +UK +fX +FC +ab +ab +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Zb +Ak +HE +IH +sW +vi +Ti +Hz +cP +FZ +XQ +XQ +XQ +XQ +Sd +Sd +XQ +XQ +XQ +xG +sq +GI +xG +Af +im +xG +GI +co +xG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(85,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ab +ab +FC +Zm +mI +UK +FC +ab +ab +ab +ac +aa +aa +Vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BG +aa +aa +Zb +OH +aa +oA +Ak +WS +sW +sW +vi +iJ +cp +pg +FZ +tA +gI +dv +eQ +aw +cz +XH +hP +cx +xG +ql +ux +hK +IJ +Yl +hK +iu +pW +xG +Un +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(86,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ab +ab +FC +fX +Sh +Sh +FC +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ct +xq +Ug +ih +bM +Fz +FZ +Sy +cp +cc +FZ +tA +hI +wY +eN +Nw +Ip +vK +UF +GG +xG +ie +hf +xG +Af +im +xG +gG +qI +xG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(87,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ab +FC +UK +Mg +Zj +FC +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +OH +aa +Ph +oR +aE +aH +Ug +Oj +SM +mh +FZ +tY +yE +uN +FZ +tA +in +WD +Yf +yG +Hr +Sq +jl +Bi +xG +xG +xG +xG +OU +eR +xG +xG +xG +xG +iG +ap +hh +HV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Un +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(88,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +FC +FC +FC +FC +FC +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +cr +wk +nK +au +Ug +nD +nT +oh +FZ +QT +xg +pN +FZ +tA +pc +wY +AI +Qf +UF +De +GY +dK +xG +dg +lu +xG +Af +im +xG +GI +YO +xG +iF +ai +iF +HV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(89,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ab +ab +ab +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VV +jm +xz +wd +Ug +cV +XW +cq +FZ +FZ +FZ +FZ +FZ +tA +hG +hI +hZ +if +UF +De +jl +jn +xG +Fs +zC +hK +IJ +Yl +hK +iu +pt +xG +aC +ut +ut +HV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(90,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ab +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VV +Jh +eC +aR +Ug +Ak +Ak +cb +Ak +Ak +Ak +Ak +tA +tA +tA +cy +tA +EL +UF +zo +de +eO +xG +bO +Aw +xG +Af +im +xG +FK +dM +xG +ut +xI +Nq +HV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(91,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +UT +VV +gF +VV +aQ +bh +Bn +bJ +bs +PR +dC +aQ +dA +do +dF +Ra +dD +tA +fh +ll +Ec +jF +xG +xG +xG +xG +Af +im +xG +xG +xG +xG +HV +yw +HV +HV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(92,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +UT +TB +Rk +lL +aQ +bi +Wu +Sg +Cb +fJ +dG +aQ +cX +dB +dl +is +eT +tA +fj +ll +Ec +gv +xG +dc +GI +xG +Af +im +xG +GI +pC +xG +Nf +KK +Mf +HV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(93,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +UT +EW +Rk +EW +aQ +Tt +Vo +Wu +Wu +Xj +br +aQ +cO +zW +dE +cN +Dh +tA +IB +ll +GY +pG +xG +ql +iu +hK +IJ +Yl +hK +iu +pW +xG +cG +KK +xA +HV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(94,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +UT +ee +lR +PP +aQ +Sf +bm +cZ +cs +TU +aN +aQ +ea +hw +ea +tA +kK +EL +Hr +fT +Ez +fs +xG +Dn +hf +xG +Af +im +xG +gG +hu +xG +hS +KK +cw +HV +aa +aa +Vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(95,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +UT +IY +lR +IY +aQ +cI +Wu +fL +Qo +VQ +Ky +aQ +Xa +gM +GN +ey +Eq +fS +Hr +Vw +Hr +Hr +ov +xG +xG +ov +sg +nQ +ov +xG +xG +xG +Gv +KK +KK +HV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(96,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BG +aa +aa +aa +UT +UT +nB +EB +BZ +YL +GV +RF +Gj +Io +cu +aQ +Em +eS +ed +fy +ez +iA +Hr +ll +fq +UF +eJ +js +LR +rL +sj +Cn +sZ +Cn +Cn +kb +rB +KK +HV +HV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(97,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +UT +UT +IY +aQ +wV +nt +bu +eg +fJ +it +aQ +QZ +wo +eb +op +hr +Du +DC +oG +DC +DC +DC +aA +ur +tb +SV +SV +SV +SV +SV +LR +dh +HV +HV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(98,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +UT +UT +aQ +nl +KI +yT +bW +TU +LV +aQ +mp +Wc +BK +gL +ft +jB +dp +cQ +ec +Ri +vy +cm +LR +PY +SV +dm +JS +LR +ep +LR +HV +HV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Un +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(99,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +UT +aQ +nl +dI +gn +iH +TU +rJ +aQ +jg +jg +jg +jg +jg +jg +jg +jg +jg +jg +jg +jg +jg +eH +pU +Ej +LR +dn +iC +LR +HV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gu +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(100,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aQ +Hd +Wu +gq +Vo +TU +gV +aQ +cF +dY +iW +UH +eP +Fb +jv +BQ +UH +ZY +yN +dV +jg +bN +SV +zy +LR +aD +du +LR +aa +aa +aa +BG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ye +LN +jx +jx +LN +Pt +Hy +Hy +aa +aa +aa +aa +aa +BG +aa +aa +aa +aa +aa +aa +aa +aa +"} +(101,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aQ +xe +hR +bo +or +hV +UZ +fA +bp +bp +fg +XY +tt +tt +XY +XY +XY +tt +bp +ZM +Kd +eV +SV +MT +LR +LR +LR +LR +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kv +Uj +rd +RK +tS +Fm +wA +AN +RB +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(102,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aQ +aQ +dX +VL +VL +VL +jr +aQ +UA +Lk +Eo +gx +gx +gx +gx +gx +gx +gx +dq +Sw +jg +qS +Ls +Dx +gl +mc +LR +LR +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kv +vs +nE +QN +tc +Lc +FJ +AN +RB +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(103,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aQ +aQ +aQ +aQ +aQ +eU +Eh +jg +OI +DT +Uy +qC +Uy +vH +aF +gx +gx +Lk +jg +JS +uS +LR +LR +LR +LR +LR +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kv +rM +Pt +Sn +oA +OS +ND +KD +RB +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(104,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aQ +aQ +aQ +aB +nU +aB +jg +iI +fU +DT +gk +gx +gx +gk +gx +DT +dZ +jg +OC +tX +ao +LR +LR +LR +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jx +kv +Hy +Zb +aa +qL +aa +Hy +Hy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(105,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aQ +aQ +FL +FL +FL +jg +ht +fK +Lt +cD +uB +gm +iv +DT +pZ +dz +jg +WC +WC +WC +LR +LR +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aM +SJ +aa +Ik +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(106,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Un +aa +aa +aa +aa +aa +ty +ty +ty +jg +jg +jg +Za +jg +jg +jg +jg +Za +jg +jg +jg +Mi +Mi +Mi +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(107,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jg +jg +It +JJ +JJ +jg +jg +ik +sF +et +jg +jg +aa +aa +aa +aa +aa +aa +BG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jM +aa +BG +Mu +aa +SJ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(108,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jg +eL +eL +eL +jg +jg +eL +eL +eL +jg +BG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Zb +Zb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(109,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jg +SF +SF +SF +jg +jg +SF +SF +SF +jg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +oA +aa +oA +aM +aM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(110,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BG +aa +aa +Vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +Zb +aa +Zb +aa +aa +aa +jM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(111,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(112,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BG +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Zb +aa +aa +aM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(113,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ac +aa +aa +aa +aa +aa +aa +Un +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(114,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Vt +aa +aa +aa +aa +aa +aa +aa +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 +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 +"} +(115,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ab +ab +ab +Un +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(116,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +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 +"} +(117,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Un +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(118,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(119,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(120,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(121,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(122,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(123,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(124,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(125,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(126,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(127,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(128,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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/map_files220/RandomZLevels/caves.dmm b/_maps/map_files220/RandomZLevels/caves.dmm new file mode 100644 index 000000000000..8a9d83f6b517 --- /dev/null +++ b/_maps/map_files220/RandomZLevels/caves.dmm @@ -0,0 +1,54122 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"ab" = ( +/mob/living/simple_animal/hostile/poison/giant_spider{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"ac" = ( +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/closed, +/obj/effect/mapping_helpers/airlock/welded, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"ae" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/shreds, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/carpet/green, +/area/awaymission/caves/build/reqpower_build) +"af" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 10 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/obj/structure/flora/rock/pile, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ah" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/awaymission/caves/build/reqpower_build) +"ai" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"al" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"am" = ( +/obj/structure/table/wood, +/obj/item/newspaper, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"an" = ( +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"ao" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"ap" = ( +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"as" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall/r_wall, +/area/awaymission/caves/build/reqpower_build) +"au" = ( +/obj/effect/decal/cleanable/glass/plasma, +/obj/item/shard/plasma, +/obj/effect/landmark/damageturf, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"av" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/glass, +/obj/item/shard, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"aw" = ( +/obj/structure/curtain/black, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredcornersalt" + }, +/area/awaymission/caves/build/reqpower_build) +"az" = ( +/obj/structure{ + icon = 'icons/obj/turrets.dmi'; + icon_state = "destroyed_target_prism" + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"aD" = ( +/obj/machinery/optable, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"aE" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_tile10" + }, +/obj/structure/flora/rock/pile, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"aF" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4 + }, +/obj/effect/decal/remains/human, +/turf/simulated/floor/engine, +/area/awaymission/caves/build/reqpower_build) +"aG" = ( +/obj/machinery/door_control/shutter/north{ + id = "cave_shutters"; + name = "shutters control" + }, +/obj/machinery/door/poddoor/shutters{ + id_tag = "cave_shutters" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"aH" = ( +/obj/structure/flora/rock/pile, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"aJ" = ( +/obj/structure/closet/secure_closet{ + req_access = list(271); + opened = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"aK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"aP" = ( +/obj/machinery/porta_turret{ + faction = "syndicate"; + lethal = 1; + requires_power = 0 + }, +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"aT" = ( +/obj/structure/spider/stickyweb, +/obj/structure/spider/cocoon, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"aV" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"aW" = ( +/obj/structure/cult/archives, +/obj/item/spellbook/oneuse/fake_gib, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"aY" = ( +/obj/item/stock_parts/micro_laser, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"bb" = ( +/obj/structure/table/reinforced, +/obj/item/hand_labeler, +/obj/item/stack/packageWrap, +/obj/effect/turf_decal{ + dir = 9 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"bc" = ( +/obj/structure/mecha_wreckage/ripley/firefighter, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"bd" = ( +/obj/structure/constructshell, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"be" = ( +/obj/structure/fluff/divine/conduit{ + icon_state = "trap-fire"; + density = 0 + }, +/obj/item/organ/external/chest, +/obj/effect/gibspawner/human, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"bf" = ( +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"bg" = ( +/obj/structure/fluff/divine/conduit{ + icon_state = "nexus-red" + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"bh" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"bi" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"bk" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"bm" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/item/bedsheet/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken6" + }, +/area/awaymission/caves) +"bo" = ( +/obj/structure/curtain/black, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredcornersalt"; + dir = 8 + }, +/area/awaymission/caves/build/reqpower_build) +"bq" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"bt" = ( +/obj/structure/grille, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"bu" = ( +/obj/structure/door_assembly/door_assembly_min{ + anchored = 1 + }, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken" + }, +/area/awaymission/caves) +"bw" = ( +/obj/structure{ + icon_state = "pod_broken"; + icon = 'modular_ss220/maps220/icons/misc_objects.dmi'; + desc = "The remains of the cloning pod. Something broke it from the inside."; + name = "broken pod"; + density = 1 + }, +/obj/effect/decal/cleanable/glass, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"bB" = ( +/obj/structure/mineral_door/wood, +/obj/structure/barricade/wooden{ + layer = 3.01 + }, +/obj/structure/barricade/wooden/crude{ + layer = 3.01 + }, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"bE" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"bG" = ( +/obj/structure/flora/rock/pile, +/obj/item/stack/sheet/metal, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"bK" = ( +/obj/item/stack/sheet/bone, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"bL" = ( +/obj/structure/chair/sofa{ + dir = 4 + }, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"bM" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"bO" = ( +/turf/simulated/floor/chasm/straight_down/lava_land_surface{ + light_color = null; + light_power = 0; + light_range = 0 + }, +/area/awaymission/caves) +"bP" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_2"; + dir = 4 + }, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"bQ" = ( +/obj/machinery/optable, +/obj/item/clothing/gloves/color/latex, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"bS" = ( +/obj/item/reagent_containers/iv_bag/salglu, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"bT" = ( +/obj/item/stack/rods, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"bU" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"bV" = ( +/obj/item/clothing/head/helmet/riot/knight/templar, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"bX" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/toy/character/wizard{ + pixel_y = 10 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/reagent_containers/food/snacks/grown/apple/poisoned, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"bY" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"cc" = ( +/obj/structure/flora/rock/pile, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"cg" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/mob/living/simple_animal/pet/cat/Runtime{ + name = "Witches Familiar" + }, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken3" + }, +/area/awaymission/caves) +"ci" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 5 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/solgov_logo{ + icon_state = "sol_logo20" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"cj" = ( +/obj/structure/cult/altar, +/obj/item/clothing/gloves/ring/silver, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ck" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/crowbar, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"cm" = ( +/obj/effect/gibspawner/human, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"cn" = ( +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "cave4_bath2" + }, +/obj/machinery/button/windowtint/south{ + id = "cave4_bath2" + }, +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"cq" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"cs" = ( +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"ct" = ( +/obj/structure/table, +/obj/item/flashlight/lamp{ + on = 0; + pixel_y = 10; + pixel_x = -5 + }, +/obj/item/paper_bin{ + pixel_x = 6 + }, +/obj/item/pen, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"cv" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"cz" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"cA" = ( +/obj/effect/decal/cleanable/shreds, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"cB" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"cC" = ( +/obj/effect/gibspawner/human, +/obj/structure/kitchenspike, +/obj/item/organ/external/leg, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"cD" = ( +/obj/structure{ + icon_state = "pod_broken2"; + icon = 'modular_ss220/maps220/icons/misc_objects.dmi'; + desc = "The remains of the cloning pod. Something broke it from the inside."; + name = "broken pod"; + density = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"cE" = ( +/obj/structure/sign/fire{ + pixel_x = 32 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"cF" = ( +/obj/structure/railing, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"cH" = ( +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"cK" = ( +/obj/structure/sign/securearea{ + pixel_y = -30 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"cO" = ( +/obj/item/pickaxe/mini, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"cP" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/obj/structure/flora/rock, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"cT" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding1"; + dir = 1 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"cW" = ( +/obj/structure/dresser, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/carpet/purple, +/area/awaymission/caves/build/reqpower_build) +"cX" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"cY" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"da" = ( +/obj/structure/statue{ + icon_state = "angelattack"; + desc = "An incredibly lifelike marble carving. Its eyes seems to follow you.."; + anchored = 1 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"db" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"dh" = ( +/obj/structure/statue{ + icon_state = "angelseen"; + desc = "An incredibly lifelike marble carving. Its eyes seems to follow you.."; + anchored = 1 + }, +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"di" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"dj" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"dk" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"do" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center3" + }, +/mob/living/simple_animal/hostile/skeleton, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"dp" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/trash, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"dq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"dr" = ( +/obj/effect/decal/remains/xeno, +/turf/simulated/floor/engine, +/area/awaymission/caves/build/reqpower_build) +"ds" = ( +/obj/effect/decal/cleanable/glass/plasma, +/obj/item/shard/plasma{ + icon_state = "plasmasmall" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"du" = ( +/obj/structure/flora/rock/pile, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredcornersalt" + }, +/area/awaymission/caves/build/reqpower_build) +"dw" = ( +/obj/structure/girder, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"dz" = ( +/obj/structure/spawner/skeleton{ + max_mobs = 5 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"dA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"dC" = ( +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"dF" = ( +/obj/structure/closet, +/obj/item/clothing/suit/browntrenchcoat, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/stack/spacecash/c20, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"dG" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"dI" = ( +/obj/machinery/atmospherics/unary/tank/oxygen, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"dP" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"dQ" = ( +/obj/structure{ + icon = 'icons/obj/machines/mining_machines.dmi'; + icon_state = "console"; + name = "stacking machine console"; + pixel_y = 32; + anchored = 1 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"dR" = ( +/obj/structure/sign/biohazard{ + pixel_y = -30 + }, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"dS" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/experimentor{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/flashlight/lamp{ + on = 0 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"dU" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"dV" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/curtain/black, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/carpet/purple, +/area/awaymission/caves/build/reqpower_build) +"dX" = ( +/turf/simulated/floor/plating/asteroid/airless/cave/volcanic{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ea" = ( +/mob/living/simple_animal/hostile/asteroid/hivelord{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"ed" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"ee" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"ef" = ( +/obj/structure/railing, +/obj/structure/sink/directional/west, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"eg" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_2" + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"ek" = ( +/obj/structure/flora/rock, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"eo" = ( +/obj/structure/flora/rock/pile, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"eq" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/tome, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ev" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/plating, +/area/awaymission/caves/build) +"ew" = ( +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"eA" = ( +/obj/item/stack/sheet/metal, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"eB" = ( +/obj/structure/railing, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"eD" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"eE" = ( +/obj/item/flashlight{ + on = 1 + }, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"eF" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/mining_scanner, +/obj/item/mining_voucher, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"eG" = ( +/obj/item/kirbyplants, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/north, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"eK" = ( +/mob/living/simple_animal/hostile/abomination/altform4{ + desc = "Скуластое, громоздкое чудовище. Еще один неудачный эксперимент. Что именно они пытались создать?" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"eL" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"eM" = ( +/mob/living/simple_animal/hostile/abomination/altform1{ + desc = "Скуластое, громоздкое чудовище. Еще один неудачный эксперимент. Что именно они пытались создать?" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"eO" = ( +/obj/structure/closet, +/obj/item/clothing/suit/fluff/dusty_jacket, +/obj/effect/decal/cleanable/cobweb2, +/obj/item/gun/energy/laser/retro, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"eQ" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_5"; + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 4 + }, +/obj/effect/decal/solgov_logo{ + icon_state = "sol_logo10" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"eR" = ( +/obj/effect/decal/cleanable/generic, +/obj/machinery/light_construct/small/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"eW" = ( +/obj/structure/window/reinforced/polarized{ + id = "cave4_bath1" + }, +/obj/machinery/button/windowtint/north{ + id = "cave4_bath1" + }, +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/bikehorn/rubberducky, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/caves/build/reqpower_build) +"eZ" = ( +/obj/structure/curtain/black, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"fa" = ( +/obj/structure/table, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/stack/medical/splint, +/obj/item/stack/medical/splint, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"fb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"fc" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"fe" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ff" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"fi" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 5 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"fk" = ( +/obj/structure/door_assembly/door_assembly_med{ + anchored = 1 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"fl" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/obj/effect/gibspawner/human, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"fm" = ( +/obj/structure/closet/emcloset, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"fo" = ( +/obj/item/stack/rods, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"fp" = ( +/obj/structure/spider/stickyweb, +/obj/structure/flora/ash/rock/style_random, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"fq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/coatrack, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"fs" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"fu" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"fw" = ( +/obj/item/storage/firstaid/brute/empty, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"fz" = ( +/obj/structure/flora/rock/pile, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"fB" = ( +/obj/structure/railing/cap{ + dir = 9 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"fC" = ( +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"fD" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 6 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"fF" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/build) +"fI" = ( +/obj/effect/decal/solgov_logo{ + icon_state = "sol_logo7" + }, +/obj/item/radio, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"fM" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center3" + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"fN" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"fO" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"fQ" = ( +/obj/structure/table_frame, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"fS" = ( +/obj/structure/flora/rock/pile, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "elevatorshaft" + }, +/area/awaymission/caves/build/reqpower_build) +"fT" = ( +/obj/structure/cult/pylon, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"fU" = ( +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"fV" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/solgov_logo{ + icon_state = "sol_logo19" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"fW" = ( +/obj/structure/closet{ + opened = 1 + }, +/obj/item/clothing/mask/breath, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"fX" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"ga" = ( +/obj/structure/closet/l3closet/general, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/awaymission/caves/build/reqpower_build) +"gc" = ( +/turf/simulated/wall, +/area/awaymission/caves) +"gd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"gf" = ( +/obj/structure/door_assembly/door_assembly_hatch, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"gg" = ( +/obj/structure/table, +/obj/item/mod/module/visor/night, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"gh" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/caves/build) +"gj" = ( +/obj/structure/closet/crate/freezer{ + opened = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"gk" = ( +/obj/structure/dresser, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/north, +/turf/simulated/floor/carpet/purple, +/area/awaymission/caves/build/reqpower_build) +"gl" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/storage/fancy/crayons{ + pixel_y = 10 + }, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"gq" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/ore_box, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"gs" = ( +/obj/item/stack/sheet/metal, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"gu" = ( +/obj/machinery/computer{ + dir = 2; + icon_state = "broken"; + icon_screen = "broken"; + icon_keyboard = "generic_key_broken" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"gv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"gC" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken" + }, +/area/awaymission/caves) +"gI" = ( +/obj/item/rack_parts, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"gL" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "small"; + pixel_x = 10; + pixel_y = 9 + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"gN" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"gO" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/build) +"gP" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/melee/classic_baton/telescopic{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = -9 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"hb" = ( +/obj/structure/flora/rock, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"hd" = ( +/obj/item/storage/firstaid/surgery, +/obj/structure/spider/stickyweb, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"he" = ( +/obj/machinery/constructable_frame/machine_frame{ + icon_state = "box_2" + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"hi" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"hj" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_tile19" + }, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"hk" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"hn" = ( +/obj/structure/statue{ + icon_state = "angelattack"; + desc = "An incredibly lifelike marble carving. Its eyes seems to follow you.."; + anchored = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"ht" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center3" + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"hu" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"hw" = ( +/obj/item/chair/stool, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"hC" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_block4" + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"hD" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/fans/tiny/invisible, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"hE" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"hF" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"hG" = ( +/obj/item/shard/plasma, +/obj/effect/decal/cleanable/glass/plasma, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"hH" = ( +/obj/structure/statue{ + icon_state = "angelattack"; + desc = "An incredibly lifelike marble carving. Its eyes seems to follow you.."; + anchored = 1 + }, +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"hI" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"hJ" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"hL" = ( +/obj/machinery/door/airlock/mining, +/obj/effect/mapping_helpers/machinery/destroyed, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"hM" = ( +/obj/structure/closet/body_bag{ + opened = 1 + }, +/obj/effect/mob_spawn/human/corpse/skeleton, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"hO" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 9 + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"hP" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"hQ" = ( +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"hS" = ( +/obj/structure{ + icon = 'icons/obj/machines/telecomms.dmi'; + icon_state = "AAS_Off_Open"; + name = "messaging server"; + desc = "A machine that processes and routes PDA and request console messages."; + pixel_x = -5; + density = 1; + anchored = 1 + }, +/turf/simulated/floor/greengrid{ + icon_state = "bcircuit" + }, +/area/awaymission/caves/build/reqpower_build) +"hY" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 10 + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center4" + }, +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"hZ" = ( +/obj/machinery/constructable_frame/machine_frame{ + icon_state = "box_1" + }, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/awaymission/caves/build/reqpower_build) +"ie" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"if" = ( +/obj/item/kirbyplants, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"ig" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding1"; + dir = 4 + }, +/obj/structure/flora/rock, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ih" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"ij" = ( +/obj/machinery/light_construct/small/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"ik" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"ip" = ( +/obj/structure/railing, +/obj/structure/sink/directional/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"ir" = ( +/obj/structure/dispenser/oxygen, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"is" = ( +/obj/structure/spider/stickyweb, +/obj/machinery/iv_drip, +/obj/item/storage/firstaid/toxin, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"iu" = ( +/obj/item/flag/solgov, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"iv" = ( +/obj/item/clothing/under/rank/medical/scrubs/green, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"iw" = ( +/obj/structure/cult/altar, +/obj/item/clothing/gloves/ring/glass, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ix" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"iy" = ( +/obj/item/reagent_containers/food/snacks/grown/poppy{ + pixel_y = -15; + pixel_x = -5 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"iA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/railing/corner, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"iC" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center3" + }, +/obj/structure/flora/rock, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"iD" = ( +/mob/living/simple_animal/hostile/abomination{ + desc = "Скуластое, громоздкое чудовище. Еще один неудачный эксперимент. Что именно они пытались создать?" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"iE" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"iF" = ( +/obj/structure/stone_tile/slab, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"iG" = ( +/obj/structure{ + icon = 'icons/obj/machines/telecomms.dmi'; + icon_state = "hub_off"; + name = "messaging server"; + desc = "A machine that processes and routes PDA and request console messages."; + density = 1; + anchored = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/greengrid{ + icon_state = "bcircuit" + }, +/area/awaymission/caves/build/reqpower_build) +"iH" = ( +/mob/living/simple_animal/hostile/poison/giant_spider, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"iM" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"iQ" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + pixel_x = 9 + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"iR" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/ants, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"iW" = ( +/obj/structure/flora/rock/pile, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 2; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"iZ" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/awaymission/caves/build/reqpower_build) +"ja" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"je" = ( +/obj/machinery/economy/vending/snack/free, +/obj/effect/mapping_helpers/machinery/damaged, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"jg" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/caves) +"jh" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"ji" = ( +/obj/effect/decal/cleanable/generic, +/obj/machinery/light_construct/small/east, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"jm" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center3" + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding_tile2" + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"jn" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"jp" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/glass/beaker{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/reagent_containers/syringe/insulin, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"js" = ( +/obj/structure/table_frame/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"jt" = ( +/obj/structure/statue{ + icon_state = "angelseen"; + desc = "An incredibly lifelike marble carving. Its eyes seems to follow you.."; + anchored = 1 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"jv" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding_tile1" + }, +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"jy" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"jA" = ( +/obj/structure/closet/secure_closet{ + req_access = list(271) + }, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/extinguisher/mini, +/obj/item/kitchen/knife/combat/survival, +/obj/item/storage/backpack/satchel/explorer, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"jC" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/closet/crate/miningcar, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"jE" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"jF" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"jL" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"jM" = ( +/obj/structure/closet/radiation, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"jN" = ( +/obj/item/stack/sheet/metal, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"jP" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"jQ" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"jW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"jX" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"jY" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"jZ" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ka" = ( +/obj/effect/decal/cleanable/glass, +/obj/structure/windoor_assembly, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"kc" = ( +/obj/structure/table/reinforced, +/obj/item/paper/researchnotes, +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"kf" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "necro1" + }, +/area/awaymission/caves) +"kg" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/machinery/destroyed, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"kh" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_block4" + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"kl" = ( +/obj/structure/sign/securearea{ + pixel_x = -30 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"km" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"kn" = ( +/obj/structure/table, +/obj/item/analyzer, +/obj/machinery/light_construct/small/north, +/obj/item/storage/belt/utility/full/multitool, +/turf/simulated/floor/plasteel, +/area/awaymission/caves/build) +"ko" = ( +/mob/living/simple_animal/hostile/scarybat, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"kp" = ( +/obj/machinery/optable, +/obj/item/clothing/gloves/color/latex, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"kv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/awaystart, +/turf/simulated/floor/plasteel, +/area/awaymission/caves/build) +"kC" = ( +/obj/item/clothing/suit/armor/riot/knight/red, +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"kD" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"kF" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"kG" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall, +/area/awaymission/caves/build) +"kH" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -7; + pixel_y = -10 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"kI" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -5; + pixel_y = -8 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"kR" = ( +/obj/item/reagent_containers/spray, +/mob/living/simple_animal/hostile/poison/giant_spider{ + wander = 0 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"kU" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_2"; + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"kV" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center3" + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"lc" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"lg" = ( +/obj/item/cultivator/rake, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"lj" = ( +/obj/structure/door_assembly/door_assembly_med{ + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"lk" = ( +/obj/item/stack/sheet/metal, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"lm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"lo" = ( +/mob/living/simple_animal/hostile/abomination/altform3{ + desc = "Скуластое, громоздкое чудовище. Еще один неудачный эксперимент. Что именно они пытались создать?" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"lp" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"lq" = ( +/obj/machinery/door/firedoor, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"lr" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/solgov_logo{ + icon_state = "sol_logo9" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"ls" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"lt" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/build) +"lv" = ( +/obj/structure{ + icon_state = "pod_broken2"; + icon = 'modular_ss220/maps220/icons/misc_objects.dmi'; + desc = "The remains of the cloning pod. Something broke it from the inside."; + name = "broken pod"; + density = 1 + }, +/obj/structure/windoor_assembly{ + dir = 2 + }, +/obj/effect/decal/cleanable/glass, +/obj/structure/curtain/medical, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"lw" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/reagent_containers/food/snacks/candy/cotton/poison, +/obj/item/reagent_containers/food/snacks/candy/jellybean/poison{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/snacks/candy/gummyworm/poison, +/obj/item/reagent_containers/food/snacks/candy/gummybear/poison{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken3" + }, +/area/awaymission/caves) +"lx" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"lD" = ( +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/caves/build/reqpower_build) +"lE" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_2"; + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"lG" = ( +/obj/structure/flora/rock/pile, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"lI" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 2; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"lJ" = ( +/obj/item/organ/external/chest, +/obj/item/kitchen/knife/butcher, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken3" + }, +/area/awaymission/caves) +"lL" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/decal/solgov_logo{ + icon_state = "sol_logo18" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"lQ" = ( +/obj/structure{ + icon = 'icons/obj/stationobjs.dmi'; + icon_state = "portal1"; + desc = "An evil portal made by dark magics. Surprisingly stable."; + name = "eldritch portal"; + can_be_hit = 0; + anchored = 1 + }, +/obj/effect/bump_teleporter{ + id = "5cavedown"; + id_target = "6caveup" + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "necro1" + }, +/area/awaymission/caves) +"lT" = ( +/obj/effect/bump_teleporter{ + id = "2caveup"; + id_target = "1cavedown" + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"lU" = ( +/obj/item/chair/wood, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"lV" = ( +/obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/machinery/destroyed, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"lW" = ( +/obj/structure/railing, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"lY" = ( +/obj/structure/sink/puddle, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"lZ" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build) +"mc" = ( +/obj/structure/grille, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"mf" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"mi" = ( +/obj/structure/railing/cap{ + dir = 6 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"mj" = ( +/obj/structure/closet/emcloset, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"ml" = ( +/obj/structure/closet/crate/grave{ + opened = 1; + anchored = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"mn" = ( +/mob/living/simple_animal/hostile/poison/giant_spider{ + wander = 0 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"mo" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding1" + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ms" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding_tile1" + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"mx" = ( +/turf/simulated/floor/plating, +/area/awaymission/caves/build) +"mz" = ( +/turf/simulated/wall/indestructible/cult, +/area/awaymission/caves) +"mB" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 6 + }, +/obj/structure/flora/rock/pile, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"mC" = ( +/turf/simulated/wall, +/area/awaymission/caves/build) +"mD" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/storage/bag/ore, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"mH" = ( +/obj/structure/flora/rock, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"mI" = ( +/obj/structure/mineral_door/wood, +/obj/structure/barricade/wooden{ + layer = 3.01 + }, +/obj/structure/barricade/wooden/crude{ + layer = 3.01 + }, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken5" + }, +/area/awaymission/caves) +"mJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"mL" = ( +/obj/machinery/shield{ + icon_state = "shield-cult"; + max_integrity = 150; + name = "Invoker's Shield" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"mM" = ( +/obj/item/stack/rods, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"mN" = ( +/obj/structure/table, +/obj/random/toolbox, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/caves/build) +"mR" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"mT" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"mX" = ( +/obj/structure/closet, +/obj/item/clothing/suit/storage/labcoat, +/obj/item/clothing/shoes/centcom, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/carpet/purple, +/area/awaymission/caves/build/reqpower_build) +"mZ" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken5" + }, +/area/awaymission/caves) +"na" = ( +/obj/item/folder/yellow, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"nb" = ( +/obj/item/shard/plasma{ + icon_state = "plasmasmall" + }, +/obj/effect/decal/cleanable/glass/plasma, +/turf/simulated/floor/engine, +/area/awaymission/caves/build/reqpower_build) +"nc" = ( +/obj/effect/decal/cleanable/generic, +/obj/machinery/light_construct/small/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken3" + }, +/area/awaymission/caves) +"ng" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/solgov_logo{ + icon_state = "sol_logo3" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"nh" = ( +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken7" + }, +/area/awaymission/caves) +"nj" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"nl" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 2; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"nm" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_5"; + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"no" = ( +/obj/structure/door_assembly/door_assembly_hatch, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"ns" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/fans/tiny/invisible, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build/reqpower_build) +"nt" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/gibspawner/human, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"nu" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall/r_wall, +/area/awaymission/caves) +"nv" = ( +/obj/structure/statue{ + icon_state = "angelattack"; + desc = "An incredibly lifelike marble carving. Its eyes seems to follow you.."; + anchored = 1 + }, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"nx" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"nz" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"nB" = ( +/obj/structure/bed/roller, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"nC" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"nD" = ( +/obj/structure/fluff/divine/conduit{ + icon_state = "conduit-red" + }, +/obj/effect/decal/cleanable/dust, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"nE" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"nF" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_block2" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"nG" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_2"; + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/east, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"nJ" = ( +/obj/effect/landmark/damageturf, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"nK" = ( +/obj/item/crowbar/small, +/obj/machinery/power/terminal, +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel, +/area/awaymission/caves/build) +"nN" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredcornersalt" + }, +/area/awaymission/caves/build/reqpower_build) +"nO" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"nP" = ( +/obj/structure/flora/rock/pile, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/obj/item/stack/rods, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"nQ" = ( +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"nR" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/table, +/obj/item/radio, +/obj/item/radio{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"nU" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_tile22" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"nW" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/stack/rods, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"nX" = ( +/obj/item/stack/ore/glass/basalt, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"nZ" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/awaymission/caves/build/reqpower_build) +"oa" = ( +/obj/structure/chair/comfy/black, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"oc" = ( +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/build/reqpower_build) +"oi" = ( +/obj/mecha/working/ripley{ + obj_integrity = 40 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"om" = ( +/obj/structure/flora/rock/pile, +/obj/machinery/light_construct/small/south, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"oo" = ( +/obj/structure/flora/rock/pile, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"oq" = ( +/obj/item/gun/energy/kinetic_accelerator, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"or" = ( +/obj/structure/closet/walllocker/firelocker/south, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"ot" = ( +/obj/machinery/door/airlock/survival_pod, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"ow" = ( +/obj/machinery/light_construct/small/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"oz" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"oA" = ( +/mob/living/simple_animal/hostile/abomination/super, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredcornersalt"; + dir = 8 + }, +/area/awaymission/caves/build/reqpower_build) +"oB" = ( +/obj/structure/girder/reinforced, +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"oG" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/radio, +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"oK" = ( +/obj/structure/closet{ + opened = 1 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/tank/internals/anesthetic, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"oM" = ( +/obj/effect/decal/cleanable/shreds, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"oP" = ( +/obj/machinery/door/airlock/mining, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"oQ" = ( +/obj/effect/bump_teleporter{ + id_target = "3cave_down"; + id = "4cave_up" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"oR" = ( +/obj/item/stack/rods, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"oS" = ( +/obj/structure{ + icon = 'icons/obj/pipes/disposal.dmi'; + icon_state = "pipe-c"; + name = "pipe"; + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"oU" = ( +/obj/item/mounted/frame/intercom, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"oV" = ( +/obj/structure/cult/altar, +/obj/item/clothing/gloves/ring/gold, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"oX" = ( +/obj/structure{ + icon = 'icons/obj/turrets.dmi'; + icon_state = "destroyed_target_prism" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"oY" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build/reqpower_build) +"pc" = ( +/obj/structure/table/tray, +/obj/item/scalpel/laser/laser3, +/obj/item/retractor, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"pd" = ( +/obj/structure/closet/crate/grave/gravelead{ + opened = 1; + anchored = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"ph" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "small"; + pixel_x = 10 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"pi" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"pk" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/carpet/purple, +/area/awaymission/caves/build/reqpower_build) +"pm" = ( +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"pq" = ( +/obj/effect/turf_decal/box, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"pr" = ( +/obj/machinery/constructable_frame/machine_frame{ + icon_state = "box_1" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"pt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"pw" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredcornersalt" + }, +/area/awaymission/caves/build/reqpower_build) +"pB" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"pE" = ( +/obj/item/stack/rods, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"pH" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_tile10" + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"pI" = ( +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/chasm/straight_down/lava_land_surface{ + light_color = null; + light_power = 0; + light_range = 0 + }, +/area/awaymission/caves) +"pJ" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"pL" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 2 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"pQ" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"pT" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"pU" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"pV" = ( +/obj/item/clothing/mask/surgical, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"pZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"qa" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding_tile2" + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"qd" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"qe" = ( +/obj/structure/closet/l3closet/general, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/awaymission/caves/build/reqpower_build) +"qf" = ( +/obj/structure/bed, +/obj/item/bedsheet/fluff, +/obj/structure/curtain/black, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/carpet/purple, +/area/awaymission/caves/build/reqpower_build) +"qg" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/carpet/black, +/area/awaymission/caves/build/reqpower_build) +"qi" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/awaymission/caves) +"qj" = ( +/obj/structure/girder, +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"qn" = ( +/obj/effect/decal/cleanable/shreds, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light_construct/small/east, +/obj/structure/coatrack, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"qo" = ( +/obj/structure/closet/secure_closet{ + req_access = list(271) + }, +/obj/item/mod/control/pre_equipped/mining/vendor, +/obj/item/mod/control/pre_equipped/mining/vendor, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"qp" = ( +/obj/structure/closet, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"qt" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/stack/rods, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken6" + }, +/area/awaymission/caves) +"qx" = ( +/obj/machinery/suit_storage_unit/lavaland{ + req_access = list(271); + storage_type = null; + locked = 1 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"qE" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"qH" = ( +/obj/machinery/door/poddoor{ + id_tag = "cave4_blast" + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"qI" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/damageturf, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"qM" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding1"; + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"qP" = ( +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"qQ" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"qS" = ( +/obj/structure/railing, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"qT" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/flora/rock, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"qX" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/structure/closet/l3closet/general, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"qY" = ( +/obj/structure/railing/corner, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"qZ" = ( +/obj/structure/mineral_door/wood, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken5" + }, +/area/awaymission/caves) +"ra" = ( +/obj/structure/door_assembly/door_assembly_med, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"rf" = ( +/obj/item/stack/sheet/runed_metal{ + amount = 10 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"rg" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"rh" = ( +/obj/structure{ + icon = 'icons/obj/turrets.dmi'; + icon_state = "destroyed_target_prism" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"ri" = ( +/obj/structure/spider/stickyweb, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"rm" = ( +/mob/living/simple_animal/hostile/skeleton/deadwizard{ + wander = 0 + }, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ro" = ( +/obj/machinery/door/airlock/survival_pod/glass, +/obj/effect/mapping_helpers/machinery/destroyed, +/obj/machinery/door/poddoor/preopen{ + id_tag = "cave4_blast2" + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"rp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"rq" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"rs" = ( +/obj/machinery/flasher{ + pixel_y = 32; + id = "cave4_flash" + }, +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"rv" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding1"; + dir = 8 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"rx" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ry" = ( +/obj/item/skeleton/r_hand{ + pixel_y = 10; + pixel_x = 3 + }, +/obj/item/candle/eternal/wizard{ + pixel_x = -5; + pixel_y = -9; + lit = 1; + flickering = 1; + icon_state = "candle1_flicker" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken5" + }, +/area/awaymission/caves) +"rA" = ( +/obj/structure/statue{ + icon_state = "angelattack"; + desc = "An incredibly lifelike marble carving. Its eyes seems to follow you.."; + anchored = 1 + }, +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"rB" = ( +/obj/structure/closet/crate/miningcar, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"rM" = ( +/obj/structure/showcase/horrific_experiment, +/obj/structure/curtain/medical, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"rN" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding1" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"rQ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/closet/body_bag, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"rX" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_5"; + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"rZ" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"sd" = ( +/obj/effect/decal/cleanable/shreds, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"se" = ( +/obj/structure/computerframe{ + dir = 1 + }, +/obj/structure/spider/stickyweb, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"sh" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"si" = ( +/obj/machinery/constructable_frame/machine_frame{ + icon_state = "box_2" + }, +/obj/machinery/light_construct/small/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"sj" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"sm" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"sn" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/laser/retro, +/obj/item/gun/energy/laser/retro, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"so" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"sq" = ( +/obj/item/chair/wood{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"sr" = ( +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"sw" = ( +/obj/structure/spider/stickyweb, +/obj/machinery/light_construct/small/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken6" + }, +/area/awaymission/caves) +"sy" = ( +/obj/structure/closet/crate/miningcar, +/obj/item/stack/ore/plasma{ + amount = 20 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"sz" = ( +/mob/living/simple_animal/hostile/skeleton, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"sA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"sF" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"sK" = ( +/obj/machinery/door/airlock/survival_pod, +/obj/effect/mapping_helpers/airlock/welded, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"sL" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding1"; + dir = 4 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"sM" = ( +/obj/structure/closet/secure_closet{ + req_access = list(271) + }, +/obj/item/extinguisher/mini, +/obj/item/pickaxe/mini, +/obj/item/kitchen/knife/combat/survival, +/obj/item/storage/backpack/satchel/explorer, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"sP" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center1" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"sU" = ( +/obj/item/storage/box/monkeycubes/neaeracubes, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"sV" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 10 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"sY" = ( +/obj/structure/cult/pylon, +/obj/effect/decal/cleanable/dust, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding_tile2" + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ta" = ( +/obj/structure/closet/secure_closet, +/obj/item/tank/internals/nitrogen, +/obj/item/tank/internals/emergency_oxygen/nitrogen, +/obj/item/tank/internals/emergency_oxygen/nitrogen, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"td" = ( +/obj/structure/statue{ + icon_state = "angelseen"; + desc = "An incredibly lifelike marble carving. Its eyes seems to follow you.."; + anchored = 1 + }, +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"th" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "elevatorshaft" + }, +/area/awaymission/caves/build/reqpower_build) +"tj" = ( +/obj/structure/fluff/divine/conduit{ + icon_state = "trap-fire"; + density = 0 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"tk" = ( +/obj/item/candle/eternal/wizard{ + pixel_y = 14; + pixel_x = 8; + lit = 1; + flickering = 1; + icon_state = "candle1_flicker" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"tm" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 5 + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center1" + }, +/obj/structure/flora/rock, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"tn" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"tr" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 5 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/documents{ + desc = " Документы ''СОВЕРШЕННО СЕКРЕТНО'', напечатанные на защищенной от копирования бумаге. В них описываются ужасные эксперименты, проводимые в секретной лаборатории под эгидой Транс-Солнечной Федерации."; + name = "SolGov secret documents" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"ts" = ( +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"tw" = ( +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"tx" = ( +/obj/item/stack/sheet/metal, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"ty" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"tB" = ( +/obj/structure/spirit_board{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dust, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"tC" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"tD" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"tG" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 9 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/kirbyplants, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"tJ" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/flashlight/lantern{ + on = 1 + }, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"tK" = ( +/obj/random/tool, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"tL" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"tM" = ( +/obj/structure{ + icon = 'icons/obj/pipes/disposal.dmi'; + icon_state = "pipe-c"; + name = "pipe"; + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"tP" = ( +/obj/item/bedsheet/blue, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"tQ" = ( +/obj/structure/flora/rock, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"tT" = ( +/obj/structure/dresser, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/carpet/black, +/area/awaymission/caves/build/reqpower_build) +"tU" = ( +/obj/structure/closet, +/obj/item/clothing/suit/storage/labcoat, +/obj/item/clothing/suit/storage/labcoat, +/obj/item/clothing/shoes/centcom, +/obj/item/stack/spacecash/c200, +/turf/simulated/floor/carpet/purple, +/area/awaymission/caves/build/reqpower_build) +"tV" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"tW" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"tZ" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding_tile2" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"ua" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "packageSort2" + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"uc" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = -32 + }, +/obj/structure/table/wood/fancy/red, +/obj/item/spellbook/oneuse/smoke, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"ud" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"ue" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/mob/living/simple_animal/hostile/skeleton, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ug" = ( +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"uh" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"ui" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/plating, +/area/awaymission/caves/build) +"uj" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/structure/curtain/black, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/carpet/purple, +/area/awaymission/caves/build/reqpower_build) +"uk" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"un" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plasteel/stairs/right, +/area/awaymission/caves/build/reqpower_build) +"uo" = ( +/obj/effect/decal/cleanable/ants, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"up" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ur" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 2; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"uu" = ( +/obj/structure/flora/rock/pile, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"uv" = ( +/obj/effect/decal/cleanable/glass/plasma, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"ux" = ( +/obj/structure/flora/rock/pile, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"uy" = ( +/obj/item/cultivator/rake, +/obj/item/shovel, +/obj/structure/rack, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"uB" = ( +/obj/structure/flora/ash/rock/style_random, +/turf/simulated/mineral/volcanic/lava_land_surface, +/area/awaymission/caves) +"uG" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"uI" = ( +/obj/structure/chair/sofa/corp{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"uJ" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"uL" = ( +/obj/structure{ + icon = 'icons/obj/machines/telecomms.dmi'; + icon_state = "hub_off"; + name = "messaging server"; + desc = "A machine that processes and routes PDA and request console messages."; + density = 1; + anchored = 1 + }, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/greengrid{ + icon_state = "bcircuit" + }, +/area/awaymission/caves/build/reqpower_build) +"uO" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"uP" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"uR" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/landmark/burnturf, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"uS" = ( +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"uU" = ( +/obj/effect/landmark/awaystart, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/caves/build) +"uW" = ( +/mob/living/simple_animal/hostile/asteroid/basilisk{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"uX" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 2; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"uY" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/solgov_logo{ + icon_state = "sol_logo14" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"va" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"vb" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"vc" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"vg" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"vh" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/structure/curtain/black, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/carpet/purple, +/area/awaymission/caves/build/reqpower_build) +"vi" = ( +/obj/structure/closet/crate/miningcar, +/obj/item/stack/ore/silver{ + amount = 30 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"vj" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"vl" = ( +/obj/machinery/fishtank/wall, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"vo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"vr" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"vx" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"vy" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 2; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"vC" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"vE" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/awaymission/caves/build/reqpower_build) +"vG" = ( +/obj/item/reagent_containers/glass/bucket/wooden, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"vI" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"vJ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"vK" = ( +/obj/structure{ + icon = 'icons/obj/turrets.dmi'; + icon_state = "destroyed_target_prism" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"vL" = ( +/obj/structure/table_frame, +/obj/item/healthanalyzer, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "small"; + pixel_x = 10 + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"vQ" = ( +/obj/structure/closet/crate/can, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"vS" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 2 + }, +/obj/structure/flora/rock, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"vV" = ( +/obj/machinery/constructable_frame/machine_frame{ + icon_state = "box_1" + }, +/obj/item/stock_parts/capacitor, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/greengrid{ + icon_state = "bcircuit" + }, +/area/awaymission/caves/build/reqpower_build) +"vW" = ( +/obj/structure{ + icon = 'icons/obj/stationobjs.dmi'; + icon_state = "controller-o"; + name = "blackbox recorder"; + density = 1; + anchored = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/greengrid{ + icon_state = "bcircuit" + }, +/area/awaymission/caves/build/reqpower_build) +"vX" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"vY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/item/kirbyplants, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 10 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"vZ" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"wd" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"we" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"wh" = ( +/obj/machinery/suit_storage_unit/lavaland{ + req_access = list(271); + storage_type = null; + locked = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"wi" = ( +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"wo" = ( +/obj/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/item/assembly/igniter, +/obj/item/stock_parts/capacitor, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"wr" = ( +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"ws" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"wu" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"ww" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/obj/structure/curtain/black, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"wx" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 6 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"wy" = ( +/obj/structure/flora/rock, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"wB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + pixel_x = 6; + pixel_y = 8; + id = "cave4_blast" + }, +/obj/machinery/door_control/shutter{ + pixel_x = 6; + pixel_y = -3; + id = "cave4_blast2" + }, +/obj/item/radio{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"wC" = ( +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"wD" = ( +/obj/structure/closet/crate, +/obj/item/borg/upgrade/modkit/cooldown, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"wE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"wG" = ( +/obj/effect/bump_teleporter{ + id = "3cave_down"; + id_target = "4cave_up" + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"wH" = ( +/obj/structure/sink/directional/east, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"wL" = ( +/obj/structure{ + icon = 'icons/obj/turrets.dmi'; + icon_state = "destroyed_target_prism" + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"wN" = ( +/obj/structure{ + icon_state = "pod_broken2"; + icon = 'modular_ss220/maps220/icons/misc_objects.dmi'; + desc = "The remains of the cloning pod. Something broke it from the inside."; + name = "broken pod"; + density = 1 + }, +/obj/effect/decal/cleanable/glass, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"wO" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet, +/obj/item/clothing/under/rank/medical/scrubs, +/obj/item/clothing/mask/surgical, +/obj/item/gun/syringe/rapidsyringe, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"wQ" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"wT" = ( +/obj/item/gun/projectile/automatic/pistol/deagle/gold, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"wV" = ( +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "elevatorshaft" + }, +/area/awaymission/caves/build/reqpower_build) +"wZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"xd" = ( +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"xf" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall/indestructible/riveted, +/area/awaymission/caves/build/reqpower_build) +"xg" = ( +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"xh" = ( +/obj/structure/closet/crate, +/obj/item/mecha_parts/mecha_equipment/drill, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"xi" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build/reqpower_build) +"xk" = ( +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/structure/closet/crate/secure/plasma, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"xq" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"xy" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"xz" = ( +/obj/item/tank/internals/emergency_oxygen/empty, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"xC" = ( +/obj/structure{ + icon_state = "pod_broken2"; + icon = 'modular_ss220/maps220/icons/misc_objects.dmi'; + desc = "The remains of the cloning pod. Something broke it from the inside."; + name = "broken pod"; + density = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"xE" = ( +/obj/effect/decal/cleanable/glass/plasma, +/turf/simulated/floor/engine, +/area/awaymission/caves/build/reqpower_build) +"xH" = ( +/obj/structure/spawner/skeleton{ + max_mobs = 5 + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"xJ" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/closet/crate/freezer/iv_storage, +/obj/item/reagent_containers/iv_bag/blood/vox, +/obj/item/reagent_containers/iv_bag/salglu, +/obj/item/reagent_containers/iv_bag/salglu, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/reagent_containers/iv_bag/blood/OMinus, +/obj/item/reagent_containers/iv_bag/blood/OPlus, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"xQ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"xS" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"xV" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular/empty{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"yb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/barricade/wooden, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"ye" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 1 + }, +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"yf" = ( +/obj/structure/rack, +/obj/item/shield/mirror, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"yh" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/awaymission/caves/build) +"yo" = ( +/obj/structure/flora/rock/pile, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"yp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"yq" = ( +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken6" + }, +/area/awaymission/caves) +"yt" = ( +/obj/structure/spider/stickyweb, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"yw" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"yz" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"yD" = ( +/obj/item/storage/box/gloves, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"yF" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"yG" = ( +/obj/machinery/flasher{ + pixel_y = 32; + id = "cave4_flash" + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"yH" = ( +/obj/structure/fluff/divine/conduit{ + icon_state = "sacrificealtar-red" + }, +/obj/effect/decal/cleanable/cobweb, +/obj/item/soulstone, +/obj/item/coin/plasma{ + pixel_y = -3; + pixel_x = 8 + }, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken5" + }, +/area/awaymission/caves) +"yJ" = ( +/obj/structure/extinguisher_cabinet/empty{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/shreds, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"yK" = ( +/obj/structure/railing, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"yN" = ( +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"yO" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"yP" = ( +/obj/effect/bump_teleporter{ + id_target = "2cavedown"; + id = "3caveup" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"yR" = ( +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"yS" = ( +/turf/simulated/wall/indestructible/rock/mineral{ + icon = 'icons/effects/effects.dmi'; + icon_state = "1"; + name = "pitch black darkness"; + desc = "Go to the deep"; + mouse_opacity = 0 + }, +/area/awaymission/caves) +"yU" = ( +/obj/structure/railing, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"yW" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"yY" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/awaymission/caves/build/reqpower_build) +"za" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/stack/sheet/metal, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"zc" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredcornersalt"; + dir = 4 + }, +/area/awaymission/caves/build/reqpower_build) +"zf" = ( +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"zg" = ( +/obj/structure/dresser, +/obj/item/flashlight/lantern{ + pixel_y = 18 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken" + }, +/area/awaymission/caves) +"zk" = ( +/obj/machinery/power/apc/off_station/empty_charge{ + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"zl" = ( +/obj/item/organ/external/arm, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken6" + }, +/area/awaymission/caves) +"zm" = ( +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"zp" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"zq" = ( +/obj/structure/bookcase/random, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"zs" = ( +/obj/structure/rack, +/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/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"zw" = ( +/obj/item/fluff/zekemirror{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/candle/eternal/wizard{ + lit = 1; + flickering = 1; + icon_state = "candle1_flicker" + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken4" + }, +/area/awaymission/caves) +"zx" = ( +/obj/structure/table, +/obj/item/trash/tray, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/awaymission/caves/build/reqpower_build) +"zy" = ( +/obj/item/clothing/under/syndicate/sniper, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"zA" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"zD" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 2 + }, +/obj/structure/flora/rock, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"zF" = ( +/obj/machinery/door/airlock/survival_pod, +/obj/machinery/door/firedoor/closed, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"zG" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/awaymission/caves/build/reqpower_build) +"zJ" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"zO" = ( +/obj/structure/stone_tile/slab, +/mob/living/simple_animal/hostile/skeleton, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"zT" = ( +/obj/structure/spider/stickyweb, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"zU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plasteel, +/area/awaymission/caves/build) +"zW" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "pristine_surrounding_tile2" + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"zY" = ( +/obj/structure/closet/radiation{ + opened = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"zZ" = ( +/obj/machinery/door/poddoor{ + id_tag = "cave_elevator" + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Ag" = ( +/obj/item/circular_saw, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"An" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Ap" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Aq" = ( +/obj/structure/flora/ash/rock/style_random, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Ar" = ( +/obj/machinery/light_construct/small/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"At" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Au" = ( +/obj/structure/closet, +/obj/item/stack/spacecash/c100, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"Ay" = ( +/obj/effect/bump_teleporter{ + id = "5cave_up"; + id_target = "4cave_down" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Az" = ( +/obj/machinery/igniter, +/turf/simulated/floor/engine, +/area/awaymission/caves/build/reqpower_build) +"AD" = ( +/obj/item/clothing/gloves/ring/immortality_ring, +/obj/structure/cult/altar, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"AE" = ( +/obj/effect/spawner/random_spawners/blood_often, +/mob/living/simple_animal/hostile/clown/mutant, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"AG" = ( +/obj/machinery/door/airlock/survival_pod, +/obj/machinery/door/firedoor/closed, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"AI" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude{ + layer = 3.01 + }, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"AK" = ( +/obj/structure/table_frame, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + pixel_x = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"AL" = ( +/obj/structure/bed{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"AM" = ( +/obj/structure{ + icon = 'icons/obj/pipes/disposal.dmi'; + icon_state = "pipe-s"; + name = "pipe"; + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"AO" = ( +/obj/structure/flora/rock/pile, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"AP" = ( +/obj/effect/decal/cleanable/glass, +/obj/structure/spider/cocoon, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"AQ" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel/stairs/left, +/area/awaymission/caves/build/reqpower_build) +"AR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/caves/build) +"AV" = ( +/obj/structure/mineral_door/wood, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"AW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/machinery/light_construct/small/north, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"AX" = ( +/obj/structure/table_frame, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"AZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Ba" = ( +/obj/structure/mineral_door/iron, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Bc" = ( +/obj/structure/flora/rock, +/obj/item/stack/sheet/metal, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Bd" = ( +/obj/structure/closet, +/obj/item/clothing/suit/armor/vest/old, +/obj/item/clothing/suit/armor/vest/old, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/awaymission/caves/build/reqpower_build) +"Bg" = ( +/obj/machinery/shield{ + icon_state = "shield-cult"; + max_integrity = 150; + name = "Invoker's Shield" + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "necro2" + }, +/area/awaymission/caves) +"Bk" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Bl" = ( +/obj/structure/closet/crate/grave{ + opened = 1; + anchored = 1 + }, +/obj/item/stack/sheet/bone, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Bn" = ( +/obj/structure/closet/crate/can, +/obj/item/soulstone/anybody/purified, +/obj/item/storage/bible, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken4" + }, +/area/awaymission/caves) +"Bo" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Bq" = ( +/obj/machinery/computer{ + icon_state = "guest"; + density = 0; + pixel_x = -32; + icon_keyboard = null; + icon_screen = "guest_broken" + }, +/obj/structure/flora/rock/pile, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Bs" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_tile11" + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center3" + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Bu" = ( +/obj/structure/flora/rock, +/turf/simulated/mineral/volcanic/lava_land_surface, +/area/awaymission/caves) +"Bw" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/obj/structure/flora/rock/pile, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"By" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/solgov_logo{ + icon_state = "sol_logo12" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Bz" = ( +/obj/structure/statue{ + icon_state = "angel"; + desc = "An incredibly lifelike marble carving. Its eyes seems to follow you.."; + anchored = 1 + }, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"BC" = ( +/obj/item/chair/wood{ + dir = 4 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"BE" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort2" + }, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"BF" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 4 + }, +/obj/machinery/flasher_button{ + pixel_y = -32; + id = "cave4_flash" + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 2; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"BG" = ( +/obj/structure/sign/securearea{ + pixel_x = 30 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"BH" = ( +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/awaymission/caves) +"BK" = ( +/obj/item/stack/rods, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"BL" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort2" + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"BM" = ( +/obj/structure/door_assembly/door_assembly_pod{ + anchored = 1 + }, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/item/airlock_electronics, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"BU" = ( +/obj/structure/flora/rock, +/mob/living/simple_animal/hostile/asteroid/basilisk{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"BW" = ( +/obj/machinery/door/airlock/survival_pod, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"BY" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Ca" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Cb" = ( +/obj/structure/spider/cocoon, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Cd" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Ce" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Cf" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/structure/flora/rock, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Cg" = ( +/obj/machinery/flasher{ + pixel_y = 32; + id = "cave4_flash" + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Ci" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light_construct/small/north, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Ck" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/damageturf, +/obj/item/stack/rods, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Cl" = ( +/obj/item/clothing/mask/gas/clown_hat/pennywise{ + pixel_y = -5; + pixel_x = -10 + }, +/obj/item/candle/eternal/wizard{ + pixel_y = 7; + pixel_x = -18; + lit = 1; + flickering = 1; + icon_state = "candle1_flicker" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"Cn" = ( +/turf/simulated/wall, +/area/awaymission/caves/build/reqpower_build) +"Cs" = ( +/obj/machinery/shield{ + icon_state = "shield-cult"; + max_integrity = 150; + name = "Invoker's Shield" + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Cv" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 10 + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Cx" = ( +/obj/structure/sign/greencross{ + pixel_y = 30 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Cz" = ( +/obj/structure/extinguisher_cabinet{ + name = "north extinguisher cabinet"; + pixel_y = 30 + }, +/obj/structure/chair/comfy, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"CA" = ( +/obj/machinery/door/airlock/survival_pod, +/obj/effect/mapping_helpers/machinery/damaged, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"CB" = ( +/obj/structure/door_assembly/door_assembly_pod{ + anchored = 1 + }, +/obj/item/airlock_electronics, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"CE" = ( +/obj/machinery/constructable_frame/machine_frame{ + icon_state = "box_1" + }, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/item/stock_parts/capacitor, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"CH" = ( +/obj/item/stack/rods, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"CJ" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 10 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"CL" = ( +/obj/structure/ore_box, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"CM" = ( +/obj/structure/door_assembly/door_assembly_min{ + anchored = 1 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"CN" = ( +/obj/structure/closet, +/obj/item/clothing/mask/breath, +/obj/item/gun/energy/kinetic_accelerator, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken7" + }, +/area/awaymission/caves) +"CO" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"CP" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + on = 0 + }, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken" + }, +/area/awaymission/caves) +"CQ" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken7" + }, +/area/awaymission/caves) +"CU" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light/small/directional/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"CW" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken6" + }, +/area/awaymission/caves) +"CZ" = ( +/obj/item/kinetic_crusher, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Dc" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_tile10" + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Dj" = ( +/obj/structure/barricade/wooden, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"Do" = ( +/obj/effect/decal/cleanable/glass/plasma, +/obj/item/shard/plasma{ + icon_state = "plasmamedium" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Dt" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Du" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Dv" = ( +/obj/structure/stone_tile/slab, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Dw" = ( +/obj/structure{ + icon_state = "holopad_open"; + icon = 'icons/obj/stationobjs.dmi'; + desc = "Holopad for long-distance communication."; + name = "holopad" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Dx" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"DH" = ( +/obj/structure/cult/pylon, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"DL" = ( +/obj/structure/mineral_door/iron, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"DM" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"DR" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding1"; + dir = 4 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"DT" = ( +/obj/structure/table/glass, +/obj/item/cautery, +/obj/item/clothing/mask/surgical, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"DW" = ( +/obj/machinery/door/airlock/command{ + locked = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"DZ" = ( +/obj/machinery/light_construct/small/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"Ea" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Ed" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 1 + }, +/obj/machinery/light_construct/small/north, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/railing/cap{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Ef" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Eh" = ( +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"Ei" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Ej" = ( +/obj/effect/turf_decal/caution{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"Ek" = ( +/obj/structure/fluff/divine/conduit{ + icon_state = "conduit-red" + }, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"En" = ( +/turf/simulated/wall/indestructible/wood, +/area/awaymission/caves) +"Ep" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_tile10" + }, +/obj/structure/flora/rock, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Eq" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker{ + pixel_y = 10 + }, +/obj/item/reagent_containers/syringe/sarin, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Es" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_tile12" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Eu" = ( +/obj/item/flash, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Ew" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Ey" = ( +/obj/structure{ + icon = 'icons/obj/pipes/disposal.dmi'; + icon_state = "pipe-s"; + name = "pipe"; + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Ez" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/caves) +"EB" = ( +/obj/structure/closet/crate/can, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"ED" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"EG" = ( +/obj/structure/bookcase/random, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"EI" = ( +/obj/structure/girder, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"EJ" = ( +/mob/living/simple_animal/hostile/abomination/altform4, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/solgov_logo{ + icon_state = "sol_logo6" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"EM" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "necro2" + }, +/area/awaymission/caves) +"EN" = ( +/obj/machinery/hydroponics/soil, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"ER" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/item/healthanalyzer{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"ES" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"ET" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"EV" = ( +/obj/effect/landmark/burnturf, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"EW" = ( +/obj/item/storage/firstaid/o2, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"EY" = ( +/obj/structure/flora/rock, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"EZ" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Fe" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Fi" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/diamond{ + amount = 15 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"Fk" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center3" + }, +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Fl" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/stack/sheet/mineral/adamantine{ + amount = 5 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Fn" = ( +/obj/effect/landmark/awaystart, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "elevatorshaft" + }, +/area/awaymission/caves) +"Fo" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/clipboard{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/pen, +/obj/effect/turf_decal{ + dir = 10 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Fp" = ( +/obj/machinery/door/airlock/bathroom, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Fr" = ( +/obj/effect/landmark/burnturf, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"Fx" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/ore_box, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"Fz" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/siding/wood, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"FA" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"FE" = ( +/obj/structure/closet/walllocker/emerglocker/east, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"FF" = ( +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"FG" = ( +/obj/machinery/constructable_frame/machine_frame{ + icon_state = "box_2" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"FJ" = ( +/obj/structure/closet/secure_closet{ + req_access = list(271) + }, +/obj/item/extinguisher/mini, +/obj/item/pickaxe/mini, +/obj/item/kitchen/knife/combat/survival, +/obj/item/storage/backpack/satchel/explorer, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"FK" = ( +/obj/structure/sink/directional/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"FL" = ( +/obj/structure{ + icon_state = "pod_broken3"; + icon = 'modular_ss220/maps220/icons/misc_objects.dmi'; + desc = "Holopad for long-distance communication."; + name = "broken pod"; + density = 1 + }, +/obj/structure/windoor_assembly, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"FO" = ( +/obj/structure/closet/critter, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"FP" = ( +/obj/structure/mecha_wreckage/ripley, +/obj/machinery/light_construct/small/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"FR" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"FY" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"FZ" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Gc" = ( +/obj/item/restraints/handcuffs/cable/zipties/used, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Ge" = ( +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Gg" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Gh" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/stack/sheet/runed_metal{ + amount = 5 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Gi" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/flora/rock/pile, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Gj" = ( +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"Gk" = ( +/obj/machinery/computer{ + icon_state = "guest"; + pixel_y = -32; + density = 0; + icon_screen = "guest_broken"; + icon_keyboard = null + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 2; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Gn" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/structure/spider/stickyweb, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"Go" = ( +/obj/structure/table, +/obj/item/mod/module/hydraulic, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"Gq" = ( +/obj/machinery/door/airlock/medical/glass, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Gw" = ( +/obj/structure/cult/pylon, +/obj/effect/decal/cleanable/dust, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding1"; + dir = 1 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"GA" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"GB" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"GC" = ( +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"GD" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/glass, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"GF" = ( +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"GG" = ( +/obj/item/stack/rods, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"GH" = ( +/obj/machinery/iv_drip{ + pixel_y = -14 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"GJ" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 5 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"GN" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/carpet/green, +/area/awaymission/caves/build/reqpower_build) +"GR" = ( +/obj/structure/closet/crate/wooden/wooden_crate, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"GU" = ( +/obj/structure{ + icon = 'icons/obj/pipes/disposal.dmi'; + icon_state = "pipe-c"; + name = "pipe"; + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"GV" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Ha" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Hc" = ( +/obj/structure/table_frame, +/obj/item/storage/firstaid/fire, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"Hd" = ( +/obj/machinery/shower{ + pixel_y = 20 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"He" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/mob_spawn/human/corpse/damaged, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Hf" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_2"; + dir = 4 + }, +/obj/machinery/light_construct/small/west, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Hg" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_2"; + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Hh" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center3" + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Hi" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Hj" = ( +/obj/effect/decal/remains/robot, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"Hl" = ( +/obj/machinery/light_construct/small/north, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"Hm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Hn" = ( +/obj/machinery/computer{ + icon_state = "guest"; + density = 0; + pixel_x = -32; + icon_screen = "guest_broken"; + icon_keyboard = null + }, +/obj/structure/flora/rock, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Hr" = ( +/obj/structure/table, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/brute{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"Hw" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 9 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"HA" = ( +/obj/structure/girder/reinforced, +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"HC" = ( +/obj/structure/sign/biohazard{ + pixel_y = -30 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"HD" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"HF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/caves/build) +"HG" = ( +/turf/simulated/wall/indestructible/necropolis, +/area/awaymission/caves) +"HH" = ( +/obj/structure/closet/crate/wooden/wooden_crate, +/obj/structure/stone_tile/slab, +/obj/item/toy/character/lich, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"HI" = ( +/obj/item/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"HJ" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"HL" = ( +/obj/structure/closet/l3closet/general, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/awaymission/caves/build/reqpower_build) +"HM" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"HQ" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"HR" = ( +/obj/machinery/gateway, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"HU" = ( +/obj/structure/railing/cap{ + dir = 8 + }, +/obj/item/storage/belt/medical/surgery, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 2; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"HV" = ( +/obj/effect/turf_decal/caution, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"HW" = ( +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"HX" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding1"; + dir = 8 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"HY" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"HZ" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Ic" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"If" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken7" + }, +/area/awaymission/caves) +"Ih" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken5" + }, +/area/awaymission/caves) +"Ii" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Ik" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"In" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Ip" = ( +/obj/structure/bookcase, +/obj/item/spellbook/oneuse/summonitem, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"Is" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/constructable_frame/machine_frame{ + icon_state = "box_1" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"It" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/brown{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"Ix" = ( +/obj/structure/closet/critter/fox, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"ID" = ( +/obj/structure/cult/altar, +/obj/item/clothing/gloves/ring/plasma, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"IF" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"II" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/item/bedsheet/wiz{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken6" + }, +/area/awaymission/caves) +"IK" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"IL" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + pixel_x = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"IM" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"IP" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"IS" = ( +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + pixel_x = 9 + }, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"IX" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_block4" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"IY" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/effect/mapping_helpers/damaged_window, +/obj/machinery/door/poddoor/preopen{ + id_tag = "cave4_blast2" + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Ja" = ( +/obj/structure{ + icon_state = "smes"; + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit"; + icon = 'icons/obj/power.dmi'; + density = 1 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"Jd" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"Je" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Jf" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredcornersalt"; + dir = 1 + }, +/area/awaymission/caves/build/reqpower_build) +"Jg" = ( +/obj/structure{ + icon_state = "smes"; + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit"; + icon = 'icons/obj/power.dmi'; + density = 1 + }, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Jh" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/stack/sheet/mineral/bananium{ + amount = 5 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Jj" = ( +/obj/structure/chair/sofa/corp/left, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Jl" = ( +/obj/machinery/door/airlock/survival_pod, +/obj/machinery/door/firedoor/closed, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Jn" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Jt" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -5; + pixel_y = -8 + }, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Ju" = ( +/mob/living/simple_animal/hostile/skeleton, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Jv" = ( +/obj/structure/chair/sofa/corp/right, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Jy" = ( +/obj/structure/spider/stickyweb, +/obj/machinery/optable, +/obj/machinery/light_construct/small/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"Jz" = ( +/obj/effect/turf_decal/box, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"JA" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 2 + }, +/obj/structure/flora/rock/pile, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"JC" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/structure/sign/explosives/alt{ + pixel_y = 30 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/caves/build) +"JD" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"JJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"JN" = ( +/obj/machinery/door/poddoor{ + id_tag = "cave4_solgovdoor" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"JO" = ( +/obj/structure{ + icon_state = "pod_broken3"; + icon = 'modular_ss220/maps220/icons/misc_objects.dmi'; + desc = "Holopad for long-distance communication."; + name = "broken pod"; + density = 1 + }, +/obj/structure/windoor_assembly, +/obj/effect/decal/cleanable/glass, +/obj/structure/curtain/medical, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"JS" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 6 + }, +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"JU" = ( +/obj/structure/railing/cap{ + dir = 6 + }, +/obj/structure/railing/cap{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 2; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"JW" = ( +/obj/machinery/computer{ + icon_state = "guest"; + icon_screen = "guest_lightmask"; + icon_keyboard = null; + pixel_y = 32; + density = 0 + }, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"JY" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Ka" = ( +/obj/effect/decal/cleanable/shreds, +/obj/machinery/light_construct/small/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken" + }, +/area/awaymission/caves) +"Kc" = ( +/obj/machinery/shield{ + icon_state = "shield-cult"; + max_integrity = 150; + name = "Invoker's Shield" + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Kd" = ( +/mob/living/simple_animal/hostile/abomination/altform2{ + desc = "Скуластое, громоздкое чудовище. Еще один неудачный эксперимент. Что именно они пытались создать?" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Ke" = ( +/obj/item/reagent_scanner, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Kh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/railing, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Ki" = ( +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Kl" = ( +/obj/machinery/power/port_gen/pacman, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"Km" = ( +/obj/effect/turf_decal{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"Kp" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Ks" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Ku" = ( +/obj/structure/table, +/obj/random/toolbox, +/obj/random/tool, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Kw" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/barricade/wooden/crude{ + layer = 3.01 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"Ky" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 9 + }, +/obj/structure/closet/cabinet, +/obj/item/clothing/under/solgov/command, +/obj/item/clothing/head/soft/solgov/marines/command, +/obj/item/gun/projectile/automatic/pistol/m1911, +/obj/item/clothing/shoes/jackboots, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c1000, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Kz" = ( +/obj/structure/table, +/obj/random/toolbox, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"KB" = ( +/obj/item/stack/rods, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"KC" = ( +/obj/structure/flora/rock/pile, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"KF" = ( +/obj/machinery/door/airlock/medical, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"KJ" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center4" + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"KL" = ( +/obj/structure/table_frame/wood, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"KN" = ( +/obj/structure/flora/rock, +/obj/structure/stone_tile/slab/cracked{ + dir = 5 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"KO" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_2"; + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"KP" = ( +/mob/living/simple_animal/hostile/poison/giant_spider{ + wander = 0 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"KQ" = ( +/obj/effect/mob_spawn/human/corpse/damaged, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"KR" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"KT" = ( +/obj/effect/rune/narsie{ + used = 1 + }, +/obj/effect/decal/cleanable/molten_object/large, +/obj/item/organ/internal/eyes, +/obj/item/clothing/suit/wizrobe/marisa/fake, +/obj/item/clothing/head/witchwig, +/obj/item/clothing/gloves/ring/gold, +/obj/effect/gibspawner/human, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"KX" = ( +/obj/machinery/door/airlock/survival_pod, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"KY" = ( +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"KZ" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/obj/structure/sign/electricshock{ + pixel_y = -30 + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build) +"Ld" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stack/rods, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Lf" = ( +/obj/structure/closet/crate/wooden/wooden_crate, +/obj/item/clothing/suit/hooded/fluff/bone, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Lh" = ( +/obj/structure/flora/rock/pile, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Lj" = ( +/obj/structure/cult/altar, +/obj/item/stack/sheet/runed_metal{ + amount = 10 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Ll" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"Lm" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding_tile1" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Ln" = ( +/obj/structure/flora/rock/pile, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Lq" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/fence/cut/large{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"Lr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Ls" = ( +/obj/structure/sign/securearea{ + pixel_x = -30 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Lt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Lv" = ( +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Lz" = ( +/obj/machinery/light_construct/small/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken4" + }, +/area/awaymission/caves) +"LB" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"LH" = ( +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"LI" = ( +/obj/item/tank/internals/emergency_oxygen, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"LJ" = ( +/obj/structure/table, +/obj/item/gun/projectile/revolver/russian, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"LM" = ( +/obj/machinery/computer{ + icon_state = "tcstation"; + icon_screen = "tcstation_broken"; + icon_keyboard = null + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"LO" = ( +/obj/machinery/gateway/centeraway{ + calibrated = 0; + requires_power = 0 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"LP" = ( +/obj/structure/railing, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"LR" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"LU" = ( +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/caves) +"LV" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"Md" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/mob/living/simple_animal/hostile/abomination/super, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Me" = ( +/obj/item/toy/crayon/red, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"Mh" = ( +/obj/item/screwdriver, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Mi" = ( +/obj/structure/flora/rock, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Mo" = ( +/obj/structure/railing/cap{ + dir = 9 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding, +/obj/effect/spawner/random_spawners/blood_often, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Mp" = ( +/obj/structure/bookcase/random, +/turf/simulated/floor/carpet/green, +/area/awaymission/caves/build/reqpower_build) +"Mq" = ( +/obj/effect/landmark/damageturf, +/obj/item/stack/rods, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Mu" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/awaymission/caves/build/reqpower_build) +"MA" = ( +/obj/structure/spider/cocoon, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"MC" = ( +/obj/machinery/iv_drip{ + pixel_x = 7 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"MF" = ( +/obj/structure{ + icon = 'icons/obj/turrets.dmi'; + icon_state = "destroyed_target_prism" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"MH" = ( +/obj/machinery/door/poddoor/shutters{ + id_tag = "cave_shutters" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"MU" = ( +/obj/structure/fluff/divine/conduit{ + icon_state = "trap-fire"; + density = 0 + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"MV" = ( +/obj/item/stack/sheet/metal, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"MX" = ( +/obj/item/flashlight{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"MY" = ( +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"Nh" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_5"; + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Nj" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light_construct/small/west, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"Nm" = ( +/obj/machinery/door/airlock/survival_pod, +/obj/effect/mapping_helpers/machinery/destroyed, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Nn" = ( +/obj/structure/table, +/obj/item/ashtray/bronze, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Np" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"Nq" = ( +/obj/machinery/door/airlock/survival_pod, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"Nt" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_block1" + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Nx" = ( +/obj/machinery/light_construct/small/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"NA" = ( +/obj/structure/chair/comfy/black, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"NE" = ( +/obj/structure/cult/pylon, +/obj/effect/decal/cleanable/dust, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center4" + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"NF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/stack/rods, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"NI" = ( +/obj/structure/closet/crate/grave/gravelead{ + opened = 1; + anchored = 1 + }, +/obj/item/stack/sheet/bone, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"NJ" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"NK" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"NL" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 5 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/solgov_logo{ + icon_state = "sol_logo24" + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"NN" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"NP" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/gold{ + amount = 10 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"NR" = ( +/obj/structure/closet/body_bag, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"NS" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"NU" = ( +/obj/effect/landmark/burnturf, +/obj/machinery/light_construct/small/north, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"NX" = ( +/obj/structure/closet/crate/wooden/wooden_crate, +/obj/item/seeds/berry/poison, +/obj/item/seeds/nettle/death, +/obj/item/seeds/cannabis/death, +/obj/item/seeds/berry/death, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"NY" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"Oc" = ( +/obj/machinery/computer{ + icon_state = "entertainment_console"; + pixel_x = -32; + icon_keyboard = null; + density = 0 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/mob/living/simple_animal/mouse, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"Og" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/awaymission/caves) +"Oi" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Ok" = ( +/obj/structure/spider/cocoon, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"Ol" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/caves/build/reqpower_build) +"Om" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"On" = ( +/obj/item/borg/upgrade/modkit/range, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Oo" = ( +/obj/machinery/door/airlock/survival_pod, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Or" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/awaymission/caves) +"Os" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"Ot" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall/indestructible, +/area/awaymission/caves/build) +"Ow" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken3" + }, +/area/awaymission/caves) +"Ox" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build/reqpower_build) +"OA" = ( +/obj/machinery/atmospherics/unary/tank/air, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"OF" = ( +/obj/effect/bump_teleporter{ + id = "2cavedown"; + id_target = "3caveup" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"OK" = ( +/obj/machinery/shield{ + icon_state = "shield-cult"; + max_integrity = 150; + name = "Invoker's Shield" + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"OL" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "cave4_blast2" + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"OM" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"ON" = ( +/obj/structure/table_frame, +/obj/item/reagent_containers/iv_bag/blood/vox, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "medium"; + pixel_y = 9 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"OR" = ( +/obj/machinery/door/airlock/survival_pod, +/obj/effect/mapping_helpers/airlock/welded, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"OS" = ( +/obj/effect/decal/cleanable/shreds, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"OV" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"OZ" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"Pb" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Pd" = ( +/obj/structure{ + icon_state = "pod_broken3"; + icon = 'modular_ss220/maps220/icons/misc_objects.dmi'; + desc = "Holopad for long-distance communication."; + name = "broken pod"; + density = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Pe" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"Pf" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/locked, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Ph" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Pj" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "elevatorshaft" + }, +/area/awaymission/caves) +"Pl" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Pn" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/item/shard{ + pixel_x = 9 + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Po" = ( +/obj/structure/table, +/obj/random/toolbox, +/obj/random/toolbox{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"Pp" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Pq" = ( +/obj/structure/closet/walllocker/medlocker/south, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Pv" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredcornersalt"; + dir = 8 + }, +/area/awaymission/caves/build/reqpower_build) +"Pw" = ( +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Py" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/solgov_logo{ + icon_state = "sol_logo13" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Pz" = ( +/obj/structure/spider/cocoon, +/turf/simulated/mineral/volcanic/lava_land_surface, +/area/awaymission/caves) +"PA" = ( +/obj/machinery/computer{ + dir = 4; + icon_state = "broken"; + icon_screen = "broken"; + icon_keyboard = "generic_key_broken" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"PB" = ( +/mob/living/simple_animal/hostile/abomination/altform3{ + desc = "Скуластое, громоздкое чудовище. Еще один неудачный эксперимент. Что именно они пытались создать?" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"PE" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center4" + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"PF" = ( +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"PG" = ( +/obj/item/clothing/mask/breath, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"PJ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"PO" = ( +/obj/structure/table_frame, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + pixel_x = 9 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"PP" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center3" + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"PQ" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 6 + }, +/obj/item/kirbyplants, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"PR" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/closet/crate/miningcar, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"PT" = ( +/obj/effect/gibspawner/human, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"PY" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"PZ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"Qc" = ( +/obj/machinery/computer{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Qg" = ( +/obj/item/shard/plasma{ + icon_state = "plasmasmall" + }, +/obj/effect/decal/cleanable/glass/plasma, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Qm" = ( +/obj/structure/table_frame, +/obj/random/tool, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/awaymission/caves/build/reqpower_build) +"Qn" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Qo" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken4" + }, +/area/awaymission/caves) +"Qp" = ( +/obj/machinery/atmospherics/portable/canister, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Qr" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/stack/sheet/plasteel{ + amount = 5 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Qs" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel, +/area/awaymission/caves/build) +"Qu" = ( +/obj/effect/landmark/damageturf, +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Qy" = ( +/obj/structure/rack, +/obj/item/melee/cultblade, +/obj/item/whetstone/cult, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"QE" = ( +/obj/item/flashlight/flare, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"QF" = ( +/obj/structure/dresser, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/carpet/purple, +/area/awaymission/caves/build/reqpower_build) +"QN" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_tile9" + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"QO" = ( +/obj/structure{ + icon_state = "pod_broken"; + icon = 'modular_ss220/maps220/icons/misc_objects.dmi'; + desc = "The remains of the cloning pod. Something broke it from the inside."; + name = "broken pod"; + density = 1 + }, +/obj/structure/windoor_assembly{ + dir = 2 + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"QS" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"QX" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center3" + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_tile10" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Ra" = ( +/obj/structure/railing/cap{ + dir = 8 + }, +/obj/item/shard, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 2; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"Rf" = ( +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Rg" = ( +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Ri" = ( +/turf/simulated/floor/engine, +/area/awaymission/caves/build/reqpower_build) +"Rk" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Rn" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Ro" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Rp" = ( +/obj/item/bedsheet/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"Rq" = ( +/obj/item/chair/wood, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Rv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Rw" = ( +/obj/structure/fence/door{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"Ry" = ( +/obj/structure{ + icon = 'icons/obj/machines/heavy_lathe.dmi'; + icon_state = "h_lathe_maint"; + name = "\improper E.X.P.E.R.I-MENTOR"; + density = 1 + }, +/turf/simulated/floor/engine, +/area/awaymission/caves/build/reqpower_build) +"RB" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/patriot{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/carpet/black, +/area/awaymission/caves/build/reqpower_build) +"RD" = ( +/obj/structure/flora/rock/pile, +/obj/item/stack/rods, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"RE" = ( +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"RG" = ( +/obj/structure/sign/securearea{ + pixel_x = 30 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"RH" = ( +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"RJ" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"RK" = ( +/obj/structure/showcase/horrific_experiment{ + icon_state = "pod_cloning"; + desc = "Some sort of pod filled with... What is this?" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"RM" = ( +/obj/machinery/computer{ + icon_state = "guest"; + icon_screen = "guest_lightmask"; + icon_keyboard = null; + pixel_y = 32; + density = 0 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"RN" = ( +/obj/structure/flora/rock, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"RP" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 9 + }, +/obj/structure/flora/rock/pile, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"RR" = ( +/obj/item/hemostat, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"RU" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"RV" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_block1" + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"RX" = ( +/obj/machinery/hydroponics/soil, +/turf/simulated/floor/plating/asteroid/airless/cave/volcanic{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"RY" = ( +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"Sb" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Se" = ( +/obj/structure/mineral_door/iron, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Sh" = ( +/obj/structure/statue{ + icon_state = "angelseen"; + desc = "An incredibly lifelike marble carving. Its eyes seems to follow you.."; + anchored = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Sk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/landmark/damageturf, +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Sl" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"So" = ( +/obj/structure/closet/crate, +/obj/item/storage/firstaid/regular, +/obj/item/storage/toolbox/emergency, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Sp" = ( +/obj/structure/table, +/obj/item/mod/module/active_sonar, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"Sq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/stack/rods, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Sr" = ( +/mob/living/simple_animal/hostile/hellhound/tear, +/obj/effect/gibspawner/human, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"Su" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Sx" = ( +/obj/item/borg/upgrade/modkit/damage, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"SA" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"SB" = ( +/obj/structure/flora/rock/pile, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"SC" = ( +/obj/machinery/shield{ + icon_state = "shield-cult"; + max_integrity = 150; + name = "Invoker's Shield" + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"SD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall/indestructible, +/area/awaymission/caves/build) +"SH" = ( +/obj/machinery/door/firedoor/closed, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"SI" = ( +/obj/machinery/economy/vending/cigarette/free, +/obj/effect/mapping_helpers/machinery/damaged, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"SM" = ( +/obj/machinery/atmospherics/binary/valve, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"SN" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken2" + }, +/area/awaymission/caves) +"SO" = ( +/obj/item/stack/sheet/metal, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"SR" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"SS" = ( +/obj/structure/flora/rock/pile, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"SU" = ( +/obj/item/stack/sheet/wood{ + amount = 3 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"SV" = ( +/obj/structure/sink/puddle, +/obj/item/reagent_containers/glass/bucket/wooden, +/turf/simulated/floor/plating/asteroid/airless/cave/volcanic{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"SX" = ( +/obj/machinery/power/smes, +/obj/machinery/light_construct/small/east, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"SY" = ( +/obj/structure/table/glass, +/obj/item/surgicaldrill, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"SZ" = ( +/obj/item/clothing/glasses/night, +/obj/structure/closet, +/obj/random/tool, +/turf/simulated/floor/plasteel, +/area/awaymission/caves/build) +"Tc" = ( +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/structure/rack, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Te" = ( +/obj/structure/spider/cocoon, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Tf" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Tg" = ( +/obj/machinery/door/airlock/survival_pod, +/obj/machinery/door/poddoor/preopen{ + id_tag = "cave_base"; + layer = 3.11; + closingLayer = 3.11 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Th" = ( +/obj/effect/decal/cleanable/glass/plasma, +/obj/item/stack/rods, +/obj/effect/landmark/damageturf, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Tk" = ( +/obj/structure/bookcase/random, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"Tl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/decal/remains/xeno, +/turf/simulated/floor/engine, +/area/awaymission/caves/build/reqpower_build) +"Tm" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 5 + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Tp" = ( +/obj/structure/flora/rock/pile, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Tr" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Ts" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/machinery/light_construct/small/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Tu" = ( +/obj/structure/table, +/obj/item/extinguisher/mini, +/obj/item/card/id/away/old{ + name = "Miner's Personal ID" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"Tv" = ( +/obj/item/stock_parts/matter_bin, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Tw" = ( +/obj/structure/table/wood, +/obj/item/seeds/tower, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Ty" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Tz" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"TB" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"TD" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"TF" = ( +/obj/machinery/door_control/shutter/north{ + id = "cave_base"; + pixel_x = -8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"TG" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/effect/decal/cleanable/glass/plasma, +/obj/machinery/door/poddoor/preopen{ + id_tag = "cave4_blast2" + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"TK" = ( +/turf/simulated/mineral/volcanic/lava_land_surface, +/area/awaymission/caves) +"TM" = ( +/obj/item/candle/eternal/wizard{ + pixel_x = -11; + lit = 1; + flickering = 1; + icon_state = "candle1_flicker" + }, +/obj/item/organ/internal/heart{ + pixel_y = -6 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"TN" = ( +/obj/structure/closet/crate/wooden/wooden_crate, +/obj/item/kitchen/knife/ritual, +/obj/item/staff/broom, +/obj/item/clothing/accessory/necklace/locket/fluff/fethasnecklace, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"TQ" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"TU" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 9 + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"TV" = ( +/obj/effect/turf_decal/delivery/white, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"TX" = ( +/obj/structure/railing/cap{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"TZ" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Ud" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"Ug" = ( +/obj/structure/closet{ + opened = 1 + }, +/obj/item/clothing/head/surgery/green, +/obj/item/clothing/suit/apron/surgical, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Uh" = ( +/obj/structure/girder, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"Uj" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/caves/build/reqpower_build) +"Uk" = ( +/obj/structure/rack/skeletal_bar/left, +/obj/item/clothing/suit/hooded/cultrobes, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Um" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Un" = ( +/obj/effect/landmark/burnturf, +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"Uq" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Ur" = ( +/obj/machinery/door/airlock/mining, +/obj/effect/mapping_helpers/airlock/welded, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"Us" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"Ut" = ( +/obj/structure/bed/roller, +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"Uv" = ( +/obj/machinery/computer{ + dir = 2; + icon_state = "broken"; + icon_screen = "broken"; + icon_keyboard = "generic_key_broken" + }, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "small"; + pixel_x = 10; + pixel_y = 9 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Uy" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Uz" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 10 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"UB" = ( +/obj/structure/computerframe{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"UC" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"UE" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_5"; + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"UF" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"UH" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"UI" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"UJ" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"UK" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 5 + }, +/obj/structure/flora/rock, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"UL" = ( +/obj/structure/table, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 4 + }, +/obj/machinery/door_control/shutter{ + pixel_y = -2; + id = "cave4_solgovdoor" + }, +/obj/machinery/button/windowtint{ + pixel_y = 8; + id = "cave4_solgov" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/solgov_logo{ + icon_state = "sol_logo15" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"UM" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"UN" = ( +/obj/structure/statue{ + icon_state = "angelseen"; + desc = "An incredibly lifelike marble carving. Its eyes seems to follow you.."; + anchored = 1 + }, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"UO" = ( +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/decal/cleanable/glass, +/obj/effect/turf_decal/miscellaneous/goldensiding, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/solgov_logo{ + icon_state = "sol_logo4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"UP" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "necro3" + }, +/area/awaymission/caves) +"US" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"UY" = ( +/obj/effect/bump_teleporter{ + id = "4cave_down"; + id_target = "5cave_up" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"UZ" = ( +/obj/machinery/computer{ + dir = 2; + icon_state = "broken"; + icon_screen = "broken"; + icon_keyboard = "generic_key_broken" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/caves/build) +"Va" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"Vb" = ( +/obj/effect/bump_teleporter{ + id = "1cavedown"; + id_target = "2caveup" + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"Vc" = ( +/obj/structure/closet/walllocker/emerglocker/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Vd" = ( +/obj/effect/baseturf_helper/asteroid/basalt, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/caves/build/reqpower_build) +"Vi" = ( +/obj/structure/statue{ + icon_state = "angelseen"; + desc = "An incredibly lifelike marble carving. Its eyes seems to follow you.."; + anchored = 1 + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding1"; + dir = 8 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Vk" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_2"; + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Vm" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Vn" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"Vq" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Vs" = ( +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"Vt" = ( +/obj/effect/gibspawner/human, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Vv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/computerframe, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Vx" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "cave4_solgov" + }, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"VB" = ( +/turf/simulated/wall/indestructible/riveted, +/area/awaymission/caves/build/reqpower_build) +"VC" = ( +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"VD" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"VG" = ( +/obj/item/gun/energy/kinetic_accelerator, +/obj/structure/closet, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"VK" = ( +/obj/effect/landmark/damageturf, +/obj/structure/flora/rock, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"VL" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"VM" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/structure/sign/xeno_warning_mining{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"VP" = ( +/obj/effect/landmark/awaystart, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken6" + }, +/area/awaymission/caves) +"VR" = ( +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"VS" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/mineral_door/iron, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"VT" = ( +/obj/machinery/light_construct/small/south, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves) +"VV" = ( +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"VX" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding_tile2" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"VY" = ( +/obj/effect/turf_decal/caution{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"VZ" = ( +/obj/structure/bookcase/random, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Wb" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Wd" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/glass/beaker{ + pixel_y = 3; + pixel_x = 3; + list_reagents = list("methamphetamine" = 30) + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"We" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/slime{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_containers/syringe/bioterror, +/obj/item/reagent_containers/syringe/heparin{ + pixel_y = 2 + }, +/obj/item/reagent_containers/applicator/burn, +/obj/item/storage/box/monkeycubes/stokcubes, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Wg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall/indestructible, +/area/awaymission/caves/build) +"Wj" = ( +/obj/structure/cult/pylon, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "necro1" + }, +/area/awaymission/caves) +"Wk" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 10 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Wn" = ( +/obj/structure/table, +/obj/item/card/id/away/old{ + name = "Miner's Personal ID"; + pixel_x = -5 + }, +/obj/item/card/id/away/old{ + name = "Miner's Personal ID" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Wq" = ( +/obj/structure/table_frame, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Wr" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Wt" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/caves/build) +"Wv" = ( +/obj/structure/railing/cap{ + dir = 8 + }, +/mob/living/simple_animal/hostile/abomination/altform1{ + desc = "Скуластое, громоздкое чудовище. Еще один неудачный эксперимент. Что именно они пытались создать?" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 2; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"Ww" = ( +/obj/structure/sign/securearea{ + pixel_x = -30 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Wz" = ( +/obj/structure/janitorialcart, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"WA" = ( +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"WD" = ( +/obj/machinery/door_control/shutter/south{ + id = "cave_elevator"; + pixel_x = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"WF" = ( +/obj/structure/closet/coffin/sarcophagus{ + opened = 1 + }, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"WG" = ( +/obj/structure/table, +/obj/item/reagent_containers/applicator/brute, +/obj/item/reagent_containers/applicator/burn, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "white" + }, +/area/awaymission/caves/build) +"WI" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/obj/structure/flora/rock, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"WJ" = ( +/obj/item/shovel, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"WL" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_tile19" + }, +/mob/living/simple_animal/hostile/skeleton, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"WN" = ( +/obj/effect/decal/remains/human, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"WO" = ( +/obj/effect/landmark/damageturf, +/obj/item/mod/module/springlock, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"WP" = ( +/obj/structure/spider/stickyweb, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"WR" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall, +/area/awaymission/caves) +"WS" = ( +/obj/structure/rack/skeletal_bar/right, +/obj/item/clothing/suit/hooded/cultrobes, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"WV" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"WW" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/build) +"WX" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Xa" = ( +/obj/structure/door_assembly/door_assembly_med, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Xb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"Xc" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/remains/robot, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"Xe" = ( +/mob/living/simple_animal/hostile/hellhound, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Xi" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Xl" = ( +/obj/structure/cult/pylon, +/obj/effect/decal/cleanable/dust, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_block4" + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center4" + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Xn" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/chasm/straight_down/lava_land_surface{ + light_color = null; + light_power = 0; + light_range = 0 + }, +/area/awaymission/caves) +"Xo" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Xq" = ( +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Xu" = ( +/obj/structure/railing/cap{ + dir = 6 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 2; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"Xv" = ( +/obj/structure/bonfire, +/obj/structure{ + icon = 'icons/obj/decorations.dmi'; + icon_state = "paper_cauldron"; + pixel_y = 4; + density = 1; + name = "cauldron" + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken7" + }, +/area/awaymission/caves) +"Xx" = ( +/obj/machinery/porta_turret{ + faction = "syndicate"; + lethal = 1; + requires_power = 0 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Xy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Xz" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/awaymission/caves/build/reqpower_build) +"XB" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"XF" = ( +/obj/structure/closet/body_bag{ + opened = 1 + }, +/obj/effect/mob_spawn/human/corpse/skeleton, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"XH" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding/corner, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"XJ" = ( +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"XK" = ( +/obj/effect/bump_teleporter{ + id = "6caveup"; + id_target = "5cavedown" + }, +/obj/structure{ + icon = 'icons/obj/stationobjs.dmi'; + icon_state = "portal1"; + desc = "An evil portal made by dark magics. Surprisingly stable."; + name = "eldritch portal"; + can_be_hit = 0; + anchored = 1 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "necro2" + }, +/area/awaymission/caves) +"XL" = ( +/obj/effect/decal/cleanable/glass/plasma, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"XN" = ( +/obj/machinery/optable, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"XO" = ( +/obj/item/stack/sheet/metal, +/obj/structure/flora/rock, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"XP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"XQ" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"XS" = ( +/obj/structure/bookcase/random, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves) +"XT" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/carpet/green, +/area/awaymission/caves/build/reqpower_build) +"XU" = ( +/obj/effect/rune/narsie{ + used = 1 + }, +/obj/structure/cult/forge, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"XW" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"XZ" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Ya" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Yb" = ( +/obj/item/kirbyplants, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 2; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"Yd" = ( +/obj/structure/cult/pylon, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "necro3" + }, +/area/awaymission/caves) +"Ye" = ( +/obj/structure/fluff/divine/conduit{ + icon_state = "conduit-red" + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken6" + }, +/area/awaymission/caves) +"Yi" = ( +/obj/machinery/door_control/shutter/north{ + pixel_x = 8; + id = "dummy"; + name = "elevator up" + }, +/obj/machinery/door_control/shutter/north{ + pixel_x = -8; + id = "dummy"; + name = "elevator down" + }, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves/build) +"Yk" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding_tile2" + }, +/obj/structure/flora/rock/pile, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Yo" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/awaymission/caves/build/reqpower_build) +"Yq" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkredaltstrip" + }, +/area/awaymission/caves/build/reqpower_build) +"Ys" = ( +/obj/machinery/door/airlock/survival_pod, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Yu" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Yw" = ( +/mob/living/simple_animal/hostile/poison/giant_spider, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Yx" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/awaymission/caves) +"YC" = ( +/obj/effect/decal/solgov_logo{ + icon_state = "sol_logo8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"YH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"YI" = ( +/obj/structure/closet, +/obj/item/clothing/under/rank/medical/scrubs/green, +/obj/item/clothing/under/rank/medical/scrubs/green, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"YL" = ( +/obj/structure/dresser, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"YM" = ( +/obj/structure/cult/pylon, +/obj/effect/decal/cleanable/dust, +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_surrounding1"; + dir = 8 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"YS" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/disabler, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"YZ" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Za" = ( +/obj/item/stack/sheet/metal, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "dark" + }, +/area/awaymission/caves) +"Ze" = ( +/obj/effect/landmark/awaystart, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Zg" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_center3" + }, +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"Zj" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves/build) +"Zl" = ( +/obj/effect/landmark/awaystart, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/lavaland_air, +/area/awaymission/caves) +"Zm" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredcornersalt"; + dir = 8 + }, +/area/awaymission/caves/build/reqpower_build) +"Zn" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"Zq" = ( +/obj/structure/flora/rock/pile, +/mob/living/simple_animal/hostile/asteroid/basilisk{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Zr" = ( +/obj/structure/closet/crate/freezer{ + opened = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/caves/build/reqpower_build) +"Zu" = ( +/obj/effect/landmark/damageturf, +/obj/effect/landmark/burnturf, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"Zv" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_tile9" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"Zw" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) +"Zz" = ( +/obj/structure/closet/crate/wooden/wooden_crate, +/obj/structure/stone_tile/slab, +/obj/item/reagent_containers/food/drinks/trophy/bronze_cup, +/obj/item/reagent_containers/food/drinks/bottle/wine, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ZB" = ( +/obj/structure/cult/pylon, +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/engine/cult/lavaland_air{ + planetary_atmos = 1 + }, +/area/awaymission/caves) +"ZC" = ( +/obj/effect/landmark/burnturf, +/obj/structure/flora/rock, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"ZE" = ( +/obj/structure/table_frame, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "small"; + pixel_x = 10 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"ZF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/optable, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "darkredalt" + }, +/area/awaymission/caves/build/reqpower_build) +"ZG" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"ZH" = ( +/obj/structure/stone_tile/slab/cracked{ + icon_state = "cracked_tile10" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"ZJ" = ( +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"ZL" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/plating/lavaland_air, +/area/awaymission/caves) +"ZM" = ( +/obj/structure/table/wood, +/obj/item/seeds/wheat, +/obj/item/seeds/wheat, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves) +"ZN" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plasteel/lavaland_air, +/area/awaymission/caves/build) +"ZP" = ( +/obj/structure/windoor_assembly, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"ZU" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/caves/build/reqpower_build) +"ZZ" = ( +/obj/effect/decal/cleanable/shreds, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/caves/build/reqpower_build) + +(1,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +jg +gh +"} +(2,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +Vd +"} +(3,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(4,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(5,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +RX +SV +LU +va +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(6,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +RX +dX +dX +sm +hu +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(7,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +En +En +En +LU +LU +RX +ZJ +ZJ +ZJ +NX +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +yS +yS +yS +yS +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(8,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +LU +LU +TK +TK +TK +TK +TK +LU +LU +LU +En +En +II +En +En +LU +RX +uy +ZJ +En +En +En +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +LU +LU +LU +LU +Ay +Ay +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +yS +yS +yS +yS +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(9,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +En +zg +SN +uc +En +LU +En +En +AV +En +yH +En +En +TK +TK +TK +TK +LU +TK +LU +LU +LU +TK +TK +TK +TK +TK +LU +LU +LU +LU +TK +LU +LU +LU +LU +ZJ +ZJ +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +Te +TK +TK +TK +TK +Te +Pz +TK +TK +TK +TK +Cb +Cb +ZJ +ZJ +TK +ZJ +ZJ +Cb +TK +TK +TK +TK +TK +TK +Te +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +Ez +Vb +Vb +Ez +LU +LU +LU +LU +LU +Ez +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(10,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +En +TN +UH +nj +En +En +En +gl +UH +Qo +UH +Bn +En +En +En +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +TK +TK +TK +LU +TK +TK +TK +LU +ZJ +ZJ +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +Te +TK +TK +ZJ +sr +sr +ZJ +sr +TK +TK +TK +TK +TK +ZJ +sr +ZJ +TK +TK +TK +Te +TK +TK +TK +TK +ZJ +sr +TK +TK +sr +Te +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +bO +bO +TK +TK +bO +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +Ez +kD +kD +Ez +LU +LU +TK +LU +LU +Ez +LU +LU +Ez +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(11,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +En +UH +cg +UH +mZ +bB +SN +gC +UH +Sr +XS +En +En +Xv +En +En +En +En +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +ZJ +LU +ZJ +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +Te +sr +sr +sr +sr +TK +TK +sr +sr +ZJ +TK +TK +TK +ZJ +sr +sr +ZJ +TK +TK +TK +sr +ZJ +sr +Te +TK +TK +sr +sr +sr +ZJ +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +LU +LU +Ez +VM +ie +Ez +TK +TK +TK +TK +LU +Ez +nx +LU +Ez +LU +LU +LU +bO +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +Aq +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(12,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +En +zq +UH +zq +En +En +UH +TM +Me +UH +CW +qZ +CW +UH +En +cC +lJ +En +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +ZJ +ZJ +ZJ +ZJ +ZJ +va +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +ZJ +ZJ +ZJ +sr +sr +sr +ZJ +ZJ +ZJ +sr +hQ +ZJ +sr +sr +sr +sr +sr +sr +ZJ +ZJ +Te +TK +TK +sr +ZJ +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +Sx +ZJ +bO +bO +bO +bO +ZJ +ZJ +ZJ +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +LU +Ez +VD +kD +dU +TK +TK +TK +TK +TK +Ez +nx +nx +Ez +LU +LU +bO +bO +bO +TK +TK +TK +TK +TK +TK +ZJ +Gc +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(13,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +En +Ip +gC +zq +En +Ye +Cl +KT +ry +En +En +En +UH +Ow +mI +zl +KQ +En +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +Te +sr +TK +TK +ZJ +Te +TK +ZJ +PF +sr +ZJ +sr +sr +ZJ +ZJ +TK +TK +TK +PF +sr +sr +sr +sr +TK +TK +sr +sr +ZJ +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +Sl +bO +bO +bO +bO +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +Ez +kD +NY +Kp +ZJ +gO +CL +CL +TK +Ez +nx +nx +dU +LU +LU +bO +bO +bO +bO +TK +TK +TK +TK +TK +xz +ZJ +Tr +PG +ZJ +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(14,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +En +En +zq +En +En +En +zw +iy +tk +En +lw +tJ +mZ +UH +En +En +En +En +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +nu +ZJ +ZJ +nu +ZJ +ZJ +nu +ZJ +ZJ +ZJ +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +sr +sr +sr +TK +ZJ +sr +sr +sr +sr +sr +ZJ +ZJ +ZJ +TK +TK +sr +sr +sr +sr +sr +ZJ +ZJ +sr +sr +ZJ +sr +sr +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +TK +bO +bO +bO +ZJ +ZJ +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +va +aV +yw +yw +ZJ +ZJ +gc +Aq +ZJ +nx +dU +EZ +nx +SB +nx +LU +bO +bO +TK +TK +TK +TK +TK +TK +TK +TK +cO +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(15,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +En +En +En +LU +En +En +Ek +En +En +bX +CQ +If +UH +CW +En +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +nu +nu +nu +nu +nu +nu +nu +ZJ +ZJ +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +nx +ZJ +Te +TK +sr +sr +sr +hQ +sr +sr +TK +TK +ZJ +Cb +TK +sr +sr +sr +sr +sr +sr +ZJ +TK +ZJ +sr +TK +sr +sr +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +bO +bO +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +ZJ +Aq +ZJ +gO +aV +ZJ +kD +VD +WW +FZ +VD +nx +nx +EZ +EZ +KC +nx +nx +bO +bO +TK +TK +TK +TK +TK +TK +TK +TK +TK +Rf +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(16,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +En +En +En +En +ww +ww +En +En +qZ +En +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +nu +Yu +kD +Ja +nu +nu +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +ZJ +sr +sr +sr +sr +sr +sr +TK +TK +Cb +ZJ +TK +TK +TK +sr +sr +sr +Te +TK +TK +TK +sr +TK +TK +sr +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +ZJ +gc +ZJ +ZJ +Aq +bO +bO +Xn +bO +ZJ +nx +SB +fz +gc +ZJ +bO +bO +bO +bO +TK +TK +TK +TK +TK +TK +TK +TK +Rf +Rf +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(17,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +TK +TK +LU +TK +TK +TK +va +sm +sm +va +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +nu +VD +kD +nu +nu +ZJ +ZJ +ZJ +hu +ZJ +ZJ +Aq +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +sr +sr +sr +sr +sr +sr +sr +sr +ZJ +TK +TK +TK +TK +ZJ +ZJ +ZJ +Te +TK +TK +TK +TK +TK +sr +TK +TK +Te +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +wr +ZJ +aV +bO +bO +bO +bO +bO +Aq +EZ +EZ +Kp +pI +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(18,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +BH +BH +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +nu +VD +VD +ee +aP +cH +ZJ +nx +ZJ +ZJ +ZJ +ZJ +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +sr +sr +sr +sr +sr +sr +ZJ +ZJ +sr +sr +ZJ +TK +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +sr +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +aV +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +bO +ZJ +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(19,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +BH +BH +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +ZJ +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +nu +nu +nu +kD +VD +nu +kF +Ki +ZJ +ZJ +ZJ +ZJ +LU +ZJ +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +sr +sr +sr +sr +sr +sr +sr +ZJ +sr +sr +ZJ +PF +sr +sr +sr +sr +hQ +ZJ +TK +TK +TK +TK +sr +sr +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +bO +bO +Xn +bO +bO +bO +bO +bO +bO +aV +ZJ +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +Aq +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(20,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +BH +BH +BH +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +BH +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +nx +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +yS +nu +nu +PR +nu +Nm +nu +nu +ZJ +ZJ +ZJ +ZJ +ZJ +va +ZJ +ZJ +ZJ +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +sr +sr +sr +TK +TK +sr +sr +sr +sr +sr +sr +ri +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +sr +ZJ +sr +sr +sr +Te +TK +TK +TK +Te +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +va +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +EW +ZJ +kD +aV +ZJ +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(21,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +BH +TK +TK +ZJ +ZJ +TK +TK +TK +BH +TK +TK +TK +BH +BH +BH +BH +BH +BH +TK +TK +TK +TK +ZJ +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +yS +wG +LV +kD +VD +VD +kD +BW +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +LU +TK +TK +TK +TK +TK +TK +nx +ZJ +TK +ZJ +ZJ +sr +sr +sr +TK +sr +sr +sr +sr +hQ +ri +sr +sr +ZJ +ZJ +TK +TK +TK +TK +sr +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +Ot +Ot +Ot +Ot +Ot +Ot +ZJ +ZJ +ZJ +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +kD +ZJ +ZJ +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +Ze +ZJ +ZJ +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(22,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +BH +BH +BH +TK +ZJ +ZJ +ZJ +Aq +BH +BH +BH +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +Aq +ZJ +TK +TK +TK +TK +ZJ +ZJ +TK +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +yS +wG +SA +VD +kD +kD +kD +KX +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +ZJ +iH +ZJ +va +ZJ +sr +sr +PF +sr +sr +sr +sr +sr +ZJ +ri +ZJ +sr +ZJ +ZJ +TK +ZJ +ZJ +sr +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +Ot +SZ +Wt +zU +KZ +Ot +ZJ +ZJ +ZJ +ZJ +TK +TK +bO +bO +bO +bO +kG +kG +Zj +Zj +kG +kG +ZJ +kD +kD +ZJ +bO +bO +bO +bO +bO +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +Ze +ZJ +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(23,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +TK +TK +ZJ +ZJ +ZJ +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +yS +nu +nu +PR +nu +Nm +nu +nu +nx +ZJ +ZJ +ZJ +LU +ZJ +ZJ +ZJ +ZJ +LU +TK +ZJ +TK +TK +TK +ZJ +TK +TK +ZJ +ZJ +ZJ +sr +sr +sr +sr +sr +sr +sr +sr +ZJ +sr +sr +sr +sr +sr +ZJ +TK +TK +ZJ +sr +Te +TK +TK +TK +sr +sr +sr +sr +sr +sr +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +Ot +JC +HF +Ot +Ot +Ot +fF +ZJ +tK +ZJ +TK +bO +bO +TK +ZJ +aV +kG +Is +AP +Hc +Hr +kG +Aq +VD +kD +ZJ +bO +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(24,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +Aq +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +nu +nu +nu +kD +VD +nu +ZJ +ZJ +ZJ +ZJ +LU +ZJ +ZJ +nx +LU +LU +TK +hu +TK +TK +TK +ZJ +TK +TK +TK +ZJ +sr +sr +sr +sr +fp +sr +sr +sr +sr +PF +ZJ +ZJ +sr +ZJ +sr +sr +ZJ +ZJ +sr +ZJ +TK +TK +TK +sr +sr +sr +sr +sr +sr +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +Ot +UZ +uU +ui +mx +yh +NY +NY +NY +aV +bO +bO +bO +TK +aV +NY +kG +ta +KP +MA +xV +kG +ZJ +VD +kD +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +va +ZJ +ZJ +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(25,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +mz +mz +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +nx +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +nu +kD +VD +jX +Xx +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +LU +LU +TK +nx +ZJ +TK +TK +ZJ +TK +TK +TK +sr +sr +sr +sr +sr +sr +sr +sr +sr +ZJ +sr +ZJ +va +sr +ZJ +ZJ +sr +sr +sr +TK +TK +TK +sr +sr +sr +sr +sr +sr +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +Ot +kn +kv +ev +mx +yh +NY +NY +aV +bO +bO +bO +aV +gc +NY +NY +kG +WP +nE +fa +WG +kG +ZJ +ZJ +kD +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(26,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +ET +Zz +mz +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +ZJ +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +nu +VD +kD +nu +nu +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +LU +LU +TK +TK +ZJ +TK +TK +sr +sr +TK +TK +sr +sr +sr +sr +sr +sr +hQ +sr +ZJ +ZJ +sr +ZJ +nx +sr +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +sr +sr +sr +sr +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +Ot +mN +HF +Ot +SD +Wg +Ci +Sq +Lv +bO +bO +Lv +kD +wd +kD +kD +kG +Cz +nE +kG +kG +kG +Cx +VD +kD +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(27,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +nv +ET +HH +mz +TK +TK +TK +TK +TK +TK +TK +TK +mz +mz +kV +mz +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +BH +ZJ +ZJ +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +TK +ZJ +ZJ +Aq +TK +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +nu +pU +kD +Ja +nu +nu +ZJ +ZJ +ZJ +ZJ +Aq +ZJ +LU +LU +TK +TK +ZJ +ZJ +sr +sr +sr +TK +TK +TK +TK +sr +TK +TK +TK +TK +TK +TK +sr +TK +TK +TK +TK +TK +TK +TK +sr +sr +TK +ZJ +sr +sr +TK +TK +TK +TK +Te +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +Ot +Qs +AR +nK +lZ +Ot +ZJ +ZJ +TK +TK +bO +Ld +kD +kD +kD +kD +kG +Ut +nE +uG +Ar +Kw +NY +kD +kD +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(28,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +ig +do +ET +ET +mz +mz +mz +mz +TK +TK +TK +TK +TK +TK +UI +Hh +ZJ +BH +BH +BH +BH +BH +mz +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +ZJ +ZJ +nx +BH +BH +BH +BH +BH +BH +BH +BH +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +nu +nu +nu +nu +nu +nu +nu +ZJ +ZJ +ZJ +ZJ +ZJ +LU +TK +TK +TK +TK +Aq +sr +sr +sr +sr +TK +TK +TK +sr +sr +sr +TK +TK +TK +TK +sr +TK +TK +TK +TK +TK +TK +TK +sr +sr +TK +ZJ +ZJ +TK +TK +TK +TK +TK +sr +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +Ot +Ot +Ot +Ot +Ot +Ot +ZJ +TK +TK +TK +bO +Ap +nC +jE +kD +NY +kG +nB +Ud +kG +kG +kG +AW +kD +kD +ZJ +TK +TK +Bu +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +nX +nX +nX +ZJ +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(29,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +vS +al +fM +wC +Ef +Se +wQ +Ju +mz +mz +TK +TK +TK +TK +mz +mz +ZJ +ms +BH +BH +BH +BH +mz +mz +BH +BH +BH +ZJ +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +nx +ZJ +TK +ZJ +ZJ +ZJ +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +nu +ZJ +ZJ +nu +ZJ +ZJ +nu +ZJ +ZJ +ZJ +ZJ +LU +LU +TK +TK +TK +TK +TK +sr +sr +sr +sr +sr +TK +TK +TK +TK +sr +sr +sr +TK +TK +sr +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +nx +ZJ +TK +TK +TK +TK +Te +TK +sr +TK +sr +Te +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +Aq +ZJ +ZJ +ZJ +ZJ +TK +TK +bO +bO +TK +TK +yK +kD +aV +kG +kR +fw +yt +se +kG +Lr +kD +VD +ZJ +eL +eL +eL +eL +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +nX +nX +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(30,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +mz +Vi +qa +mz +mz +mz +Je +Je +mz +mz +TK +TK +TK +TK +mz +Xq +ZJ +BH +fc +BH +mz +Xq +Xq +ZJ +BH +BH +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +Aq +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +ZJ +TK +TK +ZJ +ZJ +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +va +LU +LU +TK +TK +TK +TK +TK +TK +sr +sr +sr +sr +sr +TK +sr +TK +TK +TK +TK +nx +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +ZJ +TK +ZJ +TK +TK +TK +TK +TK +TK +Te +ZJ +TK +PF +TK +sr +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +bO +bO +TK +TK +TK +yK +kD +ZJ +kG +Ok +LH +mn +Jy +kG +Lr +kD +kD +ZJ +ZJ +ZJ +ZJ +eL +eL +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(31,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +YZ +mz +ZJ +mz +mz +TK +TK +mz +TK +TK +TK +TK +TK +ZJ +Aq +zW +BH +BH +mz +Xq +Aq +BH +BH +BH +ZJ +nx +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +BH +BH +ZJ +ZJ +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +ZJ +ZJ +Aq +ZJ +LU +ZJ +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +sr +TK +TK +sr +nx +ZJ +sr +TK +ZJ +ZJ +ZJ +sr +ZJ +TK +ZJ +ZJ +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +TK +sr +sr +ZJ +sr +sr +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +TK +TK +TK +TK +bO +TK +TK +TK +ZJ +yK +kD +aV +kG +xJ +yt +is +hd +kG +Lr +uP +kD +ZJ +ZJ +Aq +ZJ +kG +kG +kG +kG +kG +kG +kG +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(32,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +Dv +mz +mz +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +BH +BH +BH +BH +mz +mz +BH +BH +BH +ZJ +ZJ +ZJ +ms +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +BH +ZJ +ZJ +BH +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +ZJ +ZJ +LU +LU +LU +LU +TK +TK +TK +TK +aT +TK +aT +TK +TK +TK +TK +TK +TK +TK +TK +sr +sr +sr +sr +TK +sr +ZJ +sr +ZJ +ZJ +TK +ZJ +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +Te +TK +TK +TK +sr +TK +ZJ +ZJ +sr +Te +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +Aq +ZJ +bO +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +bO +TK +TK +TK +TK +yK +kD +NY +kG +kG +kG +kG +kG +kG +Lr +kD +kD +ZJ +ZJ +ZJ +ZJ +kG +gq +Fx +NJ +Fi +gq +kG +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(33,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +zO +mz +ml +bK +nx +TK +RP +TK +TK +TK +TK +TK +TK +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +Es +ZJ +Xq +Xq +Xq +cT +Xq +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +ZJ +BH +ZJ +ZJ +ZJ +BH +BH +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +hQ +sr +sr +sr +sr +sr +aT +TK +TK +TK +TK +sr +sr +PF +sr +TK +TK +ZJ +sr +hQ +ZJ +TK +TK +ZJ +TK +TK +TK +TK +TK +sr +TK +TK +TK +sr +sr +sr +ZJ +ZJ +TK +ZJ +sr +sr +sr +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +ZJ +bO +bO +bO +TK +TK +TK +TK +TK +TK +bO +bO +TK +TK +TK +TK +yK +kD +NY +TX +Aq +ZJ +ZJ +ZJ +ZJ +Lr +NY +ZJ +gO +ZJ +va +ZJ +kG +gq +tW +ts +gq +gq +kG +TK +TK +TK +TK +TK +TK +TK +ZJ +Aq +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(34,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +jm +mz +ZJ +Dv +ml +sz +Je +RU +TK +TK +TK +TK +TK +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +RU +Xq +ZJ +ZJ +ZJ +ZJ +fc +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +ZJ +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +sr +sr +sr +sr +PF +sr +sr +sr +sr +sr +TK +TK +TK +sr +PF +sr +TK +TK +sr +sr +sr +sr +TK +TK +ZJ +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +TK +sr +sr +ZJ +ZJ +sr +hQ +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +bO +bO +bO +TK +TK +TK +TK +bO +TK +TK +TK +TK +TK +qS +kD +NY +sA +fb +fb +fb +fb +fb +Lt +kD +aV +gc +ZJ +ZJ +ZJ +kG +ED +NP +NJ +tW +gq +kG +eL +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(35,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +JA +mz +ml +ZJ +bK +Dv +ZJ +nx +In +TK +TK +TK +TK +mz +BH +BH +BH +BH +BH +BH +BH +ZJ +Xq +pL +Xq +ZJ +Xq +ZJ +pL +ZJ +Xq +pL +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +BH +BH +BH +BH +ZJ +ZJ +ZJ +TK +LU +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +aT +sr +sr +TK +ZJ +TK +TK +TK +TK +sr +sr +TK +TK +sr +sr +sr +TK +TK +sr +sr +fp +sr +TK +TK +ap +ZJ +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +PF +sr +ZJ +sr +ZJ +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +bO +bO +bO +bO +TK +bO +bO +TK +TK +TK +ZJ +ZJ +yK +kD +NY +kD +kD +kD +kD +kD +kD +kD +kD +aV +wr +NY +aV +Aq +kG +PJ +tW +ts +tW +tW +kG +eL +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(36,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +mz +mz +mz +mz +mz +mz +mz +mz +LU +LU +TK +TK +mz +sz +Dv +ml +EZ +pL +mz +GR +mz +mz +mz +TK +mz +mz +BH +BH +BH +BH +mz +rN +Xq +ZJ +mz +Xq +Xq +mz +mz +mz +ZJ +ZJ +Xq +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +BH +ZJ +BH +BH +BH +ZJ +ZJ +ZJ +LU +LU +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +sr +TK +TK +TK +sr +ZJ +ZJ +TK +TK +TK +TK +ZJ +iH +TK +ZJ +ZJ +sr +TK +TK +sr +sr +sr +sr +TK +ZJ +ZJ +ZJ +ZJ +TK +sr +TK +TK +TK +TK +TK +sr +sr +sr +sr +ZJ +Te +TK +ZJ +sr +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +bO +TK +TK +TK +ZJ +ZJ +TK +bO +bO +bO +bO +TK +TK +TK +qY +vJ +vJ +UC +NY +jY +gc +fF +ZJ +kD +kD +kD +kD +kD +kD +kD +kD +kD +aV +kG +TV +TV +NJ +NJ +Kl +kG +eL +ZJ +ZJ +ZJ +ko +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(37,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +UN +Dv +Dv +mz +mz +Xq +Dv +UI +aE +pL +TK +TK +TK +mz +Bl +ZJ +ZJ +Dv +mz +mz +mz +mz +td +mz +mz +BH +BH +BH +BH +mz +mz +mz +ZJ +fD +mz +mz +mz +mz +mz +mz +mz +mz +ZJ +kf +ZJ +ZJ +BH +BH +BH +BH +ZJ +ZJ +BH +BH +ZJ +BH +ZJ +ZJ +ZJ +BH +BH +ZJ +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +aT +sr +ZJ +ZJ +sr +hQ +ZJ +TK +TK +ZJ +TK +TK +ZJ +TK +TK +ZJ +sr +sr +TK +sr +sr +PF +sr +TK +sr +hQ +sr +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +Te +TK +TK +ZJ +ZJ +TK +sr +sr +sr +Te +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +bO +bO +TK +bO +bO +bO +bO +TK +TK +ZJ +ZJ +ZJ +TK +TK +bO +TK +TK +qY +UC +NY +kD +kD +kD +aV +Aq +ZJ +ZJ +ZJ +ZJ +ZJ +FY +vo +vo +vo +Su +kD +kD +kG +tn +bk +Ej +NJ +Kl +kG +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +WJ +ZJ +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(38,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +UN +Dv +Dv +mz +Xq +Xq +Dv +Yk +PP +TK +TK +TK +TK +mz +mz +TK +mz +wQ +mz +TK +VX +ZJ +ZJ +Xq +mz +mz +mz +ZJ +fD +fD +iF +Xq +ZJ +mz +mz +mz +HG +HG +HG +HG +HG +mz +kf +ZJ +ZJ +ZJ +BH +BH +BH +fD +iF +Xq +ZJ +ZJ +nx +ZJ +ZJ +BH +ZJ +BH +ZJ +BH +BH +mz +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +aT +PF +ZJ +sr +nx +TK +ZJ +ZJ +TK +TK +va +ZJ +TK +TK +TK +sr +TK +sr +sr +sr +sr +TK +ZJ +ZJ +sr +sr +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +ZJ +sr +sr +ZJ +sr +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +TK +TK +TK +bO +TK +qY +UC +NY +kD +kD +kD +aV +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +fB +ZJ +ZJ +ZJ +rp +kD +NY +kG +kG +aG +MH +MH +kG +kG +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(39,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +Xq +Dv +Xq +Xq +Xq +Dv +Dv +Xq +Bw +TK +TK +TK +mz +TK +TK +TK +TK +TK +TK +TK +Xq +ZJ +UI +Se +iF +hC +Xq +Xq +Xq +Xq +IX +ZJ +tZ +mz +HG +HG +kf +kf +HG +kf +EM +kf +ZJ +ZJ +ZJ +Xq +Xq +ZJ +Xq +Xq +IX +Xq +Xq +Xq +Xq +IX +Xq +Xq +ZJ +ZJ +EZ +Aq +mz +mz +mz +mz +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +sr +ZJ +ZJ +ZJ +TK +TK +Aq +ZJ +TK +ZJ +ZJ +sr +TK +TK +sr +sr +TK +TK +sr +sr +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +sr +TK +TK +TK +TK +sr +Te +ZJ +va +ZJ +ZJ +sr +sr +sr +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +TK +TK +TK +ZJ +TK +cF +NY +kD +NY +ZJ +Aq +ZJ +ZJ +ZJ +va +ZJ +kG +lp +lp +mC +kG +kG +kG +Kh +kD +NY +gd +At +kD +KY +kD +Xy +WW +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +cO +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(40,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +mz +Dv +mz +Xq +mz +Dv +GJ +mz +wQ +mz +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ET +vI +ZJ +Se +RV +rN +Hw +Xq +RU +ZJ +nx +ZJ +mz +mz +HG +lQ +kf +kf +kf +EM +HG +ZJ +ZJ +ZJ +ZJ +sV +Xq +Xq +BH +BH +Xq +Hw +Xq +RU +ZJ +ZJ +fD +fD +iF +wQ +nx +jv +hj +WI +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +sr +sr +sr +sr +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +TK +ZJ +TK +ZJ +ZJ +TK +TK +TK +TK +TK +sr +sr +TK +TK +nx +ZJ +va +ZJ +TK +TK +sr +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +ZJ +sr +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +TK +TK +ZJ +ZJ +TK +qY +vJ +vJ +UC +NY +kD +lt +gc +TK +TK +ZJ +bO +ZJ +ZJ +kG +FJ +NS +nR +sd +wh +lp +rp +kD +NY +ZJ +ZJ +VD +kD +kD +wZ +ZJ +ZJ +ZJ +va +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(41,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +mz +Xq +Dv +Xq +Xq +Xq +Dv +Dv +Xq +Xq +mz +TK +TK +TK +TK +TK +TK +TK +TK +nF +mf +ET +ZJ +ZJ +mz +mz +BH +sV +In +mz +ZJ +fi +ZJ +mz +mz +HG +HG +kf +kf +HG +HG +HG +ZJ +ZJ +ZJ +ZJ +nx +Xq +BH +BH +BH +ZJ +sV +In +BH +ZJ +fi +Xq +ZJ +ZJ +wQ +Bw +iC +af +mf +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +sr +sr +sr +sr +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +ZJ +TK +TK +TK +TK +sr +TK +TK +TK +TK +TK +TK +sr +TK +TK +TK +ZJ +ZJ +TK +ZJ +ZJ +TK +nx +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +sr +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +bO +bO +bO +bO +bO +bO +TK +TK +ZJ +ZJ +cF +kD +kD +kD +kD +kD +Pb +TK +TK +TK +ZJ +bO +ZJ +bO +Uh +jA +NS +hw +ew +wh +HM +pt +kD +ZJ +Aq +ZJ +ZJ +VD +jC +wZ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +rB +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(42,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +Bz +Xq +Xq +Dv +Xq +Xq +Xq +Dv +Dv +Xq +mz +mz +TK +TK +TK +zD +TK +TK +TK +TK +Xq +UI +ZJ +hH +mz +mz +mz +BH +mz +mz +mz +BH +BH +ZJ +mz +mz +mz +HG +HG +HG +HG +HG +mz +kf +ZJ +ZJ +ZJ +Xq +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +ZJ +ZJ +wQ +nx +mB +cP +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +ZJ +sr +hQ +sr +ZJ +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +ZJ +TK +TK +Aq +ZJ +TK +TK +TK +TK +TK +sr +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +ZJ +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +ZJ +sr +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +bO +bO +bO +bO +bO +TK +TK +TK +TK +cF +kD +NY +Ge +kD +kD +Pb +TK +TK +ZJ +ZJ +bO +bO +bO +Uh +sM +ao +ZN +CU +qx +HY +rp +kD +NY +ZJ +ZJ +VD +kD +kD +wE +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +Aq +ZJ +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(43,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +Xq +Xq +Dv +Dv +Dv +Dv +Dv +Dv +mz +mz +mz +TK +TK +TK +In +TK +mz +mz +mz +ZJ +mz +mz +mz +mz +ZJ +mz +BH +BH +BH +BH +BH +BH +ZJ +ZJ +mz +mz +mz +mz +mz +mz +mz +mz +ZJ +UP +ZJ +ZJ +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +ZJ +BH +BH +BH +Aq +mz +mz +mz +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +sr +sr +sr +sr +sr +sr +sr +sr +sr +TK +TK +TK +TK +ZJ +ZJ +TK +TK +ZJ +ZJ +TK +ZJ +ZJ +ZJ +TK +TK +TK +sr +sr +TK +TK +ZJ +TK +ZJ +Aq +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +nx +TK +TK +TK +TK +TK +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +ZJ +bO +bO +bO +bO +TK +bO +TK +TK +cF +kD +aV +Pb +Pb +Pb +fO +TK +TK +ZJ +ZJ +bO +bO +bO +kG +mC +Dj +AI +kG +kG +kG +Ea +kD +NY +ZJ +gc +kD +kD +kD +wZ +gc +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +rB +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(44,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +WF +rm +Dv +Dv +Dv +Dv +Dv +Dv +mz +mz +mz +mz +TK +TK +mz +tZ +tm +mz +EZ +ZJ +ZJ +ZJ +ZJ +In +mz +ZJ +mz +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +mz +mz +mz +mz +mz +mz +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +Aq +BH +BH +BH +BH +BH +BH +BH +nx +mz +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +sr +sr +sr +sr +ZJ +ZJ +ZJ +ZJ +sr +TK +TK +TK +TK +sr +TK +TK +ZJ +ZJ +ZJ +TK +ZJ +sr +TK +TK +TK +sr +TK +TK +ZJ +ZJ +TK +TK +ZJ +ZJ +TK +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +ZJ +bO +bO +bO +bO +bO +bO +bO +TK +cF +kD +NY +Pb +TK +TK +TK +TK +TK +ZJ +bO +bO +bO +ZJ +kG +he +NS +ao +Va +LH +uh +NY +aV +VD +kD +wd +kD +kD +kD +yp +mJ +Ro +NF +Lv +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(45,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +Xq +Xq +Dv +Dv +Dv +Dv +Dv +Dv +mz +mz +mz +TK +TK +mz +Xq +nF +mz +ZJ +ZJ +UI +Zv +ZJ +nU +TK +ZJ +mz +BH +BH +BH +BH +BH +BH +BH +Xq +Xq +mf +BH +ZJ +mf +ms +ZJ +Bs +Xq +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +ZJ +LU +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +sr +sr +sr +sr +sr +ZJ +ZJ +sr +TK +TK +TK +sr +TK +TK +ZJ +nx +TK +TK +TK +ZJ +ZJ +TK +sr +sr +TK +Aq +ZJ +sr +TK +TK +TK +ZJ +sr +sr +TK +TK +TK +ZJ +Aq +ZJ +ZJ +ZJ +sr +TK +Te +TK +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +Aq +bO +bO +bO +bO +bO +bO +bO +bO +cF +kD +lt +gc +TK +TK +TK +TK +TK +ZJ +bO +Aq +ZJ +ZJ +kG +ir +NS +ZN +uh +Eh +Va +kD +kD +VD +VD +kD +kD +kD +kD +NY +kD +kD +Sb +fo +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(46,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +Bz +Xq +Xq +Dv +Xq +Xq +Xq +Dv +Dv +Xq +mz +mz +mz +mz +mz +EZ +mz +mz +ZJ +ET +GB +TK +mz +mz +TK +TK +mz +BH +BH +BH +mz +mz +Aq +BH +BH +mf +ZJ +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +ZJ +TK +TK +ZJ +TK +TK +TK +TK +ZJ +ZJ +TK +sr +TK +ZJ +ZJ +sr +ZJ +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +TK +TK +TK +sr +TK +sr +sr +sr +Te +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +Lv +aV +aV +ZJ +TK +TK +TK +TK +TK +ZJ +bO +bO +bO +ZJ +kG +lx +NS +kG +kG +mC +kG +Ts +kD +ZJ +ZJ +Jz +kD +kD +kD +NY +ZJ +kD +hP +SB +Aq +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(47,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +mz +Xq +Dv +Xq +Xq +Xq +Dv +Dv +Xq +Xq +mz +TK +TK +TK +nx +ZJ +ZJ +mf +ZJ +TK +TK +TK +TK +TK +TK +TK +BH +BH +mz +Xq +Dc +ZJ +mz +BH +BH +mf +BH +BH +ZJ +mf +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +ZJ +sr +TK +TK +TK +TK +ZJ +sr +sr +TK +ZJ +sr +sr +ZJ +TK +TK +TK +ZJ +nx +ZJ +ZJ +iH +ZJ +va +ZJ +TK +TK +TK +sr +TK +ZJ +ZJ +sr +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +bO +bO +bO +Mq +ZJ +TK +TK +TK +bO +bO +bO +bO +bO +ZJ +bO +bO +kG +ES +Hj +kG +Go +Po +kG +rp +kD +ZJ +Qn +Ic +VD +VY +kD +Wn +CL +hP +hP +rg +Lh +EZ +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(48,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +mz +Dv +mz +Xq +mz +Dv +Dv +mz +Xq +mz +TK +TK +TK +TK +Xq +ZJ +Xq +ZJ +mz +ZJ +ZJ +TK +ZJ +nx +In +Xq +Xq +BH +ZJ +UI +mo +mz +BH +BH +BH +BH +ZJ +ZJ +ZJ +nx +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +ZJ +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +Te +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +sr +ZJ +ZJ +TK +TK +TK +hQ +ZJ +ZJ +sr +sr +ZJ +TK +TK +TK +TK +ZJ +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +TK +ZJ +sr +ZJ +sr +ZJ +Te +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +bO +bO +bO +bO +bO +bO +TK +TK +ZJ +Aq +bO +ZJ +ZJ +ZJ +bO +bO +bO +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +kG +Nx +NS +Np +jh +eR +kG +rp +kD +Ge +Ge +nu +Yi +Km +tC +nu +CL +ZJ +SB +fC +nx +nx +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(49,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +Xq +Dv +Xq +Xq +Xq +Dv +Dv +Xq +Xq +mz +TK +nx +ZJ +nx +ZJ +ZJ +ZJ +mz +mz +mz +ZJ +ZJ +EZ +mz +mz +BH +rv +ZJ +Xq +Xq +mz +mz +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +nx +BH +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +sr +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +ap +ZJ +TK +TK +TK +TK +ZJ +TK +sr +ZJ +ZJ +ZJ +ZJ +Aq +ZJ +ZJ +ZJ +sr +ZJ +TK +TK +TK +TK +sr +sr +sr +TK +TK +TK +TK +sr +sr +sr +TK +TK +ZJ +PF +sr +TK +ZJ +sr +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +TK +TK +TK +TK +TK +ZJ +bO +ZJ +ZJ +bO +bO +ZJ +TK +TK +TK +TK +TK +TK +TK +ZJ +kG +cX +Tu +mC +Xc +PZ +kG +rp +kD +ZJ +nu +nu +Lq +Rw +eD +nu +nu +EZ +nx +nx +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(50,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +UN +Dv +Dv +mz +Xq +Xq +Dv +Dv +Xq +Xq +mz +mz +mz +ZJ +Xq +mz +mz +mz +mz +da +mz +Xq +ZJ +ZJ +ZJ +mz +BH +BH +mz +mz +Xq +Lf +mz +BH +BH +BH +BH +ZJ +Aq +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +ZJ +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +PF +ZJ +ZJ +Aq +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +nx +ZJ +sr +ZJ +TK +TK +TK +TK +TK +ZJ +va +TK +ZJ +ZJ +TK +TK +TK +sr +TK +TK +sr +sr +TK +TK +TK +sr +PF +sr +sr +sr +sr +sr +ZJ +TK +TK +sr +Pz +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +TK +TK +bO +ZJ +bO +bO +bO +bO +bO +TK +TK +TK +TK +TK +TK +ZJ +kG +kI +HY +kG +kG +kG +kG +rp +kD +ZJ +nu +XZ +Pj +Pj +Pj +bt +nu +ZJ +Aq +nx +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(51,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +UN +Dv +Dv +mz +mz +Xq +Dv +Dv +Xq +Xq +mz +TK +mz +mz +Xq +ZJ +ZJ +Xq +ZJ +cB +Wk +mf +TK +mz +ZJ +TK +BH +BH +mz +BH +ZJ +Xq +ZJ +BH +BH +BH +BH +ZJ +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +sr +sr +sr +ZJ +ZJ +ZJ +ZJ +TK +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +ap +ZJ +ZJ +Aq +ZJ +sr +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +TK +sr +sr +ZJ +TK +TK +TK +ZJ +Te +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +bO +bO +bO +bO +ZJ +TK +ZJ +ZJ +TK +TK +Ck +aV +WA +gc +TK +TK +bO +bO +TK +TK +TK +TK +TK +ZJ +BY +ZJ +av +dA +Ro +Ro +Ro +jW +kD +ZJ +nu +XZ +Pj +Fn +Pj +XZ +nu +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(52,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +mz +mz +mz +mz +mz +DL +DL +mz +mz +mz +TK +TK +mz +ZJ +ZJ +ZJ +ZJ +mf +lc +An +ZJ +ZJ +mz +mz +TK +TK +BH +BH +BH +mz +ZJ +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +sr +hQ +ZJ +ZJ +TK +TK +TK +sr +sr +TK +ZJ +ZJ +TK +TK +TK +sr +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +sr +TK +TK +TK +TK +TK +sr +TK +ZJ +sr +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +bO +bO +bO +bO +ZJ +ZJ +ZJ +iA +Ro +dq +NY +aV +ZJ +ZJ +TK +TK +bO +bO +bO +TK +TK +TK +ZJ +bO +Lv +nW +NY +NY +NY +NY +NY +NY +ZJ +nu +nu +Pj +Fn +Pj +nu +nu +TK +TK +TK +TK +TK +TK +nx +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(53,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +Dv +Dv +mz +mz +TK +TK +TK +mz +mz +ZJ +ZJ +TK +mz +jt +mz +ZJ +mf +Se +UI +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +Te +sr +ZJ +ZJ +TK +TK +ZJ +ZJ +hQ +ZJ +ZJ +sr +sr +ZJ +ZJ +sr +TK +ZJ +ZJ +TK +TK +TK +TK +ZJ +ZJ +TK +ZJ +ZJ +ZJ +ZJ +ZJ +sr +TK +TK +TK +TK +TK +TK +TK +TK +TK +sr +TK +TK +TK +TK +sr +fp +TK +TK +TK +TK +sr +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +Lr +kD +kD +NY +kD +ZJ +TK +TK +TK +TK +bO +bO +bO +TK +bO +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +ZJ +lt +gc +ZJ +nu +mc +Pj +Pj +Pj +XZ +nu +TK +TK +TK +nx +TK +TK +nx +nx +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(54,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +Dv +Dv +mz +mz +TK +TK +TK +TK +TK +TK +TK +mz +mz +mz +mz +mz +mz +ZJ +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +Aq +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +ZJ +ZJ +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +ZJ +sr +sr +ZJ +ZJ +ZJ +sr +ZJ +ZJ +TK +TK +Te +TK +TK +ZJ +ZJ +sr +sr +TK +TK +TK +TK +nx +TK +TK +TK +TK +TK +TK +TK +sr +sr +ZJ +TK +TK +nx +ZJ +TK +TK +sr +sr +ZJ +TK +TK +sr +sr +sr +TK +TK +TK +sr +sr +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +fO +ZJ +Aq +ZJ +ZJ +ZJ +Lr +kD +kD +kD +kD +ZJ +TK +TK +TK +TK +bO +TK +bO +bO +bO +bO +bO +nQ +Lv +aV +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +nu +nu +bt +XZ +bt +nu +nu +TK +TK +ZJ +nx +nx +RD +nx +SB +nx +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(55,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +Dv +Dv +mz +mz +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +NI +ZJ +pd +mz +UI +ZJ +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +ZJ +BH +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +ZJ +sr +ZJ +ZJ +sr +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +sr +ZJ +ZJ +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +ZJ +sr +sr +sr +TK +sr +TK +sr +sr +TK +sr +sr +TK +TK +TK +ZJ +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +fO +fO +ZJ +ZJ +ZJ +ZJ +AZ +kD +kD +Pw +ZJ +ZJ +bO +bO +bO +bO +bO +TK +TK +bO +bO +bO +aV +EI +gc +gf +WR +WR +ZJ +Aq +ZJ +TK +TK +nu +nu +nu +nu +nu +TK +TK +TK +ZJ +Aq +ZJ +nx +SB +oo +yo +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(56,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +Dv +Dv +mz +mz +mz +TK +TK +ZJ +ZJ +TK +ZJ +sz +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +ZJ +ZJ +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +ZJ +ZJ +PF +sr +ZJ +ZJ +ZJ +TK +TK +TK +TK +ZJ +Aq +ZJ +ZJ +TK +TK +ZJ +TK +TK +TK +ZJ +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +TK +TK +sr +Yw +sr +TK +TK +TK +sr +TK +TK +TK +sr +sr +TK +TK +ZJ +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +fO +ZJ +gc +qi +qi +qi +ZL +vX +qi +qi +qi +EI +bO +bO +bO +TK +TK +TK +bO +bO +EI +aV +aV +zp +UM +EB +WR +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +yU +kD +kD +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(57,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +Dv +Dv +JS +mz +mz +mz +mz +Sh +ZJ +Ya +ZJ +Xq +ZJ +pd +mz +ZJ +mz +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +BH +BH +ZJ +BH +ZJ +BH +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +ZJ +ZJ +sr +sr +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +ZJ +sr +sr +ZJ +ZJ +TK +ZJ +TK +TK +TK +TK +ZJ +TK +TK +TK +ZJ +sr +TK +TK +TK +CO +TK +TK +TK +TK +ZJ +ZJ +TK +ZJ +ZJ +sr +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +fO +TK +qi +qE +CP +gc +CH +Ow +qi +Nj +CN +EI +bO +bO +bO +TK +TK +TK +bO +bO +qj +ZJ +BC +KL +uo +uJ +pZ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +Lr +kD +kD +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(58,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +Dv +UI +Zg +Uz +ms +ET +ET +ZJ +mf +Bo +ZJ +bK +sz +ZJ +mz +ZJ +mz +TK +BH +BH +BH +BH +BH +TK +TK +TK +BH +BH +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +ZJ +ZJ +ZJ +sr +sr +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +ZJ +ZJ +TK +TK +ZJ +sr +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +CO +ZJ +ZJ +sr +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +nx +TK +TK +TK +TK +qi +If +Rq +CM +UH +yw +Ur +Zl +Ih +gc +ZJ +bO +bO +ZJ +TK +TK +TK +bO +bO +bO +bO +yw +zp +Os +pZ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +Lr +kD +kD +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(59,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +mz +mz +WL +fc +ET +mf +Xq +ZJ +mf +ZJ +ZJ +ZJ +ZJ +mz +ZJ +mz +TK +TK +BH +BH +BH +BH +TK +TK +BH +BH +BH +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +BH +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +ZJ +TK +ZJ +TK +TK +TK +TK +TK +nx +ZJ +ZJ +ZJ +TK +TK +ZJ +ZJ +TK +TK +sr +sr +TK +TK +TK +TK +nx +ZJ +ZJ +ZJ +ZJ +Aq +ZJ +ZJ +sr +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +nx +lY +ZJ +EZ +ZJ +Wr +qi +dF +ji +qi +oM +XW +gc +Qo +LI +EI +nQ +ZJ +bO +ZJ +TK +TK +TK +ZJ +Ge +ZJ +bO +ZJ +aV +lU +gc +GU +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +Lr +kD +kD +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(60,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +mz +Xq +mz +hn +bK +TK +TK +ZJ +ZJ +pd +mz +ZJ +mz +TK +BH +BH +BH +TK +TK +TK +TK +BH +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +BH +BH +ZJ +ZJ +BH +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ap +ZJ +ZJ +Aq +ZJ +TK +TK +TK +TK +TK +ZJ +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +sr +sr +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +Bu +Bu +nx +EZ +ZJ +ZJ +rq +gc +gc +gc +gc +zT +ow +gc +EI +tP +ZJ +HI +ZJ +bO +ZJ +TK +TK +ZJ +ZJ +EI +ZJ +bO +bO +ZJ +BC +XZ +Ey +ZJ +sm +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +Lr +kD +kD +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(61,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +Xq +mz +TK +TK +TK +pd +ZJ +pd +ZJ +ZJ +ZJ +TK +TK +BH +BH +TK +TK +TK +TK +TK +TK +BH +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +BH +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +sr +ZJ +TK +TK +TK +ZJ +ZJ +TK +TK +ZJ +hu +nx +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +nx +lY +ZJ +vG +ZJ +ZJ +ZJ +gc +Us +bL +ai +MY +UH +nh +XZ +bO +bO +bO +bO +bO +ZJ +TK +ZJ +ZJ +ZJ +WR +aV +Ki +bO +sq +Os +XZ +pm +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +Lr +kD +kD +va +Aq +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(62,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +ET +mz +TK +ZJ +sz +mz +mz +mz +ZJ +ZJ +TK +TK +BH +BH +BH +BH +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +BH +BH +BH +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +LU +LU +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +Te +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +va +ZJ +TK +TK +TK +sr +sr +sr +sr +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +ZJ +ZJ +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +nx +ZJ +ZJ +ZJ +ZJ +ZJ +ZL +UH +UF +Qo +UH +HD +aV +XZ +bO +EI +ZJ +bO +bO +TK +TK +TK +ZJ +ZJ +WR +fU +Ki +bO +yw +uo +WR +XJ +TK +TK +ZJ +ZJ +Aq +ZJ +ZJ +Aq +ZJ +TK +TK +TK +TK +bO +bO +ZJ +Lr +kD +kD +Pw +ZJ +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(63,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +ET +mz +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +BH +BH +TK +BH +TK +TK +TK +TK +TK +TK +TK +ZJ +va +ZJ +ZJ +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +Te +TK +TK +sr +TK +TK +TK +ZJ +TK +TK +ZJ +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +mT +ZJ +ZJ +ZJ +ZJ +ZJ +gc +hF +nc +ck +UH +eE +yq +Wq +ZJ +gc +TK +bO +bO +bO +TK +TK +TK +ZJ +WR +EI +XZ +bO +ZJ +EI +WR +Ey +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +bO +bO +EI +gf +Ge +WR +WR +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(64,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +ET +mz +TK +TK +TK +ZJ +ZJ +ZJ +mz +TK +TK +BH +BH +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +BH +BH +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +ZJ +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +TK +sr +TK +TK +sr +TK +nx +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +Aq +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +ZJ +va +ZJ +ZJ +ZJ +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +sm +ZJ +ZJ +ZM +qi +qi +qi +gc +za +oM +gc +qi +qi +qi +TK +TK +TK +bO +bO +bO +TK +ZJ +ZJ +bO +bO +bO +oS +AM +AM +tM +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +bO +bO +bO +xh +aV +FR +pr +WR +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(65,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +NY +mz +TK +TK +TK +mz +QX +hY +mz +TK +TK +BH +TK +TK +TK +hu +Aq +ZJ +TK +TK +TK +ZJ +Aq +ZJ +ZJ +CO +TK +TK +TK +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +ZJ +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +ZJ +PF +ZJ +TK +ZJ +sr +ZJ +ZJ +ZJ +sr +TK +ZJ +TK +TK +ZJ +ZJ +TK +TK +TK +TK +sr +ZJ +ZJ +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +ZJ +ZJ +Aq +ZJ +ZJ +ZJ +sr +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +EN +WJ +ZJ +ZJ +ZJ +Tw +gc +bm +YL +EI +XW +ow +gc +am +XQ +qi +ZJ +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +ZJ +Ey +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +ZJ +bO +bO +bO +ZJ +bO +yw +FP +WR +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(66,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +pH +mz +TK +LU +LU +mz +iE +UK +mz +TK +BH +BH +TK +TK +TK +ZJ +TK +ZJ +ZJ +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +TK +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +ZJ +TK +TK +sr +sr +ZJ +sr +ZJ +TK +TK +hQ +sr +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +ZJ +sr +sr +ZJ +ZJ +sr +ZJ +ZJ +TK +ZJ +TK +TK +TK +TK +TK +nx +ZJ +TK +dU +sr +ZJ +dU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +EN +ZJ +ZJ +ZJ +ZJ +va +qi +Zl +VD +VD +UH +qt +qi +Gn +hJ +qi +ZJ +TK +TK +TK +bO +bO +TK +TK +bO +bO +TK +TK +Ey +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +ZJ +ZJ +ZJ +bO +bO +bO +bO +bO +bO +yw +ws +WR +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +"} +(67,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +Fk +mz +LU +LU +LU +mz +ue +TK +TK +TK +BH +TK +TK +TK +TK +TK +ZJ +va +ZJ +TK +TK +ZJ +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +ZJ +sr +ZJ +TK +sr +TK +Te +ZJ +TK +TK +sr +ZJ +ZJ +TK +TK +sr +hQ +sr +sr +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +ZJ +ZJ +ZJ +ZJ +Aq +ZJ +TK +TK +TK +TK +ZJ +ZJ +TK +dU +CO +sr +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +EN +lg +EN +EN +TK +qi +VG +Ka +hL +UH +sh +oP +sw +Au +qi +ZJ +TK +TK +TK +TK +bO +TK +bO +bO +TK +TK +TK +Ey +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +bO +bO +ZJ +ZJ +Aq +bO +bO +bO +nQ +aV +RY +Jd +Ge +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +"} +(68,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +qT +mz +LU +LU +LU +mz +qT +TK +TK +LU +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +ZJ +TK +TK +TK +TK +ZJ +ZJ +TK +TK +BH +BH +BH +BH +BH +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +Cb +ZJ +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +ZJ +sr +ZJ +Te +TK +sr +TK +ZJ +sr +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +ZJ +TK +TK +nx +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +dU +sr +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +EN +TK +TK +TK +qi +EI +gc +gc +Ow +zA +qi +qi +qi +qi +TK +TK +TK +TK +TK +bO +bO +bO +TK +TK +TK +TK +pm +ZJ +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +bO +bO +bO +bO +bO +ZJ +yw +bc +EI +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +"} +(69,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +qT +mz +LU +LU +LU +mz +TK +TK +TK +LU +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +ZJ +ZJ +TK +Aq +TK +TK +ZJ +Aq +TK +TK +BH +BH +BH +BH +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +hQ +sr +ZJ +sr +ZJ +PF +sr +sr +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +sr +sr +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +hu +ZJ +ZJ +ZJ +ZJ +TK +TK +nu +sr +Ge +dU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +gc +vj +Rp +qj +nP +om +gc +YL +It +qi +TK +TK +TK +TK +TK +TK +bO +bO +bO +TK +TK +TK +ZJ +bO +bO +bO +TK +TK +TK +ZJ +ZJ +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +CZ +ZJ +ZJ +yw +si +WR +ZJ +TK +LU +LU +LU +LU +LU +LU +LU +"} +(70,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +LU +LU +LU +LU +LU +TK +TK +TK +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +Aq +ZJ +ZJ +ZJ +TK +ZJ +bV +va +ZJ +TK +TK +TK +ZJ +BH +BH +BH +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +TK +TK +LU +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +TK +Te +sr +sr +sr +TK +TK +sr +ZJ +ZJ +TK +ri +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +sr +sr +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +nu +Ge +Ge +nu +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +gc +RN +RE +gc +Mi +lG +qi +VP +UH +qi +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +TK +TK +ZJ +bO +bO +bO +TK +TK +TK +TK +bO +bO +bO +bO +ZJ +oq +UM +FR +WR +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(71,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +LU +LU +LU +LU +LU +TK +TK +TK +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +hu +ZJ +ZJ +ZJ +kC +TK +TK +TK +TK +TK +ZJ +ZJ +BH +ZJ +TK +TK +TK +TK +TK +TK +TK +LU +LU +TK +TK +LU +LU +LU +TK +LU +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +Cb +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +sr +Te +TK +TK +Te +Pz +TK +Te +TK +TK +nx +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +nu +yP +yP +nu +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +qi +eO +RN +LU +Mi +EY +bu +Lz +qp +qi +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +TK +TK +bO +On +EI +EI +WR +WR +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(72,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +TK +LU +LU +LU +LU +LU +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +yS +yS +yS +yS +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +qi +qi +LU +LU +EI +gc +gc +qi +qi +qi +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(73,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(74,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(75,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(76,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(77,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(78,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(79,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(80,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(81,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(82,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(83,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +as +as +as +as +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(84,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +as +as +mX +tU +as +as +as +as +as +as +lD +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(85,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +as +dV +pk +pk +qf +as +Mp +Tk +SU +as +lD +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(86,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +as +gk +pk +pk +cW +as +GN +XT +ae +as +lD +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(87,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +as +as +as +as +as +as +lD +as +vh +pk +pk +uj +as +Tk +XT +Mp +as +Ol +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +yS +yS +yS +yS +LU +LU +LU +LU +LU +LU +LU +LU +"} +(88,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +as +Ri +Ry +Ri +Rg +as +lD +as +QF +pk +pk +QF +as +Pe +jL +NA +js +as +as +as +as +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +TK +TK +Aq +TK +TK +TK +TK +TK +TK +LU +LU +LU +nu +lT +lT +nu +LU +LU +LU +LU +LU +LU +LU +LU +"} +(89,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +as +Ri +Ri +Ri +Ri +as +lD +as +fq +xQ +IP +Xb +Nq +fN +ZZ +oa +dS +as +ah +zx +vE +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +TK +TK +cO +ZJ +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +CO +bO +bO +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +LU +LU +nu +kD +kD +nu +LU +LU +LU +LU +LU +LU +LU +LU +"} +(90,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +as +Rg +xE +nb +Ri +as +lD +as +as +Fp +as +as +as +eG +Ll +oa +Fz +Ol +dP +Ei +iR +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +bO +bO +TK +TK +TK +bO +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +TK +TK +ZJ +ZJ +TK +TK +bO +bO +ZJ +ZJ +bO +ZJ +ZJ +ZJ +ZJ +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +LU +nu +kD +VD +nu +LU +LU +LU +LU +LU +LU +LU +LU +"} +(91,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +lD +lD +lD +lD +as +as +as +as +as +lD +lD +lD +lD +lD +as +OL +TG +IY +ro +as +lD +as +eW +Rk +cn +as +vQ +Zw +db +Ll +LB +Oc +bY +as +vl +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +TK +bO +bO +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +TK +WN +QE +TK +TK +bO +bO +CO +ZJ +ZJ +ZJ +ZJ +bO +bO +bO +bO +bO +bO +TK +TK +TK +bO +bO +bO +bO +bO +ZJ +ZJ +TK +TK +LU +LU +nu +xy +RJ +nu +LU +LU +LU +LU +LU +LU +LU +LU +"} +(92,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +BH +LU +LU +LU +LU +BH +BH +BH +BH +LU +BH +BH +LU +BH +LU +LU +BH +BH +BH +BH +LU +LU +LU +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +xf +xf +xf +xf +as +iu +Dw +iu +as +lD +lD +as +as +as +as +wB +hG +PA +Vc +as +lD +as +Uj +vg +dP +as +yb +zf +YH +qn +bE +LJ +vC +as +as +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +LU +TK +TK +TK +TK +Aq +TK +TK +TK +ZJ +ZJ +bO +bO +bO +bO +bO +TK +TK +TK +TK +bO +ZJ +ZJ +TK +TK +bO +bO +bO +bO +ZJ +ZJ +TK +TK +TK +LU +nu +Kp +kD +nu +LU +LU +LU +LU +LU +LU +LU +LU +"} +(93,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +LU +LU +BH +BH +BH +BH +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +BH +BH +BH +BH +LU +BH +LU +LU +LU +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +xf +RB +tT +xf +as +eg +XH +dP +as +as +lD +as +Tl +Tl +HQ +oz +xS +aa +or +as +lD +as +as +as +as +as +ac +Ol +as +as +dj +uI +ud +as +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +Aq +ZJ +ZJ +ZJ +ZJ +ZJ +bO +bO +TK +bO +TK +TK +TK +TK +TK +TK +bO +bO +ZJ +ZJ +TK +TK +TK +bO +bO +bO +ZJ +TK +TK +TK +LU +nu +ZJ +Ge +nu +LU +LU +LU +LU +LU +LU +LU +LU +"} +(94,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +xf +qg +qg +xf +tG +Mu +yY +Xz +vY +as +lD +as +Az +dr +qH +HV +xS +xS +Pq +as +lD +lD +as +Ol +Uv +ip +eB +jp +bP +as +as +as +as +as +as +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +ZJ +ZJ +hu +ZJ +Aq +ZJ +TK +TK +TK +TK +TK +TK +ZJ +TK +ZJ +TK +ZJ +bO +bO +ZJ +ZJ +TK +TK +bO +bO +bO +ZJ +TK +TK +TK +TK +ZJ +ZJ +Kp +TK +LU +LU +LU +LU +LU +LU +LU +LU +"} +(95,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +xf +Ky +CJ +DW +Ed +aa +aa +EJ +Mo +as +lD +as +aF +zG +HQ +cE +bb +Fo +aa +as +lD +lD +as +QO +xS +Wv +Ra +Zn +Um +rM +Ol +Vk +XN +AK +as +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +ZJ +TK +TK +ZJ +ZJ +TK +ZJ +ZJ +ZJ +bO +bO +hu +ZJ +TK +TK +TK +bO +bO +CO +ZJ +TK +TK +TK +TK +ZJ +bO +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(96,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +xf +tr +wx +as +eM +He +By +fI +Oi +as +as +as +as +as +as +as +as +as +ot +as +as +lD +as +as +ON +GD +sF +gL +bU +Ol +Ol +Ag +iv +ZU +oK +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +ZJ +ZJ +TK +ZJ +ZJ +ZJ +ZJ +ZJ +bO +bO +bO +ZJ +TK +TK +TK +TK +bO +bO +bO +ZJ +TK +TK +Aq +TK +ZJ +bO +bO +TK +TK +LU +LU +LU +LU +LU +LU +"} +(97,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +BH +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +xf +xf +xf +xf +ct +lL +Py +YC +ng +OR +sj +DM +as +iG +uL +vW +Ol +Hd +Vn +di +as +lD +lD +as +Rn +Rn +uX +yO +mM +yO +lV +IM +yW +Ug +as +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +CO +ZJ +nx +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +bO +bO +bO +bO +bO +bO +bO +ZJ +TK +TK +TK +TK +bO +bO +bO +ZJ +TK +bO +ZJ +ZJ +ZJ +VD +bO +bO +TK +LU +LU +LU +LU +LU +LU +"} +(98,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +TK +TK +TK +xf +NL +fV +uY +lr +UO +Ol +RM +vy +hi +Rk +aY +vV +as +qX +ff +pB +as +lD +as +as +We +eB +VL +Rn +iQ +as +as +pV +yW +MC +Zr +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +TK +ZJ +ZJ +ZJ +hu +ZJ +TK +TK +TK +TK +bO +ZJ +ZJ +bO +bO +bO +bO +bO +bO +ZJ +ZJ +TK +TK +TK +bO +bO +bO +ZJ +bO +bO +sy +ZJ +kD +Pb +bO +bO +TK +TK +LU +LU +LU +LU +LU +"} +(99,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +Xq +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +TK +TK +TK +xf +xf +ci +UL +eQ +PQ +as +vc +vr +as +uL +iG +hS +as +jM +OZ +zY +as +lD +as +lv +aa +JU +Xu +bS +Zn +FL +Ol +IL +bQ +DT +as +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +bO +bO +bO +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +bO +bO +bO +ZJ +TK +bO +bO +bO +bO +bO +ZJ +Aq +TK +TK +TK +bO +bO +bO +ZJ +bO +bO +bO +Kp +kD +TK +TK +bO +bO +TK +LU +LU +LU +LU +LU +"} +(100,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +Xq +ZJ +Aq +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +BH +LU +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +TK +aV +TK +cz +xf +Vx +Vx +Vx +xf +as +Ol +ot +as +as +as +as +as +Ol +Ys +as +as +as +as +as +hk +ef +LP +vL +Nh +as +as +as +as +as +as +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +ZJ +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +TK +TK +TK +bO +bO +bO +ZJ +TK +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +TK +TK +bO +bO +bO +ZJ +bO +bO +bO +bO +ZJ +TK +TK +bO +bO +TK +TK +LU +LU +LU +LU +"} +(101,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +Xq +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +nx +aV +Kp +NY +NY +aV +vx +JN +qI +Bq +lo +Hi +Tp +pi +uu +Tp +Hn +hb +Bc +hb +lD +wy +as +as +Ol +lq +as +as +as +xC +bw +cD +wO +kc +as +as +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +ZJ +bO +bO +bO +bO +TK +bO +bO +bO +TK +TK +TK +TK +bO +bO +bO +ZJ +ZJ +TK +bO +TK +TK +bO +bO +ZJ +ZJ +ZJ +ZJ +bO +bO +bO +ZJ +ZJ +bO +bO +ZJ +aV +va +Pb +TK +TK +bO +TK +TK +LU +LU +LU +LU +"} +(102,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +Xq +Aq +ZJ +Xq +ZJ +vI +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +Ez +NY +NY +aV +vZ +vx +BH +JN +eA +tQ +aH +wy +FA +bh +bh +bG +Ln +hb +lD +hb +hb +oA +eZ +AQ +Ty +hI +oU +nZ +bo +jQ +bi +OM +ZP +Zm +RK +as +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +ZJ +ZJ +bO +bO +TK +TK +TK +TK +TK +bO +bO +TK +TK +bO +bO +bO +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +bO +ZJ +ZJ +bO +bO +ZJ +ZJ +ZJ +ZJ +Pb +TK +TK +bO +TK +TK +LU +LU +LU +LU +"} +(103,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +vI +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +mz +mz +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +ZJ +TK +TK +TK +TK +TK +TK +dU +VK +aV +dU +Ez +BH +BH +xf +jy +lD +tQ +HA +as +as +jy +as +as +jy +lD +jy +SS +du +eZ +un +FE +ls +UJ +iZ +aw +eK +gN +bh +zc +nN +Qc +as +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +nx +CO +bO +bO +TK +TK +TK +TK +ZJ +ZJ +bO +bO +bO +TK +bO +bO +bO +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +bO +ZJ +bO +bO +bO +va +kD +ZJ +Pb +TK +TK +TK +bO +bO +TK +LU +LU +LU +LU +"} +(104,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +mz +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +xd +wu +xd +mz +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +Aq +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +dU +mR +Ge +cc +BH +BH +ZJ +xf +lD +ZG +ZG +as +tQ +lD +lD +lD +lD +lD +lD +lD +hE +an +as +as +Ol +SH +as +as +as +Pd +wN +Pd +ZF +pc +as +as +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +bO +bO +TK +TK +TK +TK +TK +EI +ZJ +bO +bO +bO +bO +bO +bO +bO +nx +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +bO +bO +bO +Du +ij +WR +TK +TK +TK +TK +TK +bO +TK +TK +LU +LU +LU +"} +(105,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +mz +mz +mz +BH +mz +mz +ZJ +BH +BH +BH +BH +xd +xd +GF +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mL +mL +mL +xd +wu +cY +xd +mz +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +nx +VK +vb +Kp +vx +dU +BH +ZJ +VB +lD +lD +hE +jy +tQ +tQ +lD +lD +lD +lD +lD +lD +BM +as +as +gu +oR +lW +Eq +KO +as +as +as +as +as +as +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +TK +TK +TK +TK +TK +TK +WR +NY +BK +nx +bO +bO +bO +bO +bO +bO +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +CO +bO +bO +bO +kD +pJ +TK +TK +TK +TK +TK +bO +bO +TK +TK +LU +LU +LU +"} +(106,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +OK +OK +OK +xd +xd +wu +mz +BH +fD +Xq +BH +BH +Aq +BH +fi +xd +tD +tD +mz +BH +BH +BH +BH +BH +BH +BH +BH +mz +xd +wu +Tm +tD +tD +tD +GF +xd +wu +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +ZJ +ZC +ZC +rg +aV +BH +BH +BH +xf +lD +lD +jN +as +aH +Ik +as +lD +lD +lD +lD +lD +lD +as +rM +sU +mi +HU +Gg +OS +JO +as +UE +kp +PO +as +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +WR +Kp +ZJ +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +ZJ +ZJ +ZJ +ZJ +WR +WR +WR +kD +Za +EI +TK +TK +TK +TK +TK +bO +bO +TK +LU +LU +LU +"} +(107,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +mz +mz +OK +GF +GF +GF +GF +GF +xd +OK +BH +BH +BH +BH +IX +vI +Dt +sP +GF +wu +tD +mz +BH +BH +BH +BH +BH +BH +BH +BH +mz +wu +wu +GF +tD +tD +tD +GF +wu +wu +OK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +ZJ +nx +EV +Ez +gf +ZC +dU +BH +BH +xf +lD +FO +aH +TQ +Ik +Ik +bU +Ik +CE +lD +lD +aH +AX +as +as +Wd +lW +KB +Pn +Rn +Ol +as +Rk +RR +Zn +fW +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +WR +wD +ZJ +nx +bO +bO +bO +bO +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +ZJ +zJ +wi +dp +Pp +kD +kD +WR +TK +TK +TK +TK +TK +bO +bO +TK +LU +LU +LU +"} +(108,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +OK +OK +mz +mz +xd +Bk +xd +GF +GF +xd +wu +GF +xd +xd +mL +ZJ +ET +vI +ET +Pl +ZJ +BH +vI +xd +tD +tD +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +mz +PE +GF +GF +VC +tD +tD +tD +GF +TU +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +Aq +ZJ +ZJ +ZJ +ZJ +BH +rQ +TZ +XF +dU +BH +BH +xf +FO +Ik +tQ +Xa +hE +HJ +kg +Tv +tQ +aH +lD +lD +Ik +UB +as +bU +TQ +nl +PB +Rk +yD +fk +Rk +Md +YI +as +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +bO +TK +TK +TK +TK +TK +TK +TK +fo +ZJ +nx +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +bO +bO +bO +WR +Ii +kD +kD +kD +kD +zJ +ZJ +Xi +ZJ +ZJ +TK +TK +bO +bO +bO +TK +LU +LU +LU +"} +(109,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +xd +Bk +GF +GF +GF +wu +wu +xd +GF +US +GF +GF +xd +mL +nx +BH +BH +BH +ET +ET +vI +RU +BH +tD +tD +vI +ZJ +BH +BH +BH +BH +BH +BH +BH +mL +SC +GF +wu +wu +VV +GF +xd +GF +wu +OK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +nx +Aq +BH +uR +Un +NR +dU +BH +BH +xf +ZG +hE +aH +TQ +yW +tQ +TQ +tQ +lD +lD +lD +lD +tQ +as +as +ER +lW +Wb +Rn +Rn +as +as +Zn +Rk +GH +gj +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +ZJ +hu +bO +TK +TK +TK +TK +TK +TK +TK +Kp +EI +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +bO +bO +TK +TK +TK +TK +TK +bO +bO +bO +bO +bO +qj +kD +gc +dQ +kD +kD +bT +aV +WR +ZJ +bO +TK +TK +bO +bO +bO +TK +LU +LU +LU +"} +(110,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +OK +mz +ZJ +wu +xd +GF +FF +VV +xd +mz +mz +mz +mz +mz +OK +mz +mz +BH +BH +OK +mz +mz +BH +BH +BH +BH +xd +GF +vI +ZJ +nx +BH +BH +BH +BH +ZJ +ET +ET +mL +mz +mz +mz +xH +Bk +xd +VV +GF +mz +BH +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +Aq +ZJ +BH +BH +uR +Om +XB +BH +BH +xf +yW +Ix +hE +as +yW +lD +as +lD +lD +lD +lD +lD +tQ +as +QO +so +JU +Xu +Gg +Ke +rM +as +kU +aD +SY +as +as +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +ZJ +bO +bO +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +bO +bO +bO +bO +EI +ua +wo +BE +BL +Qu +dG +aV +WR +bO +bO +bO +bO +bO +bO +TK +TK +LU +LU +LU +"} +(111,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +OK +OK +nx +ZJ +GF +GF +Sl +dz +mz +mz +mz +BH +BH +BH +nx +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +ZJ +ET +ZJ +mz +BH +BH +ZJ +ET +vI +ET +fi +mz +mz +BH +mz +mz +mz +xd +xd +OK +OK +vI +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +BH +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +BH +BH +BH +hM +BH +BH +BH +BH +xf +as +as +as +as +lD +lD +as +lD +lD +lD +jy +jy +lD +as +as +Jt +ef +lW +ZE +nm +as +as +as +as +as +as +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +ZJ +TK +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +va +ZJ +TK +TK +TK +bO +bO +bO +bO +bO +ZJ +WR +WR +WR +gf +EI +nQ +EI +bO +TK +TK +bO +bO +bO +TK +LU +LU +LU +LU +"} +(112,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +ZJ +Xq +GF +xd +xd +mz +mz +mz +BH +BH +BH +BH +BH +BH +ZJ +nx +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ET +fi +vI +BH +Ks +Xq +vI +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +vI +OK +ZJ +BH +vI +BH +BH +Aq +ZJ +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +ZJ +TK +BH +BH +TK +TK +ZJ +ZJ +TK +ZJ +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +lD +lD +lD +as +aH +lD +lD +lD +lD +lD +lD +lD +lD +lD +jN +as +as +Ol +KF +as +as +as +lD +lD +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +CO +bO +ZJ +ZJ +ZJ +bO +bO +bO +bO +TK +TK +TK +TK +TK +bO +ZJ +ZJ +ZJ +ZJ +bO +bO +ZJ +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +bO +bO +bO +ZJ +va +ZJ +ZJ +ZJ +ZJ +nQ +ux +ZJ +bO +bO +bO +bO +bO +TK +TK +LU +LU +LU +LU +"} +(113,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +ZJ +mL +ZJ +xd +wu +wu +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +vI +ET +ZJ +ZH +ZJ +nx +ZJ +BH +BH +BH +Aq +BH +BH +BH +BH +BH +BH +mz +mz +OK +vI +vI +ZJ +BH +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +ZJ +BH +BH +TK +TK +TK +ZJ +TK +TK +ZJ +TK +TK +TK +TK +BH +ZJ +Aq +BH +BH +BH +BH +LU +lD +lD +Rg +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +Ik +pQ +HA +Ww +oG +as +Wz +as +lD +lD +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +nx +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +bO +bO +TK +TK +TK +TK +TK +ZJ +bO +bO +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +bO +bO +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +VD +bO +bO +bO +bO +bO +bO +TK +TK +TK +LU +LU +LU +LU +LU +"} +(114,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +Aq +Xq +mz +mz +Se +mz +mz +xd +xd +mz +BH +BH +BH +BH +BH +BH +BH +BH +Aq +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +fi +nx +ZJ +ET +ET +ET +ZJ +BH +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +Xq +In +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +BH +ZJ +BH +TK +TK +ZJ +ZJ +TK +TK +ZJ +ZJ +ZJ +TK +TK +BH +ZJ +BH +BH +BH +BH +LU +LU +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +tQ +tQ +lj +iD +nl +Ce +PY +as +lD +lD +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +ZJ +Aq +ZJ +bO +bO +TK +TK +TK +TK +TK +ZJ +bO +bO +bO +bO +bO +bO +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +TK +TK +TK +Aq +ZJ +kD +ZJ +ZJ +aV +vb +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +"} +(115,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +Xq +mz +OK +OK +OK +mz +Ks +Xq +OK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +Xq +ET +Xq +vI +ZJ +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +vI +Lm +vI +BH +BH +Aq +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +BH +BH +BH +TK +TK +ZJ +ZJ +ZJ +TK +TK +ZJ +TK +TK +TK +TK +BH +BH +BH +BH +BH +LU +LU +lD +lD +lD +lD +lD +lD +lD +lD +Ol +lD +XO +tQ +lD +FG +tQ +jF +as +xq +vr +as +SR +as +lD +lD +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +Aq +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +bO +TK +TK +TK +TK +TK +va +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +ZJ +TK +TK +TK +ZJ +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +aV +nx +nx +vb +TK +TK +TK +LU +LU +LU +LU +LU +LU +"} +(116,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +Xq +Xq +mz +GF +mz +GF +mz +Xq +ZJ +ZJ +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +Xq +ZJ +ZJ +ZJ +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +Ks +Xq +ZJ +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +ZJ +TK +TK +TK +TK +BH +BH +BH +BH +LU +LU +LU +lD +lD +aH +aH +tQ +lD +lD +lD +as +Ol +CB +HA +as +as +as +as +as +as +zF +as +as +as +lD +lD +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +bO +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +bO +bO +bO +bO +bO +bO +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +bO +bO +bO +bO +bO +nx +TK +TK +LU +LU +LU +LU +LU +"} +(117,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +OK +mz +GF +GF +FF +mz +mz +ZJ +nx +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +Aq +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +Xq +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +ZJ +TK +TK +BH +ZJ +TK +TK +TK +TK +TK +BH +BH +BH +BH +LU +LU +lD +lD +Ol +Ol +lD +hE +lD +tQ +as +SI +VR +AO +as +uS +aK +Qp +as +lE +Rg +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +nx +CO +ZJ +ZJ +bO +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +bO +TK +bO +bO +bO +TK +TK +ZJ +Aq +ZJ +ZJ +ZJ +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +CO +nx +TK +TK +LU +LU +LU +LU +"} +(118,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +nx +OK +OK +GF +FF +GF +GF +GF +mz +mz +In +OK +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +ZJ +Hw +ET +vI +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +lD +ZG +lD +TQ +ug +ek +tQ +eo +as +je +Rk +iW +as +as +Cd +as +as +HZ +gs +jy +lD +lD +lD +lD +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +bO +bO +bO +bO +bO +ZJ +ZJ +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +bO +bO +TK +TK +TK +TK +TK +TK +ZJ +ZJ +va +ZJ +TK +TK +TK +bO +bO +bO +bO +hu +ZJ +ZJ +TK +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +TK +TK +TK +LU +LU +"} +(119,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +GF +nt +GF +GF +GF +Tz +GF +mz +mz +OK +BH +BH +BH +BH +BH +BH +BH +ZJ +nx +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +Xq +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +vI +ET +vI +BH +BH +BH +BH +BH +BH +LU +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +Aq +BH +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +lD +Eu +tQ +ra +lD +Ik +eo +lD +as +Jv +xg +vy +AG +Yq +Vn +rZ +ot +dP +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +bO +bO +TK +TK +ZJ +ZJ +ZJ +ZJ +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +ZJ +Aq +bO +bO +bO +TK +TK +TK +TK +TK +ZJ +ZJ +nx +ZJ +TK +TK +bO +bO +bO +bO +bO +ZJ +ZJ +TK +TK +TK +TK +TK +bO +bO +bO +bO +TK +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +vi +TK +LU +LU +"} +(120,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +mz +mz +GF +GF +GF +GF +GF +GF +GF +wu +GF +mz +mz +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +nx +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ET +vI +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +ZJ +ZJ +Aq +ZJ +TK +TK +TK +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +xf +as +jy +as +jy +ot +as +as +as +Jj +Fe +Gk +Ol +ik +cA +gs +jy +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +bO +bO +bO +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +bO +bO +bO +bO +bO +TK +TK +TK +TK +bO +bO +bO +bO +TK +TK +TK +TK +TK +Pb +aV +ZJ +nx +ZJ +ZJ +sy +TK +LU +LU +LU +"} +(121,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +mz +oV +FF +GF +GF +GF +AE +GF +Vt +GF +wu +GF +mz +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +mz +ZJ +ZJ +ZJ +Xq +ZJ +Aq +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +vI +In +ET +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +BH +TK +BH +BH +BH +BH +BH +BH +BH +xf +tL +yR +Rn +HW +jP +gP +YS +as +Nn +dP +lI +as +as +as +as +as +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +ZJ +ZJ +TK +TK +TK +bO +bO +bO +ZJ +ZJ +bO +bO +bO +bO +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +TK +TK +TK +kD +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +"} +(122,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +mz +AD +GF +GF +bg +Cv +MU +GF +bg +xd +GF +Vq +mz +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +ZJ +ZJ +Xq +ZJ +BH +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +Xl +ET +ET +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +BH +ZJ +ZJ +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +xf +rs +yR +Pf +bf +xS +Vv +ur +Ol +yJ +Rk +Yb +as +Ph +we +xf +xf +xf +xf +oY +xi +oc +lD +lD +lD +lD +lD +lD +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +ZJ +ZJ +nx +ZJ +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +bO +bO +bO +ZJ +ZJ +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +TK +TK +TK +TK +Aq +ZJ +TK +TK +LU +LU +TK +LU +LU +LU +LU +"} +(123,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +mz +cj +GF +GF +Vt +GF +Gh +GF +GF +GF +FF +GF +mz +BH +BH +BH +BH +BH +ZJ +mz +mz +OK +BH +ZJ +mz +BH +BH +BH +mz +Xq +Xq +BH +mz +nx +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +NE +ET +KJ +ET +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +ZJ +Aq +ZJ +ZJ +ZJ +TK +TK +BH +BH +BH +ZJ +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +xf +as +as +as +oz +Rk +ih +BF +Ol +IF +dP +Pv +if +Jf +VL +bq +BH +BH +BH +BH +BH +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +TK +bO +bO +ZJ +CO +ZJ +ZJ +bO +bO +bO +bO +ZJ +va +ZJ +ZJ +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(124,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +ZJ +BH +mz +ID +jn +GF +MU +Jh +XU +Qr +MU +GF +GF +FF +mz +BH +BH +BH +BH +BH +ZJ +OK +ZJ +ZJ +OK +mf +mz +BH +BH +BH +mz +BH +Xq +BH +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +NE +ET +nz +yz +DH +mz +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +TK +ZJ +ZJ +ZJ +TK +TK +BH +ZJ +BH +TK +ZJ +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +xf +AL +tw +Rn +oz +Rk +xS +vy +AG +RH +Rk +Kd +Rk +dk +VL +bq +BH +BH +BH +BH +BH +BH +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +ZJ +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +TK +TK +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +bO +ZJ +ZJ +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +TK +TK +TK +ZJ +ZJ +fo +ZJ +ZJ +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(125,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +ZJ +BH +mz +iw +GF +GF +GF +GF +Fl +GF +GF +GF +GF +GF +mz +BH +BH +BH +BH +ZJ +ZJ +OK +ZJ +ZJ +mz +mf +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +DH +UI +ET +ET +Gw +mz +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +BH +BH +Aq +TK +TK +ZJ +ZJ +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +xf +Cg +yR +Pf +TB +pw +cv +fX +Cn +JW +cv +cv +Jn +xg +JD +bq +BH +BH +BH +BH +BH +BH +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +hu +ZJ +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +ZJ +bO +bO +bO +ZJ +ZJ +ZJ +Aq +ZJ +ZJ +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +nx +ZJ +nx +ZJ +Pb +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(126,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +ZJ +mz +mz +Bk +GF +bg +US +MU +GF +bg +GF +GF +mz +mz +BH +BH +BH +ZJ +ZJ +OK +mz +nx +ZJ +OK +ET +mz +mz +BH +BH +BH +BH +BH +yz +mz +ZJ +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +DH +ET +ET +ET +sY +mz +mz +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +Aq +BH +BH +ZJ +BH +ZJ +ZJ +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +xf +as +as +as +KR +WX +as +as +as +as +as +as +as +sK +as +xf +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +Aq +ZJ +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +ZJ +bO +bO +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +Aq +ZJ +ZJ +ZJ +ZJ +TK +TK +ZJ +Pb +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(127,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +mz +mz +GF +GF +FF +GF +GF +Vt +FF +mz +mz +BH +BH +BH +Aq +ZJ +mz +mz +ZJ +ZJ +ZJ +OK +ET +ZJ +mz +mz +mz +OK +ZJ +ET +mf +mz +ZJ +ZJ +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +ZJ +ET +ET +ET +YM +mz +mz +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +xf +AL +yR +JY +GG +sF +as +Hg +Kz +Tc +xk +as +LM +WV +fm +xf +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +ZJ +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +bO +bO +ZJ +TK +TK +ZJ +ZJ +bO +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ea +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +TK +TK +TK +TK +TK +TK +aV +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(128,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +mz +GF +Vt +GF +Tz +Nt +GF +GF +mz +BH +BH +BH +BH +BH +ZJ +mz +ZJ +ZJ +ZJ +ZJ +mz +ZJ +ET +ZJ +ZJ +ZJ +nx +ZJ +ZJ +ZJ +mz +ZJ +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +OK +ZJ +ET +vI +DH +mz +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +ZJ +ZJ +Aq +ZJ +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +xf +yG +qP +Gq +uk +GA +Ce +dP +dP +dP +dP +as +sn +Rk +iM +xf +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +va +TK +ZJ +ZJ +TK +TK +bO +bO +bO +ZJ +TK +ZJ +bO +bO +ZJ +ZJ +ZJ +va +ZJ +TK +TK +TK +ZJ +ZJ +ZJ +TK +ZJ +ZJ +bO +bO +bO +bO +bO +bO +ZJ +ZJ +TK +TK +TK +TK +TK +TK +km +ed +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(129,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +OK +GF +GF +GF +GF +GF +GF +GF +mz +BH +BH +BH +BH +BH +BH +mz +ZJ +ZJ +ZJ +ZJ +OK +ZJ +ZJ +Xq +ZJ +mz +mz +mz +mz +ET +BH +ZJ +BH +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +VX +In +mz +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +xf +xf +xf +xf +Ox +ns +xf +xf +xf +xf +xf +xf +xf +Oo +xf +xf +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +ZJ +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +ZJ +TK +TK +bO +bO +bO +bO +bO +ZJ +bO +bO +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +nx +TK +TK +TK +TK +ZJ +ZJ +bO +bO +bO +bO +ZJ +TK +TK +TK +TK +TK +TK +TK +gv +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(130,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +OK +VV +GF +GF +GF +xd +GF +QN +mz +BH +BH +BH +BH +BH +BH +mz +ZJ +ZJ +nx +mz +mz +mz +mz +mz +ZJ +ZJ +mf +mf +mz +BH +mz +ZJ +ZJ +nx +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +OK +BH +ET +ZJ +OK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +nu +NU +Ge +tx +nu +BH +BH +BH +BH +BH +ZJ +ZJ +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +ZJ +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +bO +bO +bO +TK +TK +bO +bO +bO +bO +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +va +ZJ +ZJ +ZJ +bO +bO +TK +TK +TK +TK +TK +TK +TK +Pb +Ew +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(131,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +mz +mz +xd +FF +hO +wu +xd +mz +mz +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +mz +HG +HG +HG +mz +mz +mz +mz +ET +mz +BH +OK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +OK +BH +ET +BH +BH +BH +Aq +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +ZJ +BH +BH +nu +nu +vZ +aV +NY +nu +nu +BH +BH +BH +ZJ +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +ZJ +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +bO +bO +TK +TK +TK +TK +TK +bO +bO +CO +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +TK +TK +TK +TK +TK +TK +Pb +ZJ +ZJ +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(132,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +GF +xd +Ks +mz +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +HG +HG +HG +Yd +HG +HG +HG +HG +mz +ZJ +mz +ZJ +mz +mz +mz +mz +mz +mz +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +qM +ET +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +mz +ZJ +ZJ +Xq +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +nu +Fr +pE +uv +ds +Gj +nu +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +ZJ +ZJ +TK +ZJ +TK +TK +TK +TK +TK +bO +bO +bO +TK +TK +TK +TK +TK +bO +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +TK +TK +bO +bO +TK +TK +Pb +Hm +Ca +aV +fo +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(133,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +Ba +mz +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +mz +HG +yS +HG +kf +Wj +HG +Wj +HG +Ks +GF +mz +ZJ +ZJ +ZJ +Xq +Xq +BH +Xq +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +nx +ET +ZJ +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +mz +Xq +ZJ +ZJ +mz +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +Aq +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +NN +Do +BH +Og +dU +zm +Yx +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +Aq +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +bO +TK +TK +TK +TK +TK +TK +TK +bO +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +aV +ZJ +Hm +ix +TK +TK +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(134,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +Sl +mL +mL +mL +ZJ +OK +BH +BH +BH +BH +BH +BH +BH +mz +ZJ +mz +HG +yS +XK +kf +kf +UP +kf +Bg +GF +GF +mz +yz +ET +ET +ZJ +Xq +Xq +Xq +mf +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +vI +ET +ZJ +mz +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +pd +sz +ZJ +ZJ +ZJ +mz +TK +TK +TK +TK +TK +TK +ZJ +ZJ +Aq +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +XZ +XL +BH +BH +NN +vZ +Or +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +ZJ +ZJ +ZJ +hu +ZJ +ZJ +TK +TK +bO +bO +bO +bO +bO +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +ZJ +Pw +ZJ +bO +aV +ZJ +ZJ +Sk +TK +TK +TK +ZJ +ZJ +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(135,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +OK +ZJ +vI +Xq +nx +ET +ZJ +mz +BH +BH +BH +BH +BH +BH +mz +ET +mz +HG +yS +HG +kf +Wj +HG +Yd +HG +GF +mf +mz +ZJ +ZJ +BH +BH +mf +mf +Xq +Xq +Xq +Xq +mf +BH +BH +nx +Xq +BH +BH +BH +BH +ZJ +ET +ZJ +qM +nx +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +pd +sz +ZJ +Aq +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +TK +ZJ +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +uO +aV +Or +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +Aq +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +bO +bO +bO +bO +TK +TK +TK +ZJ +ZJ +ZJ +bO +bO +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +EI +EI +no +WR +WR +Kp +nx +ZJ +Pw +Zq +ZJ +TK +ZJ +nx +ZJ +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(136,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +OK +ZJ +dz +rx +ET +vI +vI +mz +BH +BH +BH +BH +BH +BH +mz +ET +mz +HG +HG +HG +Wj +HG +HG +HG +HG +mz +GF +mz +ZJ +mz +mz +OK +mz +mz +BH +ZJ +Xq +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +nx +Xq +mz +ZJ +Xq +vI +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +mz +ZJ +ZJ +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +Th +BH +uO +vZ +Or +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +ZJ +uW +ZJ +ZJ +BU +TK +TK +TK +bO +bO +bO +bO +TK +TK +TK +ZJ +bO +ZJ +ZJ +bO +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +bO +bO +bO +bO +bO +gc +Jg +UM +Hf +EI +Uy +ZJ +WA +gc +ZJ +ZJ +ZJ +CL +ZJ +ZJ +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(137,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +Sl +ZJ +ET +ET +ZJ +vI +mz +BH +BH +BH +BH +BH +ZJ +mz +ET +mz +mz +mz +HG +HG +HG +mz +mz +mz +mz +GF +mz +ZJ +mz +nD +ja +nD +mz +BH +Xq +BH +ZJ +Xq +BH +BH +BH +BH +BH +ZJ +Xq +Xq +mz +DR +ET +ZJ +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +mz +ZJ +Xq +mz +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +XZ +au +oB +Yx +nu +aV +Yx +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +bO +bO +bO +bO +bO +bO +TK +ZJ +ZJ +bO +bO +ZJ +bO +bO +TK +TK +TK +TK +TK +TK +TK +WR +WR +Xi +bO +bO +ZJ +bO +wi +So +nO +zp +SO +ZJ +ZJ +ZJ +ZJ +CL +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(138,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +OK +OK +ZJ +ZJ +ET +ZJ +ZJ +nx +mz +mz +BH +BH +BH +BH +ZJ +ET +ET +ET +ET +mz +mz +mz +mz +mz +ZJ +GF +GF +GF +ZJ +nx +mz +ja +be +ja +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +Xq +BH +Ks +ET +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +pd +sz +ZJ +ZJ +TK +TK +mz +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +BH +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +nu +Zu +Qg +vZ +vZ +nJ +nu +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +bO +bO +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +ZJ +bO +bO +bO +TK +TK +TK +TK +TK +TK +WR +Sp +Mh +bO +bO +EI +bO +bO +aV +VD +mD +WR +Aq +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(139,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +OK +nx +ZJ +ZJ +vI +ET +ZJ +ZJ +ZJ +mz +BH +BH +BH +BH +ZJ +mz +ET +mz +Xq +ZJ +Xq +mf +ZJ +ET +ET +mz +mz +ET +ZJ +mz +mz +nD +GF +nD +OK +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +vI +ET +In +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +pd +sz +ZJ +ZJ +mz +TK +mz +sz +pd +TK +TK +TK +TK +TK +TK +Aq +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +nu +nu +aV +vZ +NY +nu +nu +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +ZJ +ZJ +ZJ +Aq +TK +bO +bO +bO +TK +TK +TK +TK +TK +bO +bO +bO +bO +bO +ZJ +bO +bO +bO +bO +TK +TK +TK +TK +nx +WO +fQ +MV +bO +bO +aV +na +nx +Kp +Kp +eF +WR +ZJ +bO +ZJ +ZJ +bO +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(140,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +ZJ +mz +mz +mz +Kc +mz +Xq +Xq +OK +BH +BH +BH +BH +ZJ +mz +ET +mz +mz +mz +mz +mz +mz +mz +mz +mz +ET +ET +mz +mz +ja +ja +tB +ja +OK +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +ET +ZJ +ET +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +mz +ZJ +Xq +ZJ +ZJ +ZJ +ZJ +sz +pd +TK +TK +TK +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +nu +Hl +aV +dC +nu +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +bO +bO +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +bO +bO +bO +ZJ +bO +bO +bO +bO +bO +TK +TK +nx +ZJ +cq +Kp +aV +ZJ +bO +bO +aV +aV +nO +ZJ +VT +WR +ZJ +bO +ZJ +bO +bO +bO +bO +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(141,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +ZJ +mz +bd +tD +tD +mz +mz +ZJ +mz +BH +BH +BH +BH +BH +mz +ZJ +nx +ZJ +mz +BH +BH +ET +ZJ +mf +ZJ +vI +nx +OK +ja +ja +up +ja +ja +mz +ZJ +nx +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +ET +vI +ET +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +mz +ZJ +ZJ +Xq +Aq +ZJ +TK +ZJ +mz +TK +TK +TK +TK +TK +TK +TK +TK +BH +BH +BH +BH +ZJ +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +xf +xf +Oo +xf +xf +as +as +as +as +as +as +BH +BH +BH +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +bO +bO +bO +bO +ZJ +TK +TK +TK +CO +bO +bO +bO +CO +ZJ +bO +bO +bO +bO +bO +TK +TK +TK +WR +gg +UM +SO +bO +BK +DZ +qo +aJ +aJ +UM +qj +ZJ +bO +bO +bO +bO +bO +bO +bO +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(142,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +OK +ZJ +mz +bd +rf +tD +eq +mz +Ks +OK +BH +BH +BH +BH +BH +mz +mz +ZJ +ET +ZJ +ZJ +Xq +mf +Xq +BH +mz +OK +ZJ +OK +ja +ja +EG +EG +EG +mz +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +ET +ET +ET +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +ZJ +ZJ +Xq +TK +TK +TK +ZJ +mz +TK +TK +TK +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +ZJ +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +xf +rX +bM +WD +xf +TQ +TQ +as +lD +lD +as +LU +BH +BH +ZJ +ZJ +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +bO +bO +bO +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +bO +bO +bO +ZJ +Aq +bO +bO +TK +TK +TK +TK +TK +WR +dw +aV +bO +bO +EI +WR +WR +EI +qj +Aq +ZJ +ZJ +bO +ZJ +bO +bO +bO +bO +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(143,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +mz +mz +mz +VS +mz +mz +mz +OK +BH +BH +BH +BH +BH +ZJ +mz +mz +mz +mz +mz +ZJ +ZJ +ZJ +mz +mz +vI +vI +mz +mz +mz +OK +mz +mz +mz +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +In +ET +ET +ET +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +ZJ +ZJ +ZJ +ZJ +ZJ +Xq +Xq +TK +TK +mz +sz +pd +TK +TK +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +ZJ +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +hD +pq +fs +yF +zZ +lD +fS +tQ +lD +lD +lD +LU +LU +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +va +ZJ +ZJ +TK +TK +TK +bO +bO +bO +nx +ZJ +TK +TK +TK +TK +ZJ +ZJ +bO +bO +ZJ +ZJ +bO +bO +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +TK +TK +TK +TK +TK +bO +ZJ +bO +bO +ZJ +bO +bO +bO +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(144,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +aW +mz +yf +Qy +Xe +tD +Lj +mz +Xq +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +nx +Ks +ZJ +ZJ +BH +ZJ +Xq +ZJ +BH +BH +ZJ +ZJ +ZJ +ZJ +ZJ +nx +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +OK +nx +BH +ET +ZJ +ZJ +nx +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +yS +LU +ZJ +LU +ZJ +ZJ +LU +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +ZJ +sz +pd +TK +TK +TK +TK +TK +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +hD +xg +Rk +Rk +zZ +wV +AO +lD +lD +lD +lD +LU +LU +LU +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +oi +ZJ +Aq +bO +TK +bO +bO +bO +bO +ZJ +ZJ +ZJ +TK +bO +bO +ZJ +ZJ +ZJ +ZJ +bO +bO +bO +bO +TK +bO +bO +TK +TK +TK +TK +TK +bO +TK +TK +TK +bO +bO +bO +bO +bO +bO +ZJ +bO +bO +bO +bO +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(145,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +tj +Cs +tD +tD +tD +fe +tD +mz +nx +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +vI +ET +BH +BH +BH +Xq +mf +BH +BH +BH +BH +nx +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +ZJ +Aq +ET +Xq +vI +ZJ +OK +ZJ +nx +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +yS +UY +ZJ +ZJ +ZJ +LU +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +Xq +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +ZJ +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +bq +IS +cs +dP +zZ +wV +th +AO +wy +wy +lD +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +nx +Aq +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +bO +TK +TK +bO +TK +TK +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +bO +bO +bO +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(146,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +mz +VZ +VZ +VZ +tD +tD +mz +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ET +vI +BH +BH +BH +BH +nx +mf +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +ZJ +PT +rv +Ks +PT +ZJ +OK +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +yS +UY +ZJ +LU +LU +LU +TK +mz +ZJ +mz +Xq +ZJ +mz +ZJ +mz +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +xf +nG +yO +Rk +as +TQ +TQ +dP +TQ +as +as +as +as +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +bO +bO +TK +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +CO +ZJ +ZJ +bO +bO +bO +bO +bO +TK +bO +bO +bO +bO +TK +bO +bO +bO +bO +bO +bO +TK +TK +bO +bO +ZJ +ZJ +bO +bO +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(147,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +mz +mz +mz +VS +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +nx +mf +ET +vI +BH +BH +BH +BH +BH +mf +Xq +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +vI +ZJ +fu +jZ +TD +Xq +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +yS +LU +LU +LU +LU +LU +TK +mz +mz +mz +ZJ +ZJ +mz +mz +mz +TK +TK +TK +TK +TK +TK +ZJ +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +xf +xf +xf +xf +xf +Tg +as +as +as +as +as +as +qe +ga +as +as +as +as +as +as +as +as +as +as +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +uB +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(148,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +mz +Uk +tD +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +xd +GF +xd +ZJ +BH +BH +BH +BH +BH +BH +BH +ZJ +Xq +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +ZJ +vI +tV +LO +HR +vI +vI +mz +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +ET +mz +ZJ +ET +mz +ET +mz +mz +TK +TK +TK +TK +TK +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +xf +dI +XP +qQ +xf +TF +HC +as +wH +FK +Bd +as +dP +dR +Ol +NK +Uq +as +Ol +rh +wL +vK +Ol +as +yS +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +ZJ +ZJ +ZJ +ZJ +ZJ +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +ZJ +ZJ +CL +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(149,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +nx +ZJ +Kc +WS +tD +Kc +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +GF +ty +GF +BH +BH +BH +BH +BH +BH +BH +Aq +BH +ZJ +nx +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +ZJ +ZJ +Xo +QS +fl +ET +vI +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +UN +ET +ET +ET +EZ +ET +wC +rA +mz +TK +TK +TK +TK +BH +BH +BH +BH +TK +BH +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +xf +OA +Rv +mj +xf +Rk +Rk +ot +Rk +MX +Rk +CA +yF +xg +OV +Rk +Rk +AG +Ls +dP +kH +Rk +kl +oQ +yS +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +LU +TK +LU +TK +TK +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +TK +ZJ +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +ZJ +ZJ +TK +nx +ZJ +ZJ +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(150,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +Kc +Kc +tD +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +vI +GF +ty +xd +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +mf +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +Aq +cm +ET +ET +Xq +ZJ +Aq +OK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +dh +ET +EZ +ET +sL +ht +ET +UN +mz +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +xf +Ku +JJ +SM +LR +Rk +xg +Ys +lk +xg +dP +Jl +Rk +ph +ka +Rk +yF +AG +RG +ph +Rk +dP +BG +oQ +yS +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +Aq +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +TK +TK +TK +ZJ +bO +bO +bO +bO +bO +bO +bO +bO +bO +bO +TK +TK +ZJ +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(151,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +Aq +BH +mz +OK +mz +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +GF +GF +vI +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +Xq +Xq +ZJ +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +ZJ +ET +DR +ZJ +cm +ET +mz +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +ET +nF +mf +IK +fM +ET +Xq +mz +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +xf +Dx +Ha +zk +xf +Rk +cK +as +Qm +zs +gI +as +Rk +Rk +jy +Tf +Vm +as +Ol +az +MF +oX +Ol +as +yS +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +sr +ZJ +ZJ +TK +Aq +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +bO +bO +bO +ZJ +ZJ +bO +bO +bO +bO +bO +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(152,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ET +vI +vI +nx +mz +BH +BH +BH +BH +BH +BH +Aq +GF +GF +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +Xq +ZJ +ZJ +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +ET +ZJ +nx +ZJ +Xq +ET +mz +nx +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +kh +wC +IK +wC +HX +qa +mz +mz +TK +TK +TK +TK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +xf +qd +SX +lm +xf +Yo +hZ +xf +xf +xf +xf +xf +HL +ga +xf +xf +xf +xf +as +as +as +as +as +as +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +LU +LU +LU +LU +TK +TK +TK +TK +ZJ +ZJ +va +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +CO +ZJ +ZJ +bO +bO +bO +bO +bO +bO +ZJ +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(153,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +nx +ZJ +Xq +mz +BH +BH +BH +BH +BH +BH +ET +GF +Cf +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +nx +Xq +Xq +ZJ +ZJ +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +ZJ +ZJ +vI +ZJ +ZJ +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +wC +ET +Xq +mz +mz +TK +TK +TK +TK +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +xf +xf +xf +xf +xf +xf +xf +xf +ZJ +ZJ +ZJ +xf +xf +xf +xf +ZJ +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +LU +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +Aq +ZJ +ZJ +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(154,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +ZJ +vI +ZJ +OK +OK +BH +BH +BH +BH +mz +xd +GF +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +fT +mf +fT +ZJ +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +nx +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mH +Ep +mz +TK +TK +TK +TK +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +GV +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(155,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +ZJ +ZJ +Ks +OK +BH +BH +BH +OK +GF +wu +xd +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +Xq +vI +Xq +ZJ +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +mz +BH +OK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +mz +mz +ye +Fk +mz +mz +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +pT +ZJ +TK +TK +TK +TK +TK +sr +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +Aq +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(156,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +GF +wu +xd +mz +BH +BH +BH +mz +GF +xd +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +Aq +ZJ +vI +fT +Xq +ZB +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +qT +mH +mz +LU +TK +TK +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +ZJ +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +sr +sr +sr +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(157,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +OK +xd +wu +xd +mf +OK +BH +BH +mz +vI +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +Xq +Xq +mf +Aq +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +Gi +KN +Xq +LU +LU +TK +TK +ZJ +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +sm +TK +TK +TK +TK +TK +TK +TK +TK +TK +nx +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +ZJ +ZJ +TK +ZJ +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(158,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +OK +GF +tD +xd +ty +BH +BH +BH +mz +vI +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +nx +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +Je +LU +mH +Xq +LU +LU +TK +TK +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +ZJ +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +ZJ +BH +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +sr +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +TK +nx +TK +ZJ +TK +TK +TK +ZJ +ZJ +ZJ +TK +ZJ +TK +ZJ +ZJ +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(159,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +GF +xd +GF +OK +BH +BH +mz +ET +OK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +UI +LU +LU +LU +TK +TK +TK +TK +ZJ +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +BH +BH +BH +BH +ZJ +ZJ +ZJ +BH +LU +BH +BH +BH +BH +ZJ +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +sr +aT +sr +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +ZJ +va +ZJ +ZJ +ZJ +Aq +ZJ +ZJ +TK +ZJ +ZJ +CO +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(160,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +OK +GF +wu +xd +OK +BH +BH +mz +xd +GF +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +BH +BH +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +BH +BH +BH +BH +ZJ +BH +BH +LU +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +sr +sr +ZJ +ZJ +ZJ +TK +TK +TK +sr +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +sr +TK +TK +TK +TK +TK +ko +ZJ +TK +TK +ZJ +TK +TK +GV +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +TK +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(161,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +mz +xd +xd +vI +mz +BH +BH +mz +wu +xd +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +BH +BH +TK +TK +ZJ +TK +TK +BH +BH +BH +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +LU +LU +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +aT +ZJ +ab +sr +TK +TK +sr +TK +TK +TK +TK +TK +TK +sr +sr +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +pT +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +GV +ZJ +Aq +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(162,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ET +ZJ +BH +BH +mz +xd +xd +nx +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +BH +BH +LU +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +sr +TK +TK +TK +ZJ +sr +TK +TK +ZJ +sr +TK +ZJ +TK +TK +TK +TK +TK +ZJ +Aq +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +va +ZJ +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(163,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +vI +ZJ +mz +mz +OK +mz +OK +OK +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +sr +ZJ +Aq +ZJ +ZJ +ZJ +ZJ +nx +ZJ +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +ZJ +ZJ +TK +TK +TK +Aq +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +nx +ZJ +TK +TK +TK +TK +va +ZJ +Aq +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(164,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +Aq +BH +BH +BH +nx +ZJ +yz +ty +GF +wu +wu +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +yN +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +sr +TK +TK +TK +ZJ +va +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +ZJ +ZJ +TK +TK +TK +TK +ZJ +va +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(165,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +BH +BH +mz +BH +BH +xd +GF +GF +GF +mz +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +ZJ +ZJ +sr +sr +sr +sr +ZJ +sr +sr +sr +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +nx +ZJ +va +ZJ +ZJ +ZJ +TK +ZJ +TK +TK +TK +TK +TK +TK +ZJ +ZJ +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(166,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +Aq +BH +BH +mz +BH +mz +mz +OK +mz +OK +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +sr +sr +va +sr +Aq +sr +TK +TK +sr +TK +TK +TK +ZJ +TK +TK +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +ZJ +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +ZJ +ZJ +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(167,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +sr +nu +NY +sr +nu +sr +TK +TK +TK +TK +TK +TK +ZJ +nx +ZJ +ZJ +ko +ZJ +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +TK +GV +ZJ +ZJ +nx +ZJ +TK +TK +TK +TK +ZJ +TK +TK +TK +TK +TK +ZJ +ko +ZJ +ZJ +hu +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(168,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +ZJ +BH +ZJ +ZJ +BH +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +sr +nu +GC +sr +nu +sr +TK +TK +TK +TK +TK +GV +ZJ +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +ZJ +TK +TK +TK +TK +CO +ZJ +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +va +TK +TK +TK +ZJ +TK +nx +ZJ +ZJ +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(169,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +sr +nu +sr +Vs +nu +sr +sr +sr +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +ZJ +TK +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +ZJ +nx +hu +ZJ +ZJ +TK +TK +ZJ +nx +va +ZJ +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(170,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +BH +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +nu +GC +CO +nu +TK +TK +sr +TK +TK +TK +TK +TK +ZJ +va +TK +TK +TK +TK +TK +ZJ +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +CO +ZJ +ZJ +va +TK +TK +TK +hu +ZJ +ZJ +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(171,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +TK +LU +LU +nu +Ge +Vs +nu +LU +TK +TK +TK +TK +LU +LU +LU +TK +ZJ +ZJ +TK +TK +TK +ZJ +ZJ +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(172,1,1) = {" +LU +LU +LU +LU +LU +BH +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +TK +LU +LU +LU +nu +OF +OF +nu +LU +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(173,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +yS +yS +yS +yS +LU +LU +LU +LU +LU +LU +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +LU +LU +LU +LU +LU +LU +LU +"} +(174,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(175,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(176,1,1) = {" +LU +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(177,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(178,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(179,1,1) = {" +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(180,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +Sl +zy +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(181,1,1) = {" +LU +LU +LU +LU +LU +LU +BH +BH +BH +wT +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +ZJ +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(182,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +BH +BH +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +BH +BH +BH +BH +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(183,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +BH +ZJ +LU +LU +LU +LU +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +BH +BH +LU +LU +LU +LU +LU +BH +BH +BH +LU +BH +BH +BH +LU +LU +LU +BH +BH +BH +BH +BH +LU +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +BH +BH +BH +BH +BH +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(184,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +BH +BH +BH +BH +LU +LU +LU +LU +LU +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +BH +BH +LU +LU +LU +LU +LU +LU +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +BH +BH +LU +LU +LU +LU +BH +BH +LU +LU +BH +BH +LU +LU +LU +LU +BH +LU +LU +LU +BH +BH +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(185,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +BH +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(186,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(187,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(188,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(189,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} +(190,1,1) = {" +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +"} diff --git a/_maps/map_files220/RandomZLevels/gate_lizard.dmm b/_maps/map_files220/RandomZLevels/gate_lizard.dmm new file mode 100644 index 000000000000..b1c99dd4b823 --- /dev/null +++ b/_maps/map_files220/RandomZLevels/gate_lizard.dmm @@ -0,0 +1,60633 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aae" = ( +/obj/structure/flora/tree/jungle, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/cave) +"aaw" = ( +/obj/structure/mineral_door/wood, +/obj/structure/barricade/wooden/crude, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"aaG" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"aaN" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"abm" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_full" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"abv" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"abx" = ( +/mob/living/simple_animal/hostile/pirate/ranged{ + loot = null + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"adi" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"adt" = ( +/obj/machinery/light_construct/small/south, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"adP" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"aga" = ( +/obj/effect/baseturf_helper/asteroid, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"agV" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/structure/table_frame, +/obj/item/reagent_containers/syringe{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/clothing/mask/surgical, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/jungle_planet/inside/complex) +"ahk" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"ahF" = ( +/obj/structure/chair/office{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "dark" + }, +/area/awaymission/jungle_planet/inside/complex) +"ahG" = ( +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 1 + }, +/area/awaymission/jungle_planet/outside/river) +"ahX" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "swamp1" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"aix" = ( +/obj/structure/flora/junglebush, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"aiM" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/door_control/shutter/north{ + id = "Main in"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"ajt" = ( +/obj/item/reagent_containers/food/drinks/oilcan, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"ajx" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"ajJ" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/structure/railing{ + dir = 2 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"akj" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"aks" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"akZ" = ( +/obj/effect/decal/warning_stripes/north, +/obj/effect/turf_decal/caution/stand_clear, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"alw" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"amv" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/camera{ + network = list("MC-16"); + dir = 5; + c_tag = "Engineering Department" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"anu" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside) +"anV" = ( +/obj/structure/falsewall/reinforced{ + name = "Suspicious-looking wall" + }, +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"aoh" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"aoG" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/small) +"apx" = ( +/obj/item/shard, +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/paper{ + pixel_x = 17 + }, +/obj/structure/table_frame, +/obj/item/phone{ + pixel_x = 16; + pixel_y = -9 + }, +/obj/item/clothing/accessory/stethoscope, +/obj/machinery/door_control/shutter/west{ + id = "CMDgate"; + req_access = list(271) + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/awaymission/jungle_planet/inside/complex) +"apz" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 5 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"apC" = ( +/obj/structure/mineral_door/wood, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"arp" = ( +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"aru" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"arP" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"ast" = ( +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"asV" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 4 + }, +/area/awaymission/jungle_planet/outside/waterfall) +"asY" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"ati" = ( +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"atM" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/largecrate, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"atT" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box/empty, +/obj/item/reagent_containers/food/drinks/cans/cola{ + pixel_y = 9; + pixel_x = 13 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/awaymission/jungle_planet/outside/abandoned) +"aud" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"aug" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"auq" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/closet{ + opened = 1 + }, +/obj/item/clothing/head/soft, +/obj/item/clothing/gloves/color/black, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside) +"awp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"axq" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "pathway12" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"azA" = ( +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/river) +"azN" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"azY" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"aBV" = ( +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 8 + }, +/area/awaymission/jungle_planet/outside/river) +"aDI" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"aEA" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"aFo" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/bluegrid{ + icon_state = "bcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"aFD" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"aGh" = ( +/obj/item/broken_bottle, +/obj/item/broken_bottle{ + pixel_x = 12; + pixel_y = 9 + }, +/obj/item/broken_bottle{ + pixel_x = 12 + }, +/obj/machinery/light/directional/west, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"aGN" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "pathway2" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"aGR" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "lake1" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"aHb" = ( +/obj/structure/sign/explosives/alt{ + pixel_x = -32 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"aHl" = ( +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"aHq" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"aId" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"aIo" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/small) +"aIM" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/fifty, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"aIU" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/jungle_planet/outside/abandoned) +"aJg" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"aJz" = ( +/obj/effect/turf_decal/caution, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"aKg" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"aLd" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"aLI" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15 + }, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/river) +"aLO" = ( +/obj/structure/table_frame, +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/awaymission/jungle_planet/inside/complex) +"aLT" = ( +/obj/item/mod/construction/broken_core, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"aMB" = ( +/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/plating, +/area/awaymission/jungle_planet/inside/complex) +"aMI" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"aNk" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"aOn" = ( +/obj/item/clothing/accessory/necklace/skullcodpiece, +/obj/item/clothing/accessory/necklace/talisman, +/obj/item/clothing/accessory/necklace/skullcodpiece, +/obj/item/clothing/accessory/necklace/talisman, +/obj/structure/closet/crate/wooden/wooden_crate, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"aPj" = ( +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"aPk" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"aPo" = ( +/obj/effect/turf_decal/arrows, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"aPs" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"aRy" = ( +/obj/machinery/door/airlock/mining{ + locked = 1; + name = "Main Hangar"; + req_access = list(271); + id_tag = "commanddoor" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "Main in"; + requires_power = 0 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"aSb" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"aUn" = ( +/obj/structure/flora/junglebush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/small) +"aUt" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"aUD" = ( +/turf/simulated/wall/mineral/wood, +/area/awaymission/jungle_planet/outside/cave) +"aUN" = ( +/obj/structure/sign/poster/official/random/east, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"aVe" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"aVq" = ( +/obj/structure/door_assembly/door_assembly_hatch{ + anchored = 1 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/mineral/plastitanium, +/area/awaymission/jungle_planet/outside/abandoned) +"aVr" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"aVQ" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 + }, +/obj/item/card/id/away/old/sec{ + name = "MC-16 multicard"; + desc = "A clip on ID Badge, has one of those fancy new magnetic strips built in." + }, +/obj/effect/decal/remains/human, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"aWy" = ( +/obj/structure/rack, +/obj/item/shield/riot/buckler, +/obj/item/shield/riot/buckler, +/obj/item/shield/riot/buckler, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"aYE" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/table/wood/fancy/royalblack, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"aZA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"baN" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"bbp" = ( +/obj/item/clothing/head/helmet/skull, +/obj/item/clothing/head/helmet/skull, +/obj/structure/closet/crate/wooden/wooden_crate, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"bbq" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"bbN" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "lake2" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"bcc" = ( +/obj/structure/flora/junglebush/large, +/mob/living/simple_animal/hostile/panther/huge_panther{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"bcE" = ( +/obj/item/stack/sheet/bone, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee{ + id = "lake5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"bdd" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"bdt" = ( +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/gloves/fingerless, +/obj/item/clothing/suit/browntrenchcoat, +/obj/item/storage/backpack/industrial, +/obj/item/storage/belt/utility, +/obj/item/storage/bag/ore, +/obj/structure/sign/nosmoking_1{ + pixel_y = -30 + }, +/obj/item/flashlight/seclite, +/obj/structure/closet, +/turf/simulated/floor/plasteel{ + icon_state = "browncorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"bdW" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"bec" = ( +/obj/structure/chair/wood, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"beC" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/decal/straw, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"beN" = ( +/obj/machinery/door/airlock/engineering{ + name = "engineering"; + req_access = list(271) + }, +/obj/machinery/door/firedoor/closed, +/turf/simulated/floor/indestructible, +/area/awaymission/jungle_planet/inside/complex) +"bgE" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/structure/flora/tree/jungle, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"bhj" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"bhA" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"bil" = ( +/obj/structure/dresser, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"bjz" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/awaymission/jungle_planet/inside/complex) +"bjA" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"bjS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"bjW" = ( +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"bka" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"bkg" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "browncorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"bkL" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"bkN" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"bkW" = ( +/obj/structure/computerframe{ + dir = 4; + anchored = 1 + }, +/obj/item/stack/cable_coil{ + amount = 2 + }, +/obj/effect/decal/cleanable/glass, +/obj/item/shard, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside) +"blp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"blr" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_axe{ + id = "pathway11" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"blW" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/railing{ + dir = 2 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"bmT" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"bon" = ( +/obj/structure/flora/rock/pile/largejungle{ + icon_state = "rocks1"; + pixel_y = 2; + pixel_x = -2 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"bos" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/crate/engineering, +/obj/item/clothing/gloves/color/fyellow/old, +/obj/item/multitool, +/obj/item/clothing/head/welding, +/obj/random/toolbox, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"boK" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 9 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"bpT" = ( +/obj/structure/computerframe, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/jungle_planet/outside/abandoned) +"bql" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "dorm"; + req_access = list(271) + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"bqo" = ( +/obj/item/skeleton/head, +/obj/item/skeleton/l_arm, +/obj/item/skeleton/r_leg{ + pixel_y = 7 + }, +/obj/effect/decal/cleanable/blood/gibs{ + color = "red"; + icon_state = "gibdown1_flesh"; + pixel_x = -9; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"bqx" = ( +/obj/machinery/firealarm{ + name = "north fire alarm"; + pixel_y = 24 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"bqF" = ( +/obj/item/kitchen/utensil/spoon{ + pixel_x = -3; + pixel_y = 18 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"bqH" = ( +/obj/structure/computerframe{ + anchored = 1; + dir = 1 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/item/shard, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/awaymission/jungle_planet/outside) +"bqM" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/largecrate, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"brp" = ( +/obj/structure/railing, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside/river) +"bru" = ( +/obj/structure/closet/crate/wooden/barrel, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"brT" = ( +/obj/structure/girder, +/obj/item/stack/sheet/metal, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/abandoned) +"bse" = ( +/obj/structure{ + icon = 'icons/obj/pipes/disposal.dmi'; + icon_state = "pipe-s"; + name = "pipe" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"bsm" = ( +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"bsO" = ( +/obj/item/paper/researchnotes, +/obj/item/stack/telecrystal, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/clothing/accessory/necklace/dope, +/obj/structure/closet/crate/wooden/wooden_crate, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"bti" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"bty" = ( +/obj/effect/baseturf_helper/asteroid, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/cave/small) +"btH" = ( +/obj/structure/sign/directions/security{ + pixel_y = -3; + pixel_x = 31 + }, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_x = 31; + pixel_y = 4 + }, +/obj/structure/sign/directions/cargo{ + pixel_y = -10; + pixel_x = 31 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"btI" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"btQ" = ( +/obj/item/skeleton/l_hand, +/obj/item/skeleton/r_arm, +/obj/item/skeleton/head{ + pixel_y = -11; + pixel_x = -23 + }, +/obj/item/skeleton/head{ + pixel_y = -11 + }, +/obj/item/skeleton/head{ + pixel_x = -21 + }, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"btX" = ( +/obj/item/soap/nanotrasen, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"bus" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/ammo_casing/caseless/arrow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"bvC" = ( +/obj/structure/flora/junglebush/large, +/obj/effect/firefly/green{ + layer = 10 + }, +/mob/living/simple_animal/hostile/poison_snake{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/small) +"bvE" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_x = 7 + }, +/obj/machinery/recharger{ + pixel_x = -7 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 11 + }, +/obj/machinery/light_construct/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/awaymission/jungle_planet/inside/complex) +"bwB" = ( +/obj/structure/bonfire/lit, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"bxc" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"byp" = ( +/obj/structure/flora/junglebush{ + icon_state = "bush4" + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"byv" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"byV" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"bzG" = ( +/obj/item/flashlight/flare/torch{ + pixel_x = -9; + anchored = 1; + tool_volume = 300; + on = 1 + }, +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"bzW" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"bAQ" = ( +/obj/structure/fence/end{ + dir = 1 + }, +/obj/item/stack/rods, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"bBj" = ( +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/obj/item/stock_parts/manipulator, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"bBA" = ( +/obj/structure/table/wood, +/obj/machinery/kitchen_machine/microwave{ + pixel_y = 5 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"bBM" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/turf_decal/grass{ + dir = 6 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"bBR" = ( +/obj/item/reagent_containers/food/snacks/grown/chili, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle, +/obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle, +/obj/item/reagent_containers/food/snacks/grown/onion, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/structure/closet/crate/wooden/wooden_crate, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/small) +"bCI" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "Command"; + requires_power = 0 + }, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"bDb" = ( +/obj/item/card/id/away/old/sec{ + name = "MC-16 multicard"; + desc = "A clip on ID Badge, has one of those fancy new magnetic strips built in." + }, +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"bEz" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/suit/sovietcoat, +/obj/item/clothing/shoes/jackboots, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"bES" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/item/kirbyplants, +/mob/living/simple_animal/hostile/poison_snake{ + wander = 0 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"bFi" = ( +/obj/machinery/gateway, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/bluegrid{ + icon_state = "bcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"bFl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"bFX" = ( +/obj/structure/table, +/obj/item/megaphone, +/obj/item/phone{ + pixel_y = 12; + pixel_x = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"bFY" = ( +/obj/structure/chair/office{ + dir = 1; + pixel_y = 12 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/jungle_planet/outside/abandoned) +"bGr" = ( +/obj/structure/table, +/obj/machinery/processor{ + pixel_y = 9; + layer = 3.13 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"bHE" = ( +/obj/structure/flora/rock/pile/largejungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"bIQ" = ( +/obj/structure/flora/tree/jungle, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"bJa" = ( +/obj/structure/flora/rock, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"bJi" = ( +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 1 + }, +/area/awaymission/jungle_planet/outside/waterfall) +"bKK" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"bKN" = ( +/obj/structure/table_frame, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -7; + pixel_y = -10 + }, +/obj/item/shard, +/obj/item/clothing/mask/surgical, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"bLF" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"bLU" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 4 + }, +/area/awaymission/jungle_planet/outside/river) +"bMV" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall/r_wall, +/area/awaymission/jungle_planet/outside/cave) +"bNa" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/sunglasses, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_x = 5 + }, +/obj/machinery/light_construct/directional/west, +/turf/simulated/floor/mineral/titanium/yellow, +/area/awaymission/jungle_planet/outside/abandoned) +"bND" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/cowboyhat/tan, +/obj/item/clothing/suit/browntrenchcoat, +/obj/item/storage/bible{ + pixel_x = -9; + pixel_y = -7 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"bNI" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"bNN" = ( +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"bNX" = ( +/obj/structure/flora/rock/jungle, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"bOu" = ( +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"bOP" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"bQa" = ( +/obj/structure/flora/ash/tall_shroom, +/mob/living/simple_animal/hostile/panther/huge_panther{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"bRP" = ( +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"bSK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"bSO" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"bTq" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"bUF" = ( +/obj/structure/railing/corner, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"bUP" = ( +/obj/item/coin/gold, +/obj/item/coin/gold, +/obj/item/coin/gold, +/obj/item/coin/gold, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/closet/crate/wooden/wooden_crate, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"bVh" = ( +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"bWE" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"bWN" = ( +/obj/structure/barricade/sandbags, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"bXc" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"bXF" = ( +/obj/machinery/suit_storage_unit/syndicate{ + req_access = null; + state_open = 1; + requires_power = 0 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/awaymission/jungle_planet/outside/abandoned) +"bYg" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/awaymission/jungle_planet/inside/complex) +"cak" = ( +/obj/structure/flora/rock, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"caz" = ( +/obj/item/camera_assembly, +/obj/item/stack/cable_coil{ + amount = 2 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"caM" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"caT" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"cbj" = ( +/obj/machinery/light_construct/directional/south, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"cbG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"cbH" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"cbY" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"ccc" = ( +/obj/structure/closet/crate/wooden/barrel, +/obj/item/reagent_containers/food/snacks/monkeykabob, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"cco" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/bonfire/lit, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"cdh" = ( +/obj/structure/rack/gunrack, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"cfb" = ( +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/pirate) +"cfe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/computerframe{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"cfi" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 1 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside) +"cfm" = ( +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"cfR" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"cgb" = ( +/obj/structure/chair/wood, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"cge" = ( +/obj/structure/table/wood, +/obj/item/trash/tray, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"cgI" = ( +/obj/item/flashlight, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"chq" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"cjo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside/river) +"cjT" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular, +/obj/item/camera{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/laser_pointer, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"cku" = ( +/turf/simulated/wall, +/area/awaymission/jungle_planet/inside/complex) +"ckL" = ( +/obj/effect/decal/straw/light, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"cll" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"clv" = ( +/obj/machinery/bodyscanner{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/jungle_planet/inside/complex) +"cmE" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/item/shard, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"cmS" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/laser/retro/old{ + desc = "An older model of the basic lasergun, no longer used by Nanotrasen's private security or military forces. Nevertheless, it is still quite deadly and easy to maintain, making it a favorite amongst pirates and other outlaws."; + pixel_y = -9 + }, +/obj/item/gun/energy/laser/retro/old{ + desc = "An older model of the basic lasergun, no longer used by Nanotrasen's private security or military forces. Nevertheless, it is still quite deadly and easy to maintain, making it a favorite amongst pirates and other outlaws." + }, +/obj/item/gun/energy/laser/retro/old{ + desc = "An older model of the basic lasergun, no longer used by Nanotrasen's private security or military forces. Nevertheless, it is still quite deadly and easy to maintain, making it a favorite amongst pirates and other outlaws."; + pixel_y = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/awaymission/jungle_planet/inside/complex) +"cnk" = ( +/mob/living/simple_animal/hostile/jungle_lizard, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"cnH" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"cnW" = ( +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/uranium{ + amount = 30 + }, +/obj/structure/closet/crate/radiation, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"cod" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"coG" = ( +/obj/machinery/door/poddoor/shutters{ + id_tag = "Cargo out" + }, +/obj/machinery/door/airlock/mining{ + name = "second hangar"; + req_access = list(271) + }, +/obj/machinery/door_control/shutter/north{ + id = "Cargo out"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"cpc" = ( +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"cpI" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush2" + }, +/mob/living/simple_animal/hostile/poison_snake{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"cqs" = ( +/obj/item/stack/sheet/metal, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"cqy" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"cqL" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"crg" = ( +/obj/item/stack/rods, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"crR" = ( +/obj/machinery/light_construct/directional/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"csE" = ( +/obj/structure/chair/sofa/pew/left{ + dir = 1 + }, +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"ctB" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"ctF" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"cuf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"cum" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/awaymission/jungle_planet/inside/complex) +"cuS" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/abandoned) +"cwa" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"cwo" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"cxP" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"cxR" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"cyg" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"cyh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"czz" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1; + desc = "A portable generator for emergency backup power."; + name = "P.A.C.M.A.N.-type portable generator" + }, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"cAA" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/secure_closet{ + req_access = list(271) + }, +/obj/item/restraints/handcuffs, +/obj/item/clothing/suit/armor/vest, +/obj/item/kitchen/knife/combat, +/obj/item/flashlight/seclite, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/awaymission/jungle_planet/outside/abandoned) +"cAK" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 1 + }, +/obj/effect/decal/warning_stripes/west, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"cAM" = ( +/obj/item/reagent_containers/syringe{ + pixel_x = -1; + pixel_y = -11 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/item/cautery, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"cBW" = ( +/obj/structure/closet, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/turf/simulated/floor/plasteel{ + icon_state = "browncorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"cBY" = ( +/obj/machinery/hydroponics/soil, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"cCb" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"cCl" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"cDs" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside) +"cDS" = ( +/obj/structure/table/glass, +/obj/item/flashlight/lamp/green{ + pixel_x = 10; + pixel_y = -6; + on = 0 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/flashlight/pen{ + pixel_x = -8 + }, +/obj/item/folder/white{ + pixel_x = -6; + pixel_y = -4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/awaymission/jungle_planet/inside/complex) +"cDY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "dorm"; + req_access = list(271) + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"cEd" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"cEh" = ( +/obj/structure/chair/sofa/left, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"cEv" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "cave9" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"cEE" = ( +/mob/living/simple_animal/hostile/jungle_lizard/axeman{ + wander = 0 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"cET" = ( +/obj/item/wrench, +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"cFz" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"cFB" = ( +/obj/effect/turf_decal/box, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside) +"cFQ" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"cGy" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"cGL" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"cHB" = ( +/obj/structure/flora/rock, +/obj/item/flashlight/flare/torch{ + pixel_x = -9; + anchored = 1; + tool_volume = 300; + on = 1 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"cHC" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"cIb" = ( +/obj/structure/rack, +/obj/item/storage/backpack/quiver, +/obj/item/storage/backpack/quiver, +/obj/item/storage/backpack/quiver/full, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"cIq" = ( +/mob/living/simple_animal/hostile/jungle_lizard/archer{ + wander = 0 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"cIA" = ( +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"cIC" = ( +/obj/structure/flora/straw_bail/alt_1, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside) +"cIV" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"cJq" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"cJO" = ( +/obj/effect/turf_decal/caution, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"cKa" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 1 + }, +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"cLm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/closed, +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/obj/machinery/door/airlock/engineering{ + locked = 1; + name = "engineering"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"cLG" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"cNf" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"cNM" = ( +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 8 + }, +/area/awaymission/jungle_planet/outside/cave/small) +"cOa" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 4 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"cPb" = ( +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"cPg" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"cPv" = ( +/obj/machinery/door/firedoor/closed, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"cPB" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"cRx" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "cave2" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"cSH" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"cSN" = ( +/obj/structure/fence/corner{ + pixel_x = 15 + }, +/obj/structure/fence/cut/large, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"cTp" = ( +/obj/structure/railing{ + dir = 2 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"cTt" = ( +/obj/effect/baseturf_helper/beach/sand, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/river) +"cUf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/camera_assembly, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"cUI" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/turf_decal/grass{ + dir = 6 + }, +/obj/effect/turf_decal/grass{ + dir = 8 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/inside/complex) +"cVe" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"cVt" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"cVD" = ( +/obj/structure/flora/tree/jungle/small, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"cVI" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 6 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"cWx" = ( +/obj/item/stack/rods, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"cWA" = ( +/obj/effect/decal/nanotrasen_logo{ + icon_state = "logo6" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/newspaper, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"cWO" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + id_tag = "Sec in"; + requires_power = 0 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"cXx" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/obj/machinery/light_construct/directional/west, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"cYa" = ( +/obj/structure/flora/junglebush{ + icon_state = "bush5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"cYu" = ( +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/inside/complex) +"dbn" = ( +/obj/structure/door_assembly/door_assembly_ext{ + anchored = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/jungle_planet/outside/abandoned) +"dbJ" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"dbU" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"dco" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"dcG" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"dcU" = ( +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/uranium{ + amount = 30 + }, +/obj/structure/closet/crate/radiation, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"deq" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"der" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "swamp6" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"dfE" = ( +/obj/structure/computerframe, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/item/shard, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"dgk" = ( +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/waterfall) +"dhE" = ( +/obj/item/flashlight/flare/torch{ + pixel_x = -9; + anchored = 1; + tool_volume = 300; + on = 1 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"diI" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"diJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"diO" = ( +/obj/effect/decal/warning_stripes/north, +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"djG" = ( +/obj/structure/girder, +/obj/item/stack/sheet/metal, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"djO" = ( +/obj/item/cigbutt, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"djW" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"dke" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"dkt" = ( +/obj/machinery/light/directional/north, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/awaymission/jungle_planet/inside/complex) +"dkV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/arrows, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"dla" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"dll" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/sign/securearea{ + pixel_y = -31 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"dlv" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "lake3" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"dmi" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "Hang in"; + requires_power = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"dmx" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"dnc" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"dno" = ( +/obj/effect/decal/warning_stripes/north, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"dob" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"doc" = ( +/obj/structure/flora/junglebush/large, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"doE" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"dph" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/item/stock_parts/cell/high, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"dpm" = ( +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/awaymission/jungle_planet/outside) +"dpL" = ( +/obj/structure/closet, +/obj/item/reagent_containers/food/snacks/candy/candybar, +/obj/item/stack/spacecash/c10, +/obj/item/flashlight/seclite, +/obj/item/clothing/shoes/combat, +/obj/item/storage/belt/security, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"dpW" = ( +/obj/effect/turf_decal/grass{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"dqk" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/obj/machinery/camera{ + network = list("MC-16"); + dir = 5; + c_tag = "Bar" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"drb" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_2"; + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/awaymission/jungle_planet/outside/abandoned) +"drq" = ( +/turf/simulated/mineral/volcanic{ + baseturf = /turf/simulated/floor/plating/asteroid/ancient; + turf_type = /turf/simulated/floor/plating/asteroid/ancient + }, +/area/awaymission/jungle_planet/outside/cave) +"drM" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/junglebush{ + icon_state = "bush5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"dsk" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/item/pipe_meter{ + anchored = 1 + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"dsp" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/abandoned) +"dsC" = ( +/obj/structure/railing{ + dir = 2 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"dsE" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"dtW" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16 + }, +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 4; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"dtX" = ( +/obj/machinery/atmospherics/unary/tank/air, +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"dud" = ( +/obj/structure/curtain/medical, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/jungle_planet/inside/complex) +"dvj" = ( +/obj/structure/chair/sofa/pew{ + dir = 1 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"dvN" = ( +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"dwI" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"dwN" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside) +"dxa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"dxA" = ( +/obj/random/toolbox, +/obj/machinery/door/window/reinforced/normal{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"dxS" = ( +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/waterfall) +"dzn" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_axe{ + id = "waterfall5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"dBV" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall/r_wall, +/area/awaymission/jungle_planet/outside/cave) +"dCq" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"dDX" = ( +/obj/structure/bed/mattress/dirty, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"dGF" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"dGT" = ( +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"dHz" = ( +/obj/item/stack/rods, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"dIs" = ( +/obj/structure/flora/straw_bail/alt_2, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside) +"dIT" = ( +/obj/structure/bed, +/obj/item/bedsheet/black{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"dKi" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"dKU" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"dLx" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"dLG" = ( +/obj/item/chair, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"dLI" = ( +/turf/simulated/floor/indestructible/grass/no_creep, +/area/awaymission/jungle_planet/outside) +"dLM" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"dMz" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"dMT" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"dMZ" = ( +/obj/structure/table/reinforced, +/obj/structure/table/reinforced, +/obj/item/clothing/head/welding{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 2 + }, +/obj/item/mod/core/plasma, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"dNG" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"dNR" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"dNU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/item/radio, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"dOI" = ( +/obj/item/flag/syndi, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/awaymission/jungle_planet/outside/abandoned) +"dPd" = ( +/obj/structure/grille/broken, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"dPQ" = ( +/obj/structure/flora/tree/jungle, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"dPT" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"dQH" = ( +/obj/structure/morgue{ + dir = 2 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/awaymission/jungle_planet/inside/complex) +"dQN" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"dQS" = ( +/obj/structure/flora/grass/jungle{ + icon_state = "grass10" + }, +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"dQU" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"dRW" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"dSf" = ( +/obj/item/reagent_containers/glass/rag, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"dSl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"dSA" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"dTm" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"dTB" = ( +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"dUE" = ( +/obj/effect/turf_decal/delivery/white, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"dVh" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"dVT" = ( +/obj/machinery/door_control/shutter/north{ + name = "Armory Shutters-control"; + id = "Arm in"; + req_access = list(271) + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/awaymission/jungle_planet/inside/complex) +"dWp" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"dWC" = ( +/obj/structure/girder, +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"dWN" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"dWW" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"dXw" = ( +/obj/machinery/light_construct/small/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"dYL" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"dZu" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"dZG" = ( +/obj/structure/table/wood, +/obj/item/airlock_electronics, +/obj/item/stack/cable_coil{ + amount = 2 + }, +/obj/item/assembly/prox_sensor, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/river) +"dZH" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside) +"eag" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"eat" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"eay" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/gun/energy/laser/retro/old, +/obj/item/fireaxe, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/small) +"eaA" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"eaI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stack/rods, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"ebr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"ebM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"ebS" = ( +/obj/structure/sink/directional/west, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"ecl" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"ecz" = ( +/obj/structure/chair/wood, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"ecJ" = ( +/obj/structure/table/reinforced, +/obj/item/trash/chips, +/obj/item/stack/tape_roll, +/obj/item/reagent_containers/food/drinks/coffee{ + desc = "Its cold like the space outside noo!"; + list_reagents = list("coffee" = 0) + }, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"ecP" = ( +/obj/structure/stone_tile/surrounding/cracked, +/obj/structure/stone_tile/center/cracked, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"edO" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"eew" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"efM" = ( +/obj/machinery/light_construct/directional/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"efS" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/cans/beer, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"egj" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"egx" = ( +/obj/structure/table_frame/wood, +/obj/item/stack/sheet/wood{ + amount = 30 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"egD" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/awaymission/jungle_planet/outside) +"ehV" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/machinery/computer{ + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; + icon_keyboard = ""; + icon_screen = "telescreen"; + icon_state = "telescreen_console"; + pixel_x = 30; + density = 0 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"eis" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/black{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"ejI" = ( +/obj/structure/bonfire, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"eky" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"elg" = ( +/obj/structure/bed, +/obj/item/stack/sheet/cloth, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"elw" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"elP" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"emh" = ( +/obj/item/grenade/flashbang, +/obj/item/storage/belt/security, +/obj/item/clothing/shoes/combat, +/obj/item/kitchen/knife/combat, +/obj/structure/closet/secure_closet{ + req_access = list(271) + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/awaymission/jungle_planet/inside/complex) +"ena" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"enb" = ( +/obj/item/cigbutt, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"enG" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"enP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"epa" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/ore_box, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"epj" = ( +/obj/item/camera_assembly, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/awaymission/jungle_planet/inside/complex) +"epz" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"epR" = ( +/obj/item/clothing/suit/armor/vest, +/obj/item/reagent_containers/spray/pepper, +/obj/item/grenade/flashbang, +/obj/item/kitchen/knife/combat, +/obj/structure/closet/secure_closet{ + req_access = list(271) + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/awaymission/jungle_planet/inside/complex) +"eqh" = ( +/obj/item/pickaxe/mini, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"erb" = ( +/obj/structure/railing{ + dir = 2 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"ere" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stack/cable_coil{ + pixel_y = 10; + amount = 2 + }, +/obj/structure/firelock_frame{ + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"erB" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16 + }, +/obj/item/stack/rods, +/obj/item/stack/sheet/metal, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"esq" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "pathway8" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"esx" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 5 + }, +/obj/item/pen, +/obj/item/clipboard, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"esZ" = ( +/turf/simulated/floor/mech_bay_recharge_floor, +/area/awaymission/jungle_planet/inside/complex) +"etJ" = ( +/obj/structure/closet/crate, +/obj/item/poster/syndicate_recruitment, +/obj/item/taperecorder/empty, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/awaymission/jungle_planet/outside/abandoned) +"etK" = ( +/obj/structure{ + icon = 'icons/obj/pipes/disposal.dmi'; + icon_state = "pipe-c"; + name = "pipe"; + dir = 1 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"euu" = ( +/obj/structure/rack, +/obj/item/clothing/mask/face/tribal, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"euH" = ( +/obj/structure/flora/junglebush/large, +/mob/living/simple_animal/hostile/poison_snake{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"euM" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_corner"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"euW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"eve" = ( +/obj/structure/flora/ausbushes/ywflowers, +/mob/living/simple_animal/hostile/jungle_lizard/archer{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"evz" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/awaymission/jungle_planet/inside/complex) +"evE" = ( +/obj/structure/toilet/material/gold, +/obj/machinery/door_control/shutter{ + layer = 2.9; + id = "gatelizard_piratcaptain"; + name = "hidden button" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"ewJ" = ( +/obj/structure/sign/directions/cargo{ + dir = 8; + pixel_x = -27 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"ewM" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"exm" = ( +/obj/effect/turf_decal/grass{ + dir = 4 + }, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_corner"; + dir = 8 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/inside/complex) +"exr" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/mining{ + locked = 1; + name = "main hangar"; + req_access = list(271) + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "Hang in"; + requires_power = 0 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"eyi" = ( +/obj/effect/turf_decal/bot_red, +/obj/structure/mecha_wreckage/ripley, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"ezc" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"eAe" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"eAh" = ( +/obj/machinery/light_construct/small/west, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"eBs" = ( +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave) +"eBR" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 4; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"eCt" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"eDn" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/obj/item/stack/cable_coil{ + pixel_y = 5; + amount = 2; + pixel_x = 12 + }, +/obj/item/stock_parts/capacitor/adv, +/obj/item/stock_parts/capacitor/adv{ + pixel_y = 10; + pixel_x = -13 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"eEy" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"eEO" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/small) +"eER" = ( +/obj/item/coin/gold{ + pixel_x = -9; + pixel_y = 11 + }, +/obj/item/clothing/accessory/necklace, +/obj/item/clothing/accessory/necklace/locket, +/obj/structure/stone_tile/slab, +/obj/item/stack/ore/plasma, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"eFd" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_5" + }, +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/stack/cable_coil{ + amount = 2 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/awaymission/jungle_planet/outside/abandoned) +"eFw" = ( +/turf/simulated/wall, +/area/awaymission/jungle_planet/outside) +"eGz" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"eGY" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/landmark/awaystart, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"eHa" = ( +/obj/structure/closet/secure_closet{ + icon_state = "secure"; + locked = 0; + name = "kitchen Cabinet"; + req_access = list(201) + }, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/sugar, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"eHK" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"eIh" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"eIw" = ( +/obj/structure/chair/comfy/brown{ + dir = 4; + pixel_x = 8 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"eIQ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/mob/living/simple_animal/hostile/poison_snake{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"eJx" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + list_reagents = list("rum" = 50) + }, +/obj/item/clothing/mask/cigarette/pipe, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"eJy" = ( +/obj/structure/flora/tree/jungle/small, +/obj/structure/spider/stickyweb, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10; + light_power = 4 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"eJW" = ( +/obj/structure/table/reinforced, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/mineral/titanium/yellow, +/area/awaymission/jungle_planet/outside/abandoned) +"eKg" = ( +/obj/structure/rack/gunrack, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/awaymission/jungle_planet/outside) +"eKq" = ( +/mob/living/simple_animal/hostile/jungle_lizard/archer{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"eKx" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"eLl" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "waterfall6" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"eNT" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"eOw" = ( +/obj/structure/flora/rock/pile/largejungle{ + icon_state = "rocks3" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/waterfall) +"eOG" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"eOP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"eOR" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/fifty, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"ePb" = ( +/obj/item/gun/energy/gun/mini{ + selfcharge = 1; + name = "self-charge gun prototype" + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"ePR" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_axe{ + id = "waterfall5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"eQS" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"eQU" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/bluegrid{ + icon_state = "bcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"eQY" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "swamp3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"eRg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"eRi" = ( +/obj/machinery/door_control/shutter/east{ + id = "Right in"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"eRs" = ( +/mob/living/simple_animal/hostile/jungle_lizard/archer{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"eSa" = ( +/obj/structure/mineral_door/wood, +/obj/structure/barricade/wooden/crude, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"eSc" = ( +/obj/machinery/constructable_frame, +/obj/item/stock_parts/micro_laser, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"eTu" = ( +/obj/structure/railing{ + dir = 2 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"eUc" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/turf_decal/arrows, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"eUq" = ( +/obj/structure/flora/rock, +/obj/item/flashlight/flare/torch{ + pixel_x = -9; + anchored = 1; + tool_volume = 300; + on = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"eUt" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"eUG" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "pathway3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"eUP" = ( +/obj/effect/decal/remains/xeno, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"eVl" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"eVr" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/waterfall) +"eXT" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"eZk" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"faH" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"fbH" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"fck" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 5 + }, +/obj/item/clothing/head/helmet/skull{ + pixel_x = -10; + pixel_y = -6 + }, +/obj/item/pen{ + pixel_y = 8 + }, +/obj/item/kitchen/knife/combat/survival/bone, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"fcs" = ( +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"fdc" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"fdG" = ( +/obj/effect/mist, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"feB" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/decal/remains/human, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee{ + id = "lake5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"ffh" = ( +/obj/item/ammo_casing/caseless/arrow, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"ffA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"ffL" = ( +/turf/simulated/wall/indestructible/syndishuttle/nodiagonal, +/area/awaymission/jungle_planet/outside/abandoned) +"ffP" = ( +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"fgp" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"fgN" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"fhn" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/machinery/light_construct/directional/east, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/abandoned) +"fht" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"fhz" = ( +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"fid" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"fio" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"fiw" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 4 + }, +/area/awaymission/jungle_planet/outside/waterfall) +"fiM" = ( +/obj/effect/turf_decal/box, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside) +"fjM" = ( +/obj/structure/flora/junglebush{ + icon_state = "bush4" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"fky" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"flq" = ( +/obj/machinery/door/airlock{ + name = "dorm"; + req_access = list(271) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"flw" = ( +/obj/structure/table/wood, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"fmQ" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/river) +"fnt" = ( +/obj/item/stack/cable_coil{ + pixel_y = 10; + amount = 2 + }, +/obj/machinery/door/firedoor/closed, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters{ + id_tag = "Right in"; + dir = 8; + requires_power = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"fnP" = ( +/obj/structure/spider/stickyweb, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"fpm" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/north, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"fpn" = ( +/obj/item/chair, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"fpQ" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"fqy" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "2post" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"fqI" = ( +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"fqK" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/stack/rods, +/obj/item/ammo_casing/caseless/arrow, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"frk" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "pathway7" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"frH" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"frV" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/river) +"frZ" = ( +/obj/item/reagent_containers/food/drinks/cans/beer{ + list_reagents = list("beer"=0) + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"fsa" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"ftZ" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "pathway3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"ful" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"fwi" = ( +/obj/item/camera_assembly, +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/obj/item/kirbyplants, +/mob/living/simple_animal/hostile/poison_snake{ + wander = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"fwu" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_axe{ + id = "lake4" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"fwy" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"fwY" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"fxM" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"fyJ" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "swamp1" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"fzE" = ( +/obj/item/kitchen/knife/combat/survival/bone{ + pixel_x = -14 + }, +/obj/item/kitchen/knife/combat/survival/bone, +/obj/structure/table/wood, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"fzF" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"fAe" = ( +/obj/structure/mineral_door/wood, +/obj/structure/barricade/wooden/crude, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"fAF" = ( +/obj/structure/flora/rock/pile/largejungle{ + icon_state = "rocks3" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"fBg" = ( +/obj/item/stack/sheet/bone, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"fBw" = ( +/obj/structure/door_assembly/door_assembly_sec{ + anchored = 1 + }, +/obj/item/airlock_electronics, +/obj/machinery/door/firedoor/closed, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"fBI" = ( +/obj/machinery/door/airlock{ + name = "restrooms" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"fCe" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"fCt" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/item/shard{ + icon_state = "small" + }, +/obj/machinery/door/poddoor/shutters{ + id_tag = "Sec in"; + dir = 8; + requires_power = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"fDN" = ( +/obj/structure/flora/grass/jungle{ + icon_state = "grass10" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"fEk" = ( +/obj/item/stack/sheet/animalhide/monkey, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "rampbottom" + }, +/area/awaymission/jungle_planet/outside/cave) +"fEq" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"fET" = ( +/obj/structure/table/wood, +/obj/item/trash/plate{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/machinery/computer{ + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; + icon_keyboard = ""; + icon_screen = "telescreen"; + icon_state = "telescreen_console"; + pixel_x = -32 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"fFa" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/oilcan, +/obj/structure/reagent_dispensers/fueltank/chem{ + pixel_y = 30 + }, +/obj/item/clothing/glasses/welding, +/obj/item/weldingtool, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"fFg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"fFk" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"fFW" = ( +/obj/structure/closet/cabinet, +/obj/item/gun/projectile/revolver/doublebarrel/improvised, +/obj/item/lighter/zippo, +/obj/item/clothing/mask/cigarette/pipe, +/obj/item/stack/spacecash/c100, +/obj/item/lighter/zippo/fluff/purple, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/item/ammo_box/shotgun/buck, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"fGf" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"fGg" = ( +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"fGG" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"fHr" = ( +/obj/item/trash/semki, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 4 + }, +/area/awaymission/jungle_planet/outside/river) +"fHD" = ( +/obj/structure/flora/straw_bail, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside) +"fHO" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"fHT" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush2" + }, +/mob/living/simple_animal/hostile/jungle_lizard/archer{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"fJc" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"fJs" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside) +"fJU" = ( +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/obj/structure/computerframe{ + anchored = 1 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"fKx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light_construct/directional/west, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"fKz" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"fKP" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 8 + }, +/area/awaymission/jungle_planet/outside/river) +"fKU" = ( +/obj/structure/flora/junglebush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"fLn" = ( +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/waterfall) +"fLt" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "purplecorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"fMh" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"fMq" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"fMw" = ( +/obj/structure/flora/ausbushes, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"fMx" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"fNF" = ( +/obj/machinery/computer{ + name = "broken computer"; + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; + icon_state = "computer"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/awaymission/jungle_planet/outside/abandoned) +"fOl" = ( +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"fOv" = ( +/obj/item/stack/ore/plasma, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"fOZ" = ( +/obj/item/stack/cable_coil{ + amount = 1; + max_amount = 5 + }, +/obj/item/ammo_casing/caseless/arrow, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"fPe" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 1 + }, +/area/awaymission/jungle_planet/outside/river) +"fQm" = ( +/turf/simulated/wall/indestructible, +/area/awaymission/jungle_planet/inside) +"fQG" = ( +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"fRH" = ( +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/awaymission/jungle_planet/outside) +"fSp" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"fSv" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_x = 8 + }, +/obj/machinery/recharger{ + pixel_x = -5 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"fSD" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"fTr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"fTv" = ( +/obj/structure/computerframe{ + anchored = 1 + }, +/obj/machinery/firealarm{ + name = "north fire alarm"; + pixel_y = 24 + }, +/obj/item/stack/cable_coil{ + amount = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"fWS" = ( +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"fYa" = ( +/obj/structure/cable, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"fYi" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/door/poddoor/shutters{ + anchored = 0 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"fYj" = ( +/obj/structure/railing, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside/river) +"fYG" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + list_reagents = list("rum" = 0) + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"fZj" = ( +/obj/structure/railing{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"gad" = ( +/obj/structure/table/reinforced, +/obj/item/hand_labeler, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 4 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"gaD" = ( +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/small) +"gaG" = ( +/obj/item/reagent_containers/food/drinks/cans/beer{ + list_reagents = list("beer"=0); + pixel_x = 9 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + list_reagents = list("beer"=0) + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"gaK" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/awaymission/jungle_planet/inside/complex) +"gbK" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"gbN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/west, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"gck" = ( +/obj/machinery/constructable_frame, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor{ + pixel_x = 14 + }, +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/obj/item/stack/cable_coil{ + pixel_y = 4; + amount = 2 + }, +/obj/item/circuitboard/autolathe, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"gdv" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mech_bay_recharge_floor, +/area/awaymission/jungle_planet/inside/complex) +"gdK" = ( +/obj/structure/fence/cut/large, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"geg" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/turf_decal/arrows, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"geP" = ( +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"gfa" = ( +/obj/effect/mist, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/waterfall) +"gfL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"gfM" = ( +/obj/machinery/light/directional/north, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"gge" = ( +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 4 + }, +/area/awaymission/jungle_planet/outside) +"ghQ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"giu" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/warning_stripes/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"giz" = ( +/obj/effect/turf_decal/caution/stand_clear, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"gjF" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "lake5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"gkK" = ( +/obj/structure/flora/ausbushes/fullgrass, +/mob/living/simple_animal/hostile/jungle_lizard/spearman{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"gkO" = ( +/obj/item/toy/crayon/spraycan, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"glo" = ( +/obj/item/stack/sheet/metal, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"glO" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"gmI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"gnh" = ( +/obj/effect/turf_decal/loading_area, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"gnq" = ( +/obj/effect/baseturf_helper/asteroid, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet) +"gnw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"gon" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/abandoned) +"gop" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"gpq" = ( +/obj/structure/flora/tree/jungle/small, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"gpD" = ( +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5; + pixel_y = 14 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"gpG" = ( +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/river) +"gqc" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"grz" = ( +/obj/machinery/door/airlock/external{ + requires_power = 0 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/jungle_planet/outside/abandoned) +"grU" = ( +/obj/item/cigbutt, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"gtf" = ( +/obj/structure/barricade/wooden, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"gus" = ( +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside) +"guT" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"guZ" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "waterfall4" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/waterfall) +"gvg" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"gvS" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"gwC" = ( +/obj/structure/stone_tile/surrounding_tile/burnt, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"gwZ" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "pathway5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"gxN" = ( +/obj/machinery/door/firedoor/closed, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"gxQ" = ( +/obj/effect/turf_decal/bot_red, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"gxU" = ( +/obj/structure{ + icon = 'icons/obj/machines/telecomms.dmi'; + icon_state = "hub_off"; + name = "messaging server"; + desc = "A machine that processes and routes PDA and request console messages."; + density = 1; + anchored = 1 + }, +/turf/simulated/floor/greengrid{ + icon_state = "bcircuit" + }, +/area/awaymission/jungle_planet/inside/complex) +"gys" = ( +/obj/machinery/light_construct/small/east, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"gyH" = ( +/obj/structure/railing/corner, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"gzp" = ( +/obj/structure/curtain/medical, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/jungle_planet/inside/complex) +"gzq" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"gzv" = ( +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"gzU" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "lake4" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"gAk" = ( +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"gAD" = ( +/obj/structure/curtain/black, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + list_reagents = list("rum" = 0) + }, +/obj/effect/mob_spawn/human/corpse/skeleton, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"gAO" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"gBW" = ( +/obj/machinery/cooker/deepfryer, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"gDx" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"gDE" = ( +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"gDF" = ( +/obj/structure/closet, +/obj/item/clothing/under/color/red, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"gEY" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"gFb" = ( +/obj/structure/closet/crate/radiation, +/obj/item/stack/sheet/mineral/uranium{ + amount = 30 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"gFf" = ( +/obj/structure/table/wood, +/obj/item/whetstone, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"gFX" = ( +/obj/effect/decal/cleanable/blood/old, +/mob/living/simple_animal/hostile/jungle_lizard/meele{ + wander = 0 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"gGu" = ( +/obj/structure/table/wood, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"gGN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/door_assembly, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"gGW" = ( +/obj/item/stack/rods{ + amount = 2 + }, +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "2post" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"gHN" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/broken_bottle, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"gIo" = ( +/obj/machinery/porta_turret/syndicate, +/turf/simulated/wall/indestructible/syndishuttle, +/area/awaymission/jungle_planet/outside/abandoned) +"gIY" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"gJg" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"gJG" = ( +/obj/item/storage/belt/medical{ + pixel_y = 18 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"gJT" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/mob/living/simple_animal/hostile/jungle_lizard/meele{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"gKv" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "CMDgate" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"gLf" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/structure/railing{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"gLH" = ( +/obj/structure/closet, +/obj/item/autopsy_scanner, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/mask/surgical, +/obj/item/taperecorder, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "dark" + }, +/area/awaymission/jungle_planet/inside/complex) +"gMt" = ( +/obj/item/shard, +/obj/machinery/computer/security{ + network = list("MC-16"); + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/awaymission/jungle_planet/inside/complex) +"gMI" = ( +/obj/effect/decal/warning_stripes/yellow/partial, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"gMT" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"gNh" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"gOJ" = ( +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"gPq" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_axe{ + id = "pathway11" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"gQc" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "pathway5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"gQD" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"gQV" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"gRZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/wall, +/area/awaymission/jungle_planet/outside/abandoned) +"gSJ" = ( +/obj/structure/closet{ + opened = 1 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/item/clothing/suit/blacktrenchcoat, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside) +"gTb" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"gTg" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"gTF" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"gTN" = ( +/mob/living/simple_animal/hostile/jungle_lizard, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"gUQ" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/item/shovel{ + pixel_x = -5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "browncorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"gVy" = ( +/obj/structure/sacrificealtar{ + icon_state = "sacrificealtar-red"; + density = 1; + climbable = 1 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/claymore/ceremonial, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"gVX" = ( +/obj/item/stack/rods, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"gWs" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"gWu" = ( +/obj/structure/flora/rock, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"gXD" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"gYj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rock, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"gYy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"gYH" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/item/reagent_containers/food/snacks/grown/poppy/lily, +/obj/item/reagent_containers/food/snacks/grown/moonflower, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"gZm" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma{ + amount = 10 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"gZv" = ( +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside) +"gZQ" = ( +/obj/item/stack/rods, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"haC" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"haX" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"hbb" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 6; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"hbL" = ( +/obj/machinery/door/airlock/medical{ + name = "morgue"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "dark" + }, +/area/awaymission/jungle_planet/inside/complex) +"hcz" = ( +/obj/item/paper/crumpled, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"hdm" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_full" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/inside/complex) +"hdu" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"heb" = ( +/obj/structure/extinguisher_cabinet{ + name = "north extinguisher cabinet"; + pixel_y = 30 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"heD" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"heN" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"hfj" = ( +/obj/structure/cable, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/constructable_frame, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/stock_parts/cell/high/empty, +/obj/item/stock_parts/cell/high/empty, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"hfz" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "waterfall4" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"hfB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"hfN" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"hfY" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"hga" = ( +/obj/item/stack/sheet/mineral/plastitanium, +/obj/structure/flora/junglebush, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/awaymission/jungle_planet/outside) +"hgk" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"hgI" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"hhn" = ( +/obj/item/stack/sheet/mineral/gold{ + pixel_x = 12 + }, +/obj/item/pen/multi/gold, +/obj/item/clothing/accessory/necklace, +/obj/structure/stone_tile/surrounding_tile/cracked, +/obj/item/stack/ore/plasma, +/obj/item/stack/sheet/mineral/gold{ + amount = 25 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"hht" = ( +/obj/structure/table/wood, +/obj/item/stack/sheet/bone{ + amount = 5 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"hhN" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"hhU" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/constructable_frame, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/stock_parts/capacitor/adv, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"hjc" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"hjj" = ( +/obj/structure/flora/tree/jungle/small, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"hkx" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"hkE" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"hlk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"hlm" = ( +/obj/structure/sink/directional/west, +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 28 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"hmr" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/spiderling_remains, +/obj/item/cigbutt, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"hmu" = ( +/obj/item/chair{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"hnr" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 1 + }, +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"hnL" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 1 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"hnS" = ( +/obj/structure/railing, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"hnY" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"hoX" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"hpE" = ( +/obj/item/storage/firstaid/regular, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/awaymission/jungle_planet/outside) +"hqz" = ( +/obj/structure/flora/rock, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"hqG" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"hqZ" = ( +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/turf/simulated/floor/mech_bay_recharge_floor, +/area/awaymission/jungle_planet/inside/complex) +"hrV" = ( +/obj/structure/flora/tree/jungle, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"hsj" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "lake3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"hsv" = ( +/obj/structure/table/glass, +/obj/item/storage/pill_bottle/painkillers{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/machinery/defibrillator_mount/loaded{ + pixel_y = -32 + }, +/obj/item/stack/medical/splint{ + pixel_x = 6 + }, +/obj/item/stack/medical/bruise_pack, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"hsD" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/storage/box, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"hsO" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"htc" = ( +/obj/structure/table, +/obj/item/analyzer, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"hty" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/abandoned) +"htM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"htO" = ( +/obj/item/airlock_electronics, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"hua" = ( +/obj/structure/flora/rock, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"hux" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"huK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"huL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purplecorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"hvt" = ( +/obj/structure/cable, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/constructable_frame, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"hvD" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"hvL" = ( +/obj/structure/chair/wood, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"hvX" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"hws" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"hwW" = ( +/obj/effect/turf_decal/plaque, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"hxY" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"hyb" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/item/storage/box/syndie_kit, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 4 + }, +/area/awaymission/jungle_planet/outside) +"hyD" = ( +/obj/structure/girder/reinforced, +/obj/item/stack/rods, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/river) +"hzV" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/blue{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"hAv" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/gloves/fingerless, +/obj/item/kitchen/knife/combat/survival, +/obj/item/storage/backpack/industrial, +/obj/item/storage/belt/utility, +/obj/item/storage/bag/ore, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "browncorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"hAD" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"hCe" = ( +/obj/item/stack/rods, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"hCM" = ( +/obj/structure/stone_tile/center/cracked, +/obj/structure/stone_tile/surrounding, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"hDZ" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"hEw" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_full" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"hEX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"hFe" = ( +/obj/structure/flora/junglebush{ + icon_state = "bush5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"hFi" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"hFQ" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"hGt" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/awaymission/jungle_planet/inside/complex) +"hHf" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"hHj" = ( +/obj/structure/chair/wood, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"hHM" = ( +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 6; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"hHO" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_axe{ + id = "pathway5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"hHU" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort2" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"hIm" = ( +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"hIW" = ( +/mob/living/simple_animal/hostile/jungle_lizard/meele, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"hJI" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"hJO" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "waterfall5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"hJX" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = -7 + }, +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/awaymission/jungle_planet/inside/complex) +"hKc" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"hKK" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/awaymission/jungle_planet/outside) +"hLp" = ( +/obj/structure/flora/junglebush/large, +/mob/living/simple_animal/hostile/poison_snake{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"hMy" = ( +/obj/structure/flora/junglebush/large, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "cave1" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"hMA" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"hNb" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"hNN" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"hNO" = ( +/obj/effect/decal/cleanable/cobweb, +/mob/living/simple_animal/hostile/jungle_lizard/axeman{ + wander = 0 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"hOx" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mushroom_bowl{ + pixel_y = -23; + pixel_x = 9 + }, +/obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"hOJ" = ( +/obj/machinery/camera{ + network = list("MC-16"); + dir = 8; + c_tag = "Second Hangar" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"hPx" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/pen, +/obj/item/newspaper, +/obj/machinery/light_construct/directional/east, +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/turf/simulated/floor/mineral/titanium/yellow, +/area/awaymission/jungle_planet/outside/abandoned) +"hPE" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 6; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"hRv" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"hSs" = ( +/obj/item/clothing/head/collectable/flatcap, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"hTo" = ( +/obj/item/stack/cable_coil{ + pixel_y = 10; + amount = 2 + }, +/obj/structure/extinguisher_cabinet/empty{ + pixel_y = 31 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"hUi" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"hUH" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/radio, +/obj/machinery/light_construct/directional/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/awaymission/jungle_planet/inside/complex) +"hUQ" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside) +"hVl" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"hWa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stack/rods, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"hWd" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "pathway6" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"hWj" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"hWw" = ( +/obj/effect/decal/nanotrasen_logo{ + icon_state = "logo4" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"hWA" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"hWY" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"hXX" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/beach/away/coastline{ + dir = 4; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"hYQ" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall, +/area/awaymission/jungle_planet/outside/cave/pirate) +"iad" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/awaymission/jungle_planet/outside/abandoned) +"iah" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_full" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"iaj" = ( +/obj/structure/flora/rock/pile, +/mob/living/simple_animal/hostile/jungle_lizard/spearman{ + wander = 0 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"iaV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/south, +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"iaW" = ( +/obj/structure/flora/rock, +/obj/effect/mist, +/turf/simulated/floor/beach/away/water/deep{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/cave/small) +"ibb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light_construct/directional/north, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/jungle_planet/inside/complex) +"ibh" = ( +/obj/structure/bonfire/lit, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"ibw" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/light_construct/directional/west, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/awaystart, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"ibX" = ( +/obj/item/chair, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside) +"icJ" = ( +/obj/structure/table, +/obj/item/flashlight/lamp{ + on = 0 + }, +/obj/item/flash, +/obj/machinery/firealarm{ + name = "north fire alarm"; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/awaymission/jungle_planet/inside/complex) +"idC" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"idR" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/item/stack/cable_coil{ + pixel_y = 10; + amount = 2 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"iek" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security{ + locked = 1; + name = "security"; + req_access = list(271) + }, +/obj/machinery/door/poddoor/shutters{ + id_tag = "Sec in"; + requires_power = 0 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"ieT" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure{ + icon = 'icons/obj/machines/mining_machines.dmi'; + icon_state = "console"; + name = "stacking machine console"; + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"ifh" = ( +/obj/structure/flora/ash/leaf_shroom, +/mob/living/simple_animal/hostile/jungle_lizard/axeman{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"ifC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"ifJ" = ( +/obj/structure{ + icon_state = "smes"; + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit"; + icon = 'icons/obj/power.dmi'; + density = 1 + }, +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"igf" = ( +/obj/effect/turf_decal/box, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"igC" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"igH" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"igR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"igW" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/west, +/obj/machinery/door/airlock/mining{ + locked = 1; + name = "main hangar"; + req_access = list(271) + }, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "Hang in"; + requires_power = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"iim" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"iiu" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"ikb" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"ikG" = ( +/obj/item/stack/rods, +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"ikH" = ( +/obj/structure/flora/rock/pile/largejungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"ikN" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"ilx" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"ilA" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"ilG" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"img" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/waterfall) +"imq" = ( +/obj/structure/cable, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/constructable_frame, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/stock_parts/cell/high/empty, +/turf/simulated/floor/indestructible, +/area/awaymission/jungle_planet/outside) +"ina" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"iob" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"ipA" = ( +/obj/item/stack/rods, +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"ipM" = ( +/obj/structure/flora/rock/pile/largejungle, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"irF" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/crowbar/large, +/obj/item/storage/box/lights/mixed, +/obj/machinery/light/directional/north, +/obj/item/t_scanner, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"isl" = ( +/obj/machinery/atmospherics/unary/tank{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"isn" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/item/kirbyplants, +/mob/living/simple_animal/hostile/poison_snake{ + wander = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"isv" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"isG" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"isU" = ( +/obj/structure/flora/rock, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"isZ" = ( +/obj/machinery/photocopier, +/obj/machinery/computer{ + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; + icon_keyboard = ""; + icon_screen = "telescreen"; + icon_state = "telescreen_console"; + pixel_x = 30 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"itu" = ( +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"itw" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"itG" = ( +/obj/structure/flora/ausbushes/fullgrass, +/mob/living/simple_animal/hostile/jungle_lizard/archer{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"iuf" = ( +/obj/item/storage/bag/ore, +/obj/item/clothing/suit/browntrenchcoat, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"iuK" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"iuL" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/radiation, +/obj/item/stack/sheet/mineral/bananium{ + amount = 30 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"ivg" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/jungle_planet/inside/complex) +"ivL" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"ivZ" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"iwe" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"iwL" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"ixx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"iyF" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"iyT" = ( +/obj/item/chair, +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/ammo_casing/caseless/arrow, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/abandoned) +"izy" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"iAq" = ( +/obj/machinery/door/airlock/medical{ + name = "medbay"; + req_access = list(271) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"iAY" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"iBS" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"iBT" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/conveyor_switch, +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -29 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"iBX" = ( +/obj/structure/railing, +/obj/structure/sign/poster/official/walk{ + pixel_x = 30 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"iDD" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"iDP" = ( +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"iEl" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"iEE" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"iEF" = ( +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"iEV" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"iFa" = ( +/obj/structure/flora/rock/pile/largejungle{ + icon_state = "rocks1" + }, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 1 + }, +/area/awaymission/jungle_planet/outside/river) +"iFl" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "cave4" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"iGn" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"iGo" = ( +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/titanium/yellow, +/area/awaymission/jungle_planet/outside/abandoned) +"iGS" = ( +/obj/structure/chair, +/obj/item/newspaper, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"iGT" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "pathway4" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"iHH" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside/river) +"iJu" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"iJL" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"iKa" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "lake1" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"iKm" = ( +/obj/structure/table_frame/wood, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"iKu" = ( +/obj/structure/closet, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/obj/item/razor, +/obj/item/clothing/glasses/sunglasses, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"iKL" = ( +/obj/structure{ + icon = 'icons/obj/machines/gateway.dmi'; + icon_state = "toff"; + name = "gateway"; + density = 1; + anchored = 1; + desc = "A mysterious gateway built by unknown hands, it allows for faster than light travel to far-flung locations." + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"iKW" = ( +/obj/machinery/computer{ + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; + icon_keyboard = ""; + icon_screen = "telescreen"; + icon_state = "telescreen_console"; + pixel_x = 30 + }, +/obj/item/flag/species, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"iMw" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/bluegrid{ + icon_state = "bcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"iMH" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"iMN" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/diamond{ + amount = 25 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"iMW" = ( +/obj/structure/closet, +/obj/item/clothing/head/soft, +/obj/item/clothing/gloves/color/black, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside) +"iNw" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "gate_lizard_QM" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"iNC" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "purplecorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"iOr" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "cave11" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"iPQ" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/ammo_casing/caseless/arrow, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/item/storage/firstaid/regular/empty, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"iQb" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/roller_holder, +/obj/item/roller_holder{ + pixel_y = 8; + pixel_x = -11 + }, +/obj/item/storage/box/masks{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/jungle_planet/inside/complex) +"iQn" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"iRg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_construct/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "rampbottom" + }, +/area/awaymission/jungle_planet/inside/complex) +"iRD" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/gloves/fingerless, +/obj/item/kitchen/knife/combat/survival, +/obj/item/storage/backpack/industrial, +/obj/item/storage/belt/utility, +/obj/item/storage/bag/ore, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"iRJ" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"iTk" = ( +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"iTx" = ( +/obj/item/stack/sheet/wood{ + amount = 30 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"iUc" = ( +/obj/machinery/door/airlock/titanium/glass, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"iUT" = ( +/obj/machinery/computer/monitor{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"iVc" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "CMDgate" + }, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"iVX" = ( +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/cave/small) +"iWz" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"iWW" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"iXr" = ( +/obj/machinery/power/terminal, +/obj/structure/cable, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"iXs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/arrows, +/obj/effect/decal/warning_stripes/west, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"iXz" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/item/shard, +/obj/item/stack/rods{ + amount = 2 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"iXN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/ammo_casing/caseless/arrow, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"iYQ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"iZo" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_x = 8 + }, +/obj/machinery/recharger{ + pixel_x = -5 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"iZN" = ( +/obj/structure/flora/rock/pile, +/obj/item/flashlight/flare/torch{ + pixel_x = -9; + anchored = 1; + tool_volume = 300; + on = 1 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"iZU" = ( +/obj/item/ammo_casing/caseless/arrow, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"jaD" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"jbb" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/awaymission/jungle_planet/outside/abandoned) +"jbn" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"jck" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside/river) +"jcp" = ( +/obj/effect/turf_decal/arrows, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"jdy" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/small) +"jdE" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"jdV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"jei" = ( +/obj/effect/turf_decal/caution/stand_clear/red, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"jeC" = ( +/obj/structure/flora/tree/jungle, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"jfu" = ( +/obj/item/pickaxe, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"jfF" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/cave) +"jgU" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/machinery/power/apc/off_station/empty_charge/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"jgY" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"jhj" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"jhS" = ( +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"jhW" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"jid" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/waterfall) +"jie" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mushroom_bowl, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"jiu" = ( +/obj/structure/cable, +/obj/item/mounted/frame/apc_frame, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/awaymission/jungle_planet/outside/abandoned) +"jiB" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"jiZ" = ( +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 4 + }, +/area/awaymission/jungle_planet/outside/river) +"jjL" = ( +/obj/machinery/computer{ + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; + icon_state = "computer"; + dir = 8 + }, +/obj/machinery/camera{ + network = list("MC-16"); + dir = 8; + c_tag = "Main Hangar Mecha" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"jlc" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"jlv" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"jlK" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/wall, +/area/awaymission/jungle_planet/outside) +"jlN" = ( +/obj/structure/table/wood, +/obj/item/kitchen/knife/combat/survival/bone{ + pixel_x = -14 + }, +/obj/item/kitchen/knife/combat/survival/bone, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"jlU" = ( +/obj/item/mounted/frame/apc_frame, +/obj/item/stack/cable_coil{ + pixel_y = 10; + amount = 2 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"jlV" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "pathway14" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"jml" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "swamp3" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"jmD" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"jox" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 5 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"jps" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"jpz" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"jpO" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/mob/living/simple_animal/hostile/poison_snake{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"jrI" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/effect/turf_decal/grass{ + dir = 4 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"jrM" = ( +/obj/structure/railing, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"jrP" = ( +/obj/item/stock_parts/capacitor, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"jrS" = ( +/obj/structure/cable, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"jsY" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "waterfall4" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"jtc" = ( +/obj/effect/firefly{ + layer = 10 + }, +/obj/structure/flora/junglebush/large, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/small) +"jte" = ( +/obj/machinery/gateway/centeraway{ + requires_power = 0; + calibrated = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/bluegrid{ + icon_state = "bcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"jtx" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"jtW" = ( +/obj/structure/window/full/plasmareinforced, +/turf/simulated/floor/indestructible, +/area/awaymission/jungle_planet/inside/complex) +"juL" = ( +/obj/structure/girder, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"juZ" = ( +/obj/structure/railing{ + dir = 2 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"jvs" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 6 + }, +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"jvN" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"jvT" = ( +/obj/random/tool, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"jwe" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"jxB" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"jxF" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"jxH" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"jxT" = ( +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"jyE" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"jyR" = ( +/obj/effect/turf_decal/box, +/obj/item/multitool{ + pixel_x = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"jAq" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "gate_lizard_QM" + }, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"jAE" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "packageSort2" + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"jAF" = ( +/obj/effect/mist, +/turf/simulated/floor/beach/away/water/deep{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/cave/small) +"jBs" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/small) +"jCf" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"jCs" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"jCL" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "pathway2" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"jCQ" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"jCT" = ( +/obj/structure/bonfire{ + layer = 2.9 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"jCV" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 6 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"jDd" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"jEf" = ( +/mob/living/simple_animal/hostile/jungle_lizard/axeman{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"jEv" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"jEF" = ( +/obj/machinery/bodyscanner, +/obj/effect/decal/cleanable/blood/gibs{ + color = "red"; + icon_state = "gibdown1_flesh"; + pixel_x = -9; + pixel_y = 11 + }, +/obj/machinery/light/directional/east, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"jEQ" = ( +/obj/structure/chair/office/light{ + dir = 4; + pixel_y = 3 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/awaymission/jungle_planet/inside/complex) +"jEV" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_axe{ + id = "lake5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"jFa" = ( +/obj/item/kirbyplants, +/mob/living/simple_animal/hostile/poison_snake{ + wander = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"jFM" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/door_control/shutter/south{ + id = "Cargo in"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"jHd" = ( +/turf/simulated/wall/indestructible/riveted, +/area/awaymission/jungle_planet/inside/complex) +"jHM" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/turf_decal/caution{ + icon_state = "caution"; + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"jHY" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/railing/corner, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"jIh" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/cardboard, +/obj/item/reagent_containers/glass/beaker/waterbottle/large, +/obj/item/reagent_containers/glass/beaker/waterbottle/large, +/obj/item/reagent_containers/glass/beaker/waterbottle/large, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"jIo" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"jIu" = ( +/obj/structure/flora/rock, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"jIx" = ( +/obj/effect/decal/nanotrasen_logo/n1, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"jKc" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/bluegrid{ + icon_state = "bcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"jKi" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"jKq" = ( +/obj/item/stack/sheet/metal, +/obj/machinery/door/firedoor/closed, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"jKX" = ( +/obj/effect/decal/warning_stripes/north, +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"jLE" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"jMb" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "cave1" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"jMj" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"jMH" = ( +/obj/structure/table/wood, +/obj/item/kitchen/utensil/spoon{ + pixel_x = 7 + }, +/obj/item/kitchen/utensil/fork{ + pixel_x = 7 + }, +/obj/machinery/light_construct/directional/west, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"jMK" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"jOl" = ( +/obj/effect/baseturf_helper/asteroid, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/cave) +"jOs" = ( +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"jOD" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"jOR" = ( +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"jPL" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/item/stack/rods, +/obj/item/stack/sheet/metal, +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"jPS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"jQg" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"jQM" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/obj/machinery/door_control/shutter/south{ + id = "Sec in"; + name = "Security Shutters-control"; + req_access = list(271) + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/jungle_planet/inside/complex) +"jTv" = ( +/mob/living/simple_animal/hostile/jungle_lizard/spearman{ + wander = 0 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"jUZ" = ( +/obj/item/stack/cable_coil{ + amount = 2 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"jVn" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "waterfall6" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"jVr" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside) +"jVL" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "cave2" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"jXL" = ( +/obj/structure/closet/cabinet, +/obj/item/melee/energy/sword/pirate, +/obj/item/clothing/suit/hgpirate, +/obj/item/clothing/glasses/eyepatch, +/obj/item/clothing/head/hgpiratecap, +/obj/item/clothing/shoes/fluff/noble_boot, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"jYd" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"jYl" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"jYu" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"jYR" = ( +/obj/effect/turf_decal/caution/stand_clear/red, +/obj/item/storage/belt/utility{ + pixel_y = -8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"jZg" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"jZh" = ( +/obj/structure/computerframe{ + anchored = 1; + dir = 1 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/item/shard, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/awaymission/jungle_planet/outside/abandoned) +"jZI" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"kaQ" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"kba" = ( +/obj/machinery/light_construct/directional/west, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"kby" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -7; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"kcy" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside) +"kcJ" = ( +/obj/random/tool, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"kdB" = ( +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 6; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"kdN" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"kdR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"kdW" = ( +/obj/structure/computerframe{ + dir = 4; + anchored = 1 + }, +/obj/item/shard, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"ket" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"key" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "pathway1" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"kfu" = ( +/turf/simulated/wall/indestructible/syndishuttle, +/area/awaymission/jungle_planet/outside/abandoned) +"kgY" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"khp" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/effect/decal/cleanable/glass, +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"khX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/awaymission/jungle_planet/inside/complex) +"kiO" = ( +/obj/item/stack/rods, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"kjd" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/largecrate/chick, +/obj/machinery/light_construct/directional/west, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"kjn" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/rods, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"kjq" = ( +/obj/structure/flora/grass/jungle, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"kjR" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"kka" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/jungle_planet/inside/complex) +"klf" = ( +/obj/structure/chair/sofa/pew{ + dir = 1 + }, +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"klh" = ( +/obj/item/bedsheet/brown, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside) +"klA" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/item/reagent_containers/glass/bucket/wooden{ + pixel_x = -6; + pixel_y = -10 + }, +/mob/living/simple_animal/hostile/jungle_lizard/meele{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"kmg" = ( +/obj/machinery/door/airlock/glass, +/obj/structure/firelock_frame, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"kmw" = ( +/obj/structure/flora/rock/pile/largejungle{ + icon_state = "rocks1"; + pixel_y = 2; + pixel_x = -2 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"kmX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/item/shield/riot, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"knx" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "pathway14" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"knJ" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"knT" = ( +/obj/item/stack/cable_coil{ + pixel_y = 10; + amount = 2 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"koU" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/jungle_planet/inside/complex) +"kpa" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"kqa" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"kqc" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"kre" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/brown{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"krt" = ( +/obj/item/chair/wood{ + pixel_x = 22 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"ksq" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 8; + pixel_y = 4 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/awaymission/jungle_planet/inside/complex) +"ktu" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"ktw" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "Command"; + requires_power = 0 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"kuj" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"kuH" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/turf_decal/arrows, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"kuK" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"kvb" = ( +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/structure/table, +/obj/structure/table, +/obj/structure/table, +/obj/item/kitchen/rollingpin{ + pixel_y = 7 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"kvJ" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "dark" + }, +/area/awaymission/jungle_planet/inside/complex) +"kvL" = ( +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/cave) +"kvY" = ( +/obj/item/shard, +/obj/item/ammo_casing/caseless/arrow, +/obj/item/stack/cable_coil{ + pixel_y = 10; + amount = 2 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"kwl" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"kwD" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"kwU" = ( +/obj/machinery/light_construct/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"kxd" = ( +/obj/structure/girder/reinforced, +/obj/item/stack/sheet/mineral/titanium, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/abandoned) +"kxv" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/machinery/door/firedoor, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"kxC" = ( +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"kxM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light_construct/directional/west, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"kzn" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/coastline{ + dir = 4; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"kzC" = ( +/obj/item/rack_parts, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"kzI" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside) +"kzW" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"kBj" = ( +/obj/structure/closet/crate{ + opened = 1 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"kBQ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"kCj" = ( +/obj/structure/flora/grass/jungle{ + icon_state = "grass10" + }, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"kCn" = ( +/obj/structure/closet/cabinet, +/obj/item/lighter/zippo, +/obj/item/clothing/mask/cigarette/pipe, +/obj/item/razor, +/obj/item/clothing/suit/leathercoat, +/obj/item/clothing/head/flatcap, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/item/card/id/away/old/sec{ + name = "MC-16 multicard"; + desc = "A clip on ID Badge, has one of those fancy new magnetic strips built in." + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"kDm" = ( +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"kDq" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"kDy" = ( +/obj/machinery/computer{ + dir = 2; + icon_state = "broken"; + icon_screen = "broken"; + icon_keyboard = "generic_key_broken" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/jungle_planet/inside/complex) +"kDX" = ( +/obj/structure{ + icon = 'icons/obj/machines/gateway.dmi'; + icon_state = "toff"; + name = "gateway"; + desc = "A mysterious gateway built by unknown hands, it allows for faster than light travel to far-flung locations."; + density = 1; + anchored = 1; + dir = 6 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgreycamo" + }, +/area/awaymission/jungle_planet/inside) +"kEk" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"kEE" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"kGA" = ( +/obj/structure/chair, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside) +"kGW" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"kHa" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"kHh" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/monkeysdelight, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"kHP" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"kHW" = ( +/obj/effect/turf_decal/caution/stand_clear/red, +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"kIg" = ( +/obj/machinery/firealarm{ + dir = 1; + name = "south fire alarm"; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"kIr" = ( +/obj/structure/table/wood, +/obj/item/t_scanner, +/obj/item/stock_parts/cell/high/empty, +/obj/item/stack/cable_coil, +/obj/item/broken_device, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"kJf" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"kJm" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/machinery/light_construct/directional/west, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"kJC" = ( +/obj/structure/closet, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/gloves/combat, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"kKh" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/constructable_frame, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/stock_parts/capacitor/adv, +/obj/item/stock_parts/matter_bin, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"kLd" = ( +/obj/machinery/economy/vending/medical{ + req_access = list(271) + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/jungle_planet/inside/complex) +"kLj" = ( +/obj/machinery/constructable_frame{ + icon_state = "box_2" + }, +/turf/simulated/floor/bluegrid{ + icon_state = "bcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"kLT" = ( +/obj/effect/waterfall, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/cave) +"kNa" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/awaymission/jungle_planet/outside/abandoned) +"kNf" = ( +/obj/machinery/porta_turret{ + lethal = 1; + faction = "pirate" + }, +/turf/simulated/wall/indestructible/syndishuttle, +/area/awaymission/jungle_planet/outside/abandoned) +"kOz" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"kPT" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"kRa" = ( +/obj/structure/chair/wood, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"kRf" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"kRN" = ( +/obj/effect/turf_decal/box, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"kRO" = ( +/obj/structure/sink/directional/west, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"kRR" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/item/shard{ + icon_state = "small" + }, +/obj/machinery/computer{ + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; + icon_keyboard = ""; + icon_screen = "telescreen"; + icon_state = "telescreen_console"; + pixel_x = -32; + density = 0 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"kSV" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -7; + pixel_y = -10 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/awaymission/jungle_planet/outside) +"kSX" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"kTt" = ( +/obj/structure/flora/tree/jungle, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"kTx" = ( +/obj/structure/railing{ + dir = 2 + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"kTH" = ( +/obj/structure/computerframe{ + anchored = 1 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plasteel{ + icon_state = "purple"; + dir = 1 + }, +/area/awaymission/jungle_planet/inside/complex) +"kUl" = ( +/obj/item/reagent_containers/food/drinks/bottle/tequila, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/closet/crate/wooden/wooden_crate, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"kUv" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "pathway10" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"kUz" = ( +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside) +"kVj" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"kVK" = ( +/obj/item/stack/sheet/wood, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"kWa" = ( +/obj/structure{ + icon_state = "smes"; + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit"; + icon = 'icons/obj/power.dmi'; + density = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"kWk" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"kWD" = ( +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"kWV" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"kXb" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_full" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/inside) +"kXj" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "swamp2" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"kXJ" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"kZj" = ( +/obj/machinery/atmospherics/portable/scrubber, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"kZu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"kZx" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"kZX" = ( +/obj/structure/stone_tile/block/burnt, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"kZZ" = ( +/obj/structure/bed, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"lbq" = ( +/obj/effect/turf_decal/caution{ + icon_state = "caution"; + dir = 8 + }, +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"lbI" = ( +/obj/structure/door_assembly/door_assembly_research{ + anchored = 1 + }, +/obj/machinery/door/firedoor/closed, +/obj/item/airlock_electronics, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"lbV" = ( +/obj/structure/closet/secure_closet{ + req_access = list(271) + }, +/obj/item/restraints/handcuffs, +/obj/item/clothing/suit/armor/vest, +/obj/item/kitchen/knife/combat, +/obj/item/flashlight/seclite, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/awaymission/jungle_planet/outside) +"lcp" = ( +/obj/structure/fluff/drake_statue{ + desc = "A towering black-stone sculpture of a monstrous raptor. It makes you uncomfortable looking at this colossus."; + name = "giant lizard statue" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"lcU" = ( +/obj/item/beach_ball/holoball, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium_corner"; + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"ldP" = ( +/obj/item/stack/sheet/metal, +/obj/structure/railing{ + dir = 2 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"leE" = ( +/obj/machinery/mecha_part_fabricator, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"lfb" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/cardboard, +/obj/item/reagent_containers/food/snacks/beans, +/obj/item/reagent_containers/food/snacks/beans, +/obj/item/reagent_containers/food/snacks/beans, +/obj/item/reagent_containers/food/snacks/beans, +/obj/item/reagent_containers/food/snacks/candy/donor, +/obj/item/reagent_containers/food/snacks/candy/donor, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"lfj" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_2"; + dir = 8 + }, +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"lgq" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"lgB" = ( +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"lgS" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 8 + }, +/area/awaymission/jungle_planet/outside/waterfall) +"lhy" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"lid" = ( +/obj/structure/grille/broken, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"liw" = ( +/obj/structure/rack/gunrack, +/obj/item/fireaxe/boneaxe, +/obj/item/spear/bonespear, +/obj/item/scythe/bone, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"liA" = ( +/obj/effect/turf_decal/plaque, +/obj/structure/statue/russian_mulebot{ + name = "CargoMULE" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"liL" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"liO" = ( +/obj/item/reagent_containers/food/drinks/mushroom_bowl{ + pixel_y = -11; + pixel_x = -11 + }, +/obj/item/reagent_containers/food/drinks/mushroom_bowl{ + pixel_y = -23; + pixel_x = 9 + }, +/obj/item/reagent_containers/food/snacks/grown/mushroom/libertycap, +/obj/item/reagent_containers/food/snacks/grown/mushroom/reishi{ + pixel_x = -7 + }, +/obj/item/reagent_containers/food/snacks/grown/mushroom/amanita, +/obj/structure/stone_tile/block/cracked, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"ljB" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"ljO" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/awaymission/jungle_planet/inside/complex) +"ljY" = ( +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"lkE" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"lle" = ( +/obj/structure/girder, +/obj/item/stack/rods, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"llu" = ( +/obj/structure/flora/junglebush{ + icon_state = "bush5" + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"llI" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/river) +"lme" = ( +/obj/item/camera_assembly, +/obj/item/stack/cable_coil{ + amount = 2 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"lms" = ( +/obj/machinery/computer{ + dir = 2; + icon_state = "broken"; + icon_screen = "broken"; + icon_keyboard = "generic_key_broken" + }, +/obj/item/paper, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"lmK" = ( +/obj/machinery/door/airlock/research{ + locked = 1; + name = "robotech" + }, +/obj/machinery/door/firedoor/closed, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"lnu" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_robust{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/item/cigbutt, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"lnA" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"lpa" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/obj/machinery/camera{ + network = list("MC-16"); + dir = 1; + c_tag = "Medbay" + }, +/obj/structure/computerframe{ + anchored = 1; + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"lpi" = ( +/obj/machinery/camera{ + network = list("MC-16"); + dir = 1; + c_tag = "Security" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"lqx" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/kitchen_machine/microwave{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"lqG" = ( +/turf/simulated/floor/plating{ + icon_plating = "asteroidplating"; + icon_state = "asteroidplating" + }, +/area/awaymission/jungle_planet/outside/river) +"lqX" = ( +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"lrA" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"lsa" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"lsg" = ( +/obj/structure/closet/crate, +/obj/item/storage/firstaid/regular, +/obj/item/storage/toolbox/emergency, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"lsj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"lsA" = ( +/turf/simulated/floor/plasteel{ + icon_state = "asteroidfloor" + }, +/area/awaymission/jungle_planet/outside) +"lsG" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/necropolis_gate/locked{ + name = "Temple gate" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"lsJ" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"ltE" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"lwa" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"lwg" = ( +/obj/structure/closet/crate/secure/loot, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"lwj" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "swamp6" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"lxd" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/crate, +/obj/item/storage/bag/ore, +/obj/item/kitchen/knife/combat/survival, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/kitchen/knife/combat/survival, +/obj/item/storage/bag/ore, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"lxn" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"lxs" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"lyb" = ( +/obj/effect/turf_decal/grass{ + dir = 8 + }, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_corner"; + dir = 4 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/inside/complex) +"lyL" = ( +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"lAc" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"lAr" = ( +/obj/structure/table/wood, +/obj/item/trash/plate, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"lBd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"lCT" = ( +/obj/structure/reagent_dispensers/fueltank/chem{ + pixel_y = 30 + }, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "purple"; + dir = 1 + }, +/area/awaymission/jungle_planet/inside/complex) +"lDk" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"lFd" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 1 + }, +/area/awaymission/jungle_planet/outside/river) +"lFB" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"lFP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside/river) +"lGm" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"lGL" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"lGN" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"lIv" = ( +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"lIF" = ( +/obj/machinery/iv_drip, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"lIX" = ( +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"lIZ" = ( +/obj/item/flashlight/flare/torch{ + pixel_x = -9; + anchored = 1; + tool_volume = 300; + on = 1 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"lJs" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush2" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"lJw" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/e_gun/old, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"lJK" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"lKZ" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/coastline{ + dir = 6; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"lLh" = ( +/obj/structure/flora/rock/jungle, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"lLF" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"lNN" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"lNR" = ( +/obj/effect/baseturf_helper/asteroid, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/abandoned) +"lOj" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"lOz" = ( +/obj/machinery/door/poddoor/shutters{ + id_tag = "Cargo out" + }, +/obj/machinery/door/airlock/mining{ + name = "second hangar"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"lPf" = ( +/obj/structure/mineral_door/sandstone, +/obj/structure/barricade/wooden/crude, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"lPB" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"lPZ" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 8 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"lRe" = ( +/obj/item/ammo_casing/caseless/arrow, +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"lRl" = ( +/obj/item/flashlight/flare/torch, +/obj/item/flashlight/flare/torch{ + pixel_x = 9 + }, +/obj/structure/table/wood, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"lRu" = ( +/obj/structure/table/reinforced, +/obj/item/airlock_electronics, +/obj/item/shard, +/obj/item/stack/cable_coil{ + amount = 2 + }, +/obj/machinery/door/poddoor/shutters{ + id_tag = "Sec in"; + dir = 8; + requires_power = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/jungle_planet/inside/complex) +"lRz" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"lRG" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/jungle_planet/outside/abandoned) +"lRM" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/lights/mixed, +/obj/item/poster/random_contraband, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"lSN" = ( +/obj/structure/railing{ + dir = 2 + }, +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"lTs" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"lUr" = ( +/obj/structure/closet, +/obj/item/clothing/under/costume/pirate, +/obj/item/clothing/head/bandana, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"lVB" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16 + }, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 8 + }, +/area/awaymission/jungle_planet/outside/river) +"lVQ" = ( +/obj/item/flashlight/flare/torch, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"lWe" = ( +/obj/structure/closet{ + opened = 1 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"lWu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"lWJ" = ( +/obj/structure/rack/gunrack, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"lWL" = ( +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"lXp" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"lZs" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"mat" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"maV" = ( +/obj/machinery/light_construct/directional/north, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"mbt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"mbT" = ( +/obj/structure/flora/tree/jungle/small, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"mcY" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"mdf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + name = "north fire alarm"; + pixel_y = 24 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"mdg" = ( +/obj/structure/closet, +/obj/item/clothing/gloves/fingerless, +/obj/item/kitchen/knife/combat/survival, +/obj/item/storage/bag/ore, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"mdl" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"mdt" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"mfd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/west, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"mfj" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"mfn" = ( +/obj/machinery/camera{ + network = list("MC-16"); + dir = 1; + c_tag = "Dromitory" + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"mfr" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/off_station/empty_charge/south, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"mfu" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"mgq" = ( +/obj/effect/baseturf_helper/beach/sand, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/waterfall) +"mgw" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 1 + }, +/area/awaymission/jungle_planet/outside/river) +"mha" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"mhl" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"mhX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/window/full/plasmareinforced, +/turf/simulated/floor/indestructible, +/area/awaymission/jungle_planet/inside/complex) +"mij" = ( +/obj/structure/grille/broken, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"min" = ( +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/shard, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"miM" = ( +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/cave) +"miP" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush2" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"mjF" = ( +/obj/effect/turf_decal/arrows, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"mjM" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/silver{ + amount = 40 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"mky" = ( +/obj/machinery/door/airlock/mining{ + name = "second hangar"; + locked = 1; + req_access = list(271); + id_tag = "hang2in" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "Cargo in" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"mkC" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_full" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/inside/complex) +"mkI" = ( +/obj/machinery/door/airlock/security{ + locked = 1; + name = "security"; + req_access = list(271) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"mkW" = ( +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"mlq" = ( +/obj/structure/flora/tree/jungle/small, +/obj/effect/firefly/blue{ + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/small) +"mls" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"mlv" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"mlQ" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/fedora/brownfedora, +/obj/item/cane, +/obj/item/clothing/shoes/cowboy/black, +/obj/item/clothing/suit/browntrenchcoat, +/obj/item/clothing/mask/cigarette/pipe, +/obj/item/lighter/zippo/engraved, +/obj/item/clothing/head/helmet/skull, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"mmK" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"mng" = ( +/obj/structure/stone_tile/surrounding_tile, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"mof" = ( +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"mog" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall/indestructible/riveted, +/area/awaymission/jungle_planet/outside/cave) +"mph" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"mpQ" = ( +/obj/machinery/firealarm{ + dir = 1; + name = "south fire alarm"; + pixel_y = -24 + }, +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"mpV" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"mqx" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"mqD" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_corner" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"mqZ" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/clothing/shoes/workboots, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"mre" = ( +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/ammo_casing/caseless/arrow, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"mrK" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/small) +"msr" = ( +/obj/machinery/atmospherics/binary/valve, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"msZ" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "pathway4" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"mtm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"mtz" = ( +/obj/structure/flora/grass/jungle{ + icon_state = "grass10" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"mtZ" = ( +/obj/effect/turf_decal/bot_red, +/obj/structure/mecha_wreckage/ripley, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"mub" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "waterfall2" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"muE" = ( +/obj/item/shovel, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"mwV" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/hud/diagnostic{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/clothing/glasses/hud/diagnostic{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/clothing/suit/storage/labcoat/science, +/obj/item/clothing/suit/storage/labcoat/science, +/obj/item/clothing/shoes/centcom, +/obj/item/clothing/shoes/centcom, +/obj/item/storage/backpack/science, +/obj/item/storage/backpack/science, +/obj/item/cartridge/signal/toxins{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/cartridge/signal/toxins{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"mwX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"mxg" = ( +/obj/effect/turf_decal/grass{ + dir = 5 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"mxl" = ( +/obj/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"mxx" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline{ + dir = 4; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"myG" = ( +/obj/structure/flora/rock/pile/largejungle{ + icon_state = "rocks1"; + pixel_y = 2; + pixel_x = -2 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"myZ" = ( +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/cave/pirate) +"mzp" = ( +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 1 + }, +/area/awaymission/jungle_planet/outside) +"mzt" = ( +/obj/item/chair/wood, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"mzv" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"mzx" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/jungle_planet/inside/complex) +"mzI" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/item/stack/sheet/bone, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"mAF" = ( +/turf/simulated/wall/indestructible/wood, +/area/awaymission/jungle_planet/outside/cave) +"mAP" = ( +/obj/structure/stone_tile/slab, +/mob/living/simple_animal/hostile/jungle_lizard/leader{ + wander = 0 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"mAT" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/reagent_dispensers/fueltank/chem{ + pixel_y = 30 + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"mBd" = ( +/obj/machinery/door/airlock/engineering{ + name = "engineering"; + req_access = list(271) + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"mBN" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/meat, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"mCb" = ( +/obj/structure/flora/tree/great_tree{ + pixel_x = -48; + pixel_y = -10; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"mCj" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"mCz" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16 + }, +/obj/structure/flora/ausbushes/reedbush, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_full" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"mCN" = ( +/obj/item/stock_parts/cell/high/empty, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"mDQ" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/awaymission/jungle_planet/inside/complex) +"mEZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"mFh" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"mFJ" = ( +/obj/effect/turf_decal/grass{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"mFZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/poster/official/random/south, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"mHv" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"mHQ" = ( +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = 32 + }, +/obj/item/camera_assembly, +/obj/item/stack/cable_coil{ + amount = 2 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"mHV" = ( +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/ammo_casing/caseless/arrow, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/abandoned) +"mIG" = ( +/obj/structure/flora/junglebush{ + icon_state = "bush8" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"mIK" = ( +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/head/officer, +/obj/item/clothing/under/color/red, +/obj/item/storage/box/matches, +/obj/structure/closet, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/obj/item/storage/belt/fannypack, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/awaymission/jungle_planet/inside/complex) +"mIR" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/mineral/plastitanium, +/area/awaymission/jungle_planet/outside/abandoned) +"mIS" = ( +/obj/item/stack/sheet/mineral/plastitanium{ + amount = 5 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"mJf" = ( +/obj/item/stack/cable_coil{ + amount = 1; + max_amount = 5 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"mJv" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"mKk" = ( +/obj/structure/computerframe{ + anchored = 1 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "purple"; + dir = 9 + }, +/area/awaymission/jungle_planet/inside/complex) +"mKl" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 4; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"mKz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"mKX" = ( +/obj/item/camera_assembly, +/obj/item/stack/cable_coil{ + amount = 2 + }, +/obj/item/ammo_casing/caseless/arrow, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"mKY" = ( +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"mLM" = ( +/obj/effect/decal/warning_stripes/north, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"mLY" = ( +/obj/structure/bonfire, +/obj/structure{ + icon = 'icons/obj/decorations.dmi'; + icon_state = "paper_cauldron"; + pixel_y = 4; + density = 1; + name = "cauldron" + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"mMo" = ( +/obj/structure/closet/crate/wooden/barrel, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"mNu" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"mNO" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"mNV" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"mOa" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"mOh" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"mOx" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"mOS" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"mOX" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"mPQ" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/rock, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"mRn" = ( +/obj/structure/stone_tile/surrounding/cracked, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"mRw" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"mRQ" = ( +/obj/structure/chair/sofa/right, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"mSc" = ( +/obj/structure/flora/rock, +/obj/effect/mist, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"mSj" = ( +/obj/item/flashlight/flare/torch{ + pixel_x = -9; + anchored = 1; + tool_volume = 300; + on = 1 + }, +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"mSD" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 4 + }, +/area/awaymission/jungle_planet/outside/river) +"mSO" = ( +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"mSW" = ( +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/closet/crate/wooden/wooden_crate, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"mTn" = ( +/obj/structure/flora/junglebush/large, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"mTB" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"mTE" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/fifty, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"mTI" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/shard, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"mUy" = ( +/obj/item/stack/sheet/wood{ + amount = 30 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"mUM" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/turf/simulated/wall/indestructible/riveted, +/area/awaymission/jungle_planet/inside/complex) +"mUR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"mVg" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/machinery/light_construct/directional/south, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"mVl" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/mob/living/simple_animal/hostile/jungle_lizard/spearman{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"mWq" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/cave/small) +"mWX" = ( +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + pixel_x = 8; + id = "Command"; + name = "command shsutters control"; + req_access = list(271) + }, +/obj/machinery/door_control/shutter{ + pixel_x = -8; + name = "shutters control"; + id = "Hang in"; + req_access = list(271) + }, +/obj/machinery/door_control/bolt_control{ + pixel_y = 8; + in_use = 1; + desiredstate_open = 1; + id = "commanddoor" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"mYb" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"mYm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/wrench, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"mYn" = ( +/obj/effect/decal/cleanable/blood/writing, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"mYK" = ( +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"mYL" = ( +/mob/living/simple_animal/hostile/jungle_lizard/spearman{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"mYW" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"mZK" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"mZT" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium_corner"; + dir = 4 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"nai" = ( +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"nbc" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/shard, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"nbB" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_axe{ + id = "cave7" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"nbQ" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "cave3" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"ncb" = ( +/obj/item/clothing/gloves/ring/gold, +/obj/item/clothing/accessory/necklace/locket, +/obj/item/coin/gold, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/closet/crate/wooden/wooden_crate, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"ncg" = ( +/obj/structure/flora/rock, +/mob/living/simple_animal/hostile/panther/huge_panther{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"ncm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"ndV" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_axe{ + id = "cave4" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"neX" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"nfW" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -7; + pixel_y = -10 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "Command"; + requires_power = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"nfZ" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/east, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"ngc" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"ngO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 5 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"nhk" = ( +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"nhA" = ( +/obj/machinery/computer{ + name = "broken computer"; + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; + icon_state = "computer"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"nib" = ( +/obj/item/clothing/suit/armor/bone, +/obj/item/clothing/gloves/bracer, +/obj/item/clothing/gloves/bracer, +/obj/item/clothing/suit/armor/bone, +/obj/structure/closet/crate/wooden/wooden_crate, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"njd" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"njs" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -7; + pixel_y = -10 + }, +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/glass, +/obj/item/ammo_casing/caseless/arrow, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"njE" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"njH" = ( +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/abandoned) +"njL" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/monkeysdelight, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"njP" = ( +/obj/effect/turf_decal/box, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"nld" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 4 + }, +/area/awaymission/jungle_planet/outside/river) +"nma" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/awaymission/jungle_planet/inside/complex) +"nok" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mushroom_bowl, +/obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"nou" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"nph" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"nqg" = ( +/mob/living/simple_animal/lizard, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"nry" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_axe{ + id = "cave6" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"nrY" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/rods, +/obj/item/stack/sheet/metal, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"nsm" = ( +/obj/structure/table/wood, +/obj/item/deck/cards/tiny, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"nsX" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"nub" = ( +/obj/item/airlock_electronics, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"nuz" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"nva" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"nvA" = ( +/obj/structure/table/reinforced, +/obj/item/radio, +/obj/item/radio, +/obj/item/folder/yellow, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"nwg" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"nwi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/item/stock_parts/micro_laser, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"nwk" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 8 + }, +/obj/item/radio{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/awaymission/jungle_planet/outside/abandoned) +"nwM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/directional/west, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "rampbottom" + }, +/area/awaymission/jungle_planet/inside/complex) +"nyc" = ( +/obj/structure/closet, +/obj/item/storage/box/gloves, +/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/plasma, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"nyz" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/portable/canister, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"nyY" = ( +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"nzd" = ( +/obj/structure/closet/crate/can, +/obj/item/trash/can, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"nzh" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "lake2" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"nzK" = ( +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/jungle_planet/inside/complex) +"nAu" = ( +/obj/random/tool, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"nAK" = ( +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/cave/small) +"nBk" = ( +/obj/item/clothing/head/helmet/old, +/obj/effect/decal/cleanable/generic, +/obj/machinery/firealarm{ + dir = 1; + name = "south fire alarm"; + pixel_y = -24 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/jungle_planet/inside/complex) +"nBO" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"nBY" = ( +/obj/item/trash/raisins, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"nCA" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"nCT" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "pathway10" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"nDj" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_full" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"nEG" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"nFb" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "cave9" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"nGx" = ( +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"nIc" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/cave) +"nIL" = ( +/obj/structure/table/tray, +/obj/item/scalpel{ + pixel_y = 8 + }, +/obj/item/retractor, +/obj/item/hemostat{ + pixel_y = 2 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/item/FixOVein, +/obj/item/surgicaldrill, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"nJX" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"nKe" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "pathway12" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"nLu" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "lake3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"nLG" = ( +/obj/item/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"nMp" = ( +/obj/item/flashlight/flare/torch{ + pixel_x = -9; + anchored = 1; + tool_volume = 300; + on = 1 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"nMr" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall/indestructible/riveted, +/area/awaymission/jungle_planet/outside/cave) +"nMI" = ( +/obj/structure/grille, +/obj/item/stack/sheet/plastitaniumglass, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"nMQ" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"nNc" = ( +/obj/structure/falsewall/bookcase, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"nNs" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "swamp1" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"nNY" = ( +/obj/item/stack/rods, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"nOA" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 5 + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"nOE" = ( +/obj/structure/extinguisher_cabinet{ + name = "south extinguisher cabinet"; + pixel_y = -30 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"nOY" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/robot, +/turf/simulated/floor/bluegrid{ + icon_state = "bcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"nPk" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"nQO" = ( +/obj/structure/chair/comfy/brown, +/obj/item/shard{ + icon_state = "small"; + pixel_x = 10; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"nQT" = ( +/obj/structure/flora/rock/pile/largejungle{ + icon_state = "rocks1"; + pixel_y = 2; + pixel_x = -2 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"nRb" = ( +/turf/simulated/wall/mineral/wood, +/area/awaymission/jungle_planet/outside) +"nRH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Hallway Door" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"nRW" = ( +/obj/effect/turf_decal/delivery/white, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"nSy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside/river) +"nSR" = ( +/obj/machinery/light_construct/directional/south, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"nSX" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/item/bikehorn/rubberducky, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"nTH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "Command"; + name = "Command Shutters" + }, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"nTQ" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush2" + }, +/mob/living/simple_animal/hostile/panther/huge_panther{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"nUo" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/turf_decal/grass{ + dir = 5 + }, +/obj/effect/turf_decal/grass{ + dir = 8 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/inside/complex) +"nUx" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/bed/mattress/dirty, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"nUE" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"nWh" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"nWE" = ( +/obj/item/stack/cable_coil{ + amount = 1; + max_amount = 5 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"nXA" = ( +/mob/living/simple_animal/hostile/jungle_lizard/meele, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"nXO" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "cave7" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"nZd" = ( +/obj/structure/sign/poster/contraband/random/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/awaymission/jungle_planet/outside/abandoned) +"nZe" = ( +/obj/item/reagent_containers/food/drinks/trophy/silver_cup, +/obj/item/clothing/gloves/ring/gold, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/closet/crate/wooden/wooden_crate, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"nZE" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"nZX" = ( +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"oal" = ( +/obj/item/stack/rods, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"oaT" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush2" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "pathway1" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"obB" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/jungle_planet/inside) +"obG" = ( +/obj/machinery/light_construct/directional/west, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/effect/decal/cleanable/ants, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside) +"obM" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"odX" = ( +/obj/structure/girder, +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"oeO" = ( +/mob/living/simple_animal/hostile/pirate{ + loot = null + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"oeY" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"ofe" = ( +/mob/living/simple_animal/hostile/jungle_lizard/archer{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"ofn" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"ogU" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/flora/rock, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"ohf" = ( +/obj/item/rack_parts, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"ohw" = ( +/obj/structure/flora/rock, +/obj/effect/mist, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/waterfall) +"ohy" = ( +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"ohA" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/mob/living/simple_animal/hostile/jungle_lizard/archer{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"oiR" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "CMDgate" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"oiX" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"oiZ" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"ojJ" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/waterfall) +"oke" = ( +/obj/item/reagent_containers/food/drinks/oilcan, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"okx" = ( +/obj/structure/beebox, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"okA" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"olI" = ( +/obj/structure/railing{ + dir = 2 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"omz" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/indestructible/riveted, +/area/awaymission/jungle_planet/inside/complex) +"omT" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/crate/wooden/wooden_crate, +/obj/item/reagent_containers/food/snacks/grown/cannabis, +/obj/item/reagent_containers/food/snacks/grown/cannabis, +/obj/item/reagent_containers/food/snacks/grown/cannabis/ultimate, +/obj/item/reagent_containers/food/snacks/grown/cannabis/ultimate, +/obj/item/reagent_containers/food/snacks/grown/cannabis/ultimate, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"omY" = ( +/obj/item/flag, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/small) +"onb" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"onB" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/cave) +"ood" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"ooe" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"oov" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside/river) +"opf" = ( +/obj/effect/decal/nanotrasen_logo{ + icon_state = "logo2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"opl" = ( +/obj/structure/fence{ + dir = 4; + pixel_x = 15 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"opL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"oqn" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush2" + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"oqo" = ( +/obj/machinery/light/directional/west, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"oqX" = ( +/obj/structure/computerframe{ + dir = 4; + anchored = 1 + }, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"orj" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"orm" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"osc" = ( +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"osI" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/awaymission/jungle_planet/outside) +"otS" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"oud" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium_corner"; + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"ouu" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"ouM" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"ovS" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"owA" = ( +/obj/structure/flora/rock, +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "cave10" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"owK" = ( +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"owL" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"oxO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"oyb" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/mining{ + name = "second hangar"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"oyy" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -7; + pixel_y = -10 + }, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"oyE" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/coastline{ + dir = 4; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"oAq" = ( +/obj/item/stack/sheet/bone{ + amount = 5 + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"oAs" = ( +/obj/structure/flora/rock, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"oAu" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "rampbottom" + }, +/area/awaymission/jungle_planet/inside/complex) +"oAH" = ( +/turf/simulated/floor/plasteel{ + icon_state = "rampbottom" + }, +/area/awaymission/jungle_planet/outside/cave) +"oBa" = ( +/obj/structure/table, +/obj/item/radio, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"oBh" = ( +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"oBM" = ( +/obj/structure/flora/junglebush, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"oCe" = ( +/obj/structure{ + icon = 'icons/obj/machines/gateway.dmi'; + icon_state = "toff"; + name = "gateway"; + desc = "A mysterious gateway built by unknown hands, it allows for faster than light travel to far-flung locations."; + density = 1; + anchored = 1; + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkgreycamo" + }, +/area/awaymission/jungle_planet/inside) +"oCR" = ( +/obj/structure{ + icon = 'icons/obj/machines/research.dmi'; + icon_state = "doppler"; + name = "long-distance communication antenna"; + desc = "Technological communication device."; + density = 1; + anchored = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"oDl" = ( +/obj/structure/railing{ + dir = 2 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery/red, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"oDv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "purple"; + dir = 10 + }, +/area/awaymission/jungle_planet/inside/complex) +"oDF" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/structure/railing{ + dir = 2 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"oDZ" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/fluff/drake_statue/falling{ + desc = "A towering black-stone sculpture of a monstrous raptor. Cracks run down its surface and parts of it have fallen off."; + name = "giant lizard statue" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"oFc" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"oFV" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"oFY" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"oHz" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma/fifty, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"oHE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/blood/writing, +/obj/structure/sign/poster/official/random/west, +/obj/machinery/light_construct/directional/west, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"oHG" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"oIE" = ( +/obj/structure/decorative_structures/metal/statue/moon{ + anchored = 1 + }, +/obj/structure/stone_tile/slab/burnt, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"oJv" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"oJx" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"oKl" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"oKw" = ( +/obj/effect/turf_decal/bot_red, +/obj/structure/mecha_wreckage/ripley/firefighter, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"oKy" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "waterfall6" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"oLd" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"oLz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/awaymission/jungle_planet/inside) +"oMg" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/obj/item/reagent_containers/food/drinks/cans/beer{ + list_reagents = list("beer" = 0); + pixel_x = -11; + pixel_y = 2 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"oMS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"oNm" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"oNz" = ( +/obj/item/clothing/gloves/ring/gold, +/obj/structure/safe/floor, +/obj/item/documents/nanotrasen, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/item/kirbyplants, +/mob/living/simple_animal/hostile/poison_snake{ + wander = 0 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"oND" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/landmark/awaystart, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside) +"oOq" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"oPC" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"oQl" = ( +/obj/effect/baseturf_helper/asteroid, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/cave/pirate) +"oQC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"oQY" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "cave6" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"oRs" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"oRE" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_full" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"oSb" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"oSm" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"oSr" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 0.3; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/obj/structure/flora/tree/jungle/small, +/obj/effect/dummy/lighting_obj{ + light_power = 6 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/small) +"oSL" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"oSZ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"oTf" = ( +/obj/structure/computerframe{ + anchored = 1 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"oTr" = ( +/obj/structure/table/reinforced, +/obj/item/kitchen/utensil/fork{ + pixel_x = -2 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"oTJ" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mushroom_bowl{ + pixel_y = -11; + pixel_x = -11 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"oUq" = ( +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 1 + }, +/area/awaymission/jungle_planet/outside/river) +"oWz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"oXX" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_full" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/waterfall) +"oYz" = ( +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"oZh" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_full" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"oZt" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "waterfall5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"oZC" = ( +/obj/structure/table, +/obj/item/multitool, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/clothing/gloves/color/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"oZK" = ( +/obj/machinery/door/airlock/command{ + locked = 1; + name = "command"; + req_access = list(271) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"pbA" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"pbE" = ( +/obj/structure/chair/wood, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"pbH" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"pce" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"pcp" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"pcr" = ( +/obj/item/stack/sheet/mineral/plastitanium, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"pcB" = ( +/obj/structure/flora/junglebush/large, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"pdL" = ( +/obj/item/clothing/glasses/sunglasses, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"pdY" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"peh" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"pfh" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkgreycamo" + }, +/area/awaymission/jungle_planet/inside) +"pfi" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "pathway7" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"pgx" = ( +/obj/structure/railing{ + dir = 2 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"pgy" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"pho" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "pathway6" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"phs" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"piJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/machinery/light_construct/directional/east, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"piV" = ( +/obj/structure/largecrate, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"piW" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15 + }, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside) +"pjI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"pjP" = ( +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c500, +/obj/machinery/light/small/directional/south, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/closet/crate/wooden/wooden_crate, +/obj/item/stack/spacecash/c1000, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"pjT" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"pkD" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 6; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"pli" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/junglebush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"plk" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"plU" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"pmk" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/newton{ + pixel_y = -6; + pixel_x = 8 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"pnG" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"pnJ" = ( +/obj/effect/spawner/window/shuttle, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"poV" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_axe{ + id = "cave3" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"ppD" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"ppW" = ( +/obj/structure/statue/silver/monkey, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"pqt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + name = "south fire alarm"; + pixel_y = -24 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"prp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"prI" = ( +/obj/item/reagent_containers/glass/beaker/waterbottle, +/obj/item/ammo_casing/caseless/arrow, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"psv" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/screwdriver, +/obj/item/reagent_containers/food/drinks/coffee{ + desc = "Its cold like the space outside noo!"; + pixel_x = -6; + pixel_y = 8; + list_reagents = list("coffee" = 0) + }, +/obj/item/radio, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside) +"psW" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/cave) +"pus" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium_corner"; + dir = 1 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"puK" = ( +/obj/effect/mist, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"pvb" = ( +/obj/structure{ + icon = 'icons/obj/machines/gateway.dmi'; + icon_state = "toff"; + name = "gateway"; + desc = "A mysterious gateway built by unknown hands, it allows for faster than light travel to far-flung locations."; + density = 1; + anchored = 1; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"pwd" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"pwP" = ( +/turf/simulated/wall/indestructible/wood, +/area/awaymission/jungle_planet/outside/cave/pirate) +"pwS" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"pxl" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside) +"pxm" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "rampbottom" + }, +/area/awaymission/jungle_planet/outside/river) +"pyu" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"pyX" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"pzw" = ( +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"pzW" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/item/bedsheet/black, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"pzZ" = ( +/obj/structure{ + icon = 'icons/obj/turrets.dmi'; + icon_state = "syndieturret2"; + name = "destroyed turret"; + desc = "Technological communication device"; + density = 1; + anchored = 1 + }, +/turf/simulated/wall/indestructible/syndishuttle, +/area/awaymission/jungle_planet/outside/abandoned) +"pBQ" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"pCa" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"pCi" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"pDO" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"pEk" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline{ + dir = 6; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"pFF" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/head/welding{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 2 + }, +/obj/item/disk/tech_disk{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"pFI" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"pGk" = ( +/obj/machinery/atmospherics/binary/valve{ + dir = 4 + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"pGy" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet{ + opened = 1 + }, +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"pGZ" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall/r_wall, +/area/awaymission/jungle_planet/inside) +"pHo" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"pHp" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "asteroidfloor" + }, +/area/awaymission/jungle_planet/outside/river) +"pII" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma{ + amount = 10 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"pJn" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"pJH" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"pJO" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "purple"; + dir = 1 + }, +/area/awaymission/jungle_planet/inside/complex) +"pKO" = ( +/mob/living/simple_animal/hostile/poison_snake{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"pKX" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"pLD" = ( +/obj/item/stack/rods, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"pLT" = ( +/obj/structure/sign/poster/official/walk{ + pixel_y = -32 + }, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"pMn" = ( +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/river) +"pMB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/bluegrid{ + icon_state = "bcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"pMW" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"pNv" = ( +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"pNW" = ( +/obj/machinery/porta_turret_construct, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"pOr" = ( +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/abandoned) +"pQX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"pRD" = ( +/obj/item/cigbutt, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"pRO" = ( +/obj/item/stack/sheet/metal, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"pRX" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15 + }, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline{ + dir = 6; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"pRZ" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_axe{ + id = "lake5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"pSD" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/cave/small) +"pTC" = ( +/obj/machinery/firealarm{ + dir = 1; + name = "south fire alarm"; + pixel_y = -24 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"pUX" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/atmospherics/portable/canister, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"pVc" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"pWf" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_2"; + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/bluegrid{ + icon_state = "bcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"pWh" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/fluff/dusty_jacket, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/mask/bandana/fluff/dar, +/obj/item/clothing/under/pants/tan, +/obj/item/card/id/away/old/sec{ + name = "MC-16 multicard"; + desc = "A clip on ID Badge, has one of those fancy new magnetic strips built in." + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/small) +"pWt" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "cave7" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"pWH" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box/empty, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"pWK" = ( +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"pXA" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside) +"pYs" = ( +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"pYP" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"pZa" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"pZY" = ( +/obj/item/reagent_containers/food/drinks/oilcan, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"qaT" = ( +/obj/structure/sign/radiation{ + pixel_y = 65 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/portable/pump, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"qbt" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"qbS" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/item/pipe_meter{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"qbZ" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/structure/spider/cocoon, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"qcZ" = ( +/obj/structure/table/wood, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/small) +"qdL" = ( +/obj/structure/fence, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"qeb" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/projectile/bow, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"qee" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/newspaper, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"qeg" = ( +/obj/effect/mob_spawn/human/corpse/syndicatesoldier, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"qeW" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"qfd" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"qfJ" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"qgv" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 6 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"qgA" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/storage/fancy/egg_box, +/obj/item/reagent_containers/food/drinks/bottle/cream, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"qgJ" = ( +/obj/machinery/light_switch{ + name = "east light switch"; + pixel_x = 24; + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"qhD" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"qim" = ( +/obj/effect/decal/remains/human, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"qjI" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"qkl" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/ammo_casing/caseless/arrow, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"qkp" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"qkM" = ( +/obj/item/coin/gold, +/obj/item/coin/gold{ + pixel_x = -9 + }, +/obj/item/clothing/accessory/necklace/locket{ + pixel_x = 9 + }, +/obj/item/stack/ore/plasma, +/turf/simulated/floor/plasteel{ + icon_state = "rampbottom" + }, +/area/awaymission/jungle_planet/outside/cave) +"qlp" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"qlE" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/remains/human, +/obj/machinery/light/directional/west, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"qma" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = 32 + }, +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"qmr" = ( +/obj/structure/table, +/obj/machinery/computer{ + name = "broken computer"; + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; + icon_state = "laptop"; + dir = 8; + icon_keyboard = "laptop_key_lightmask"; + icon_screen = "laptop_broken" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"qni" = ( +/turf/simulated/wall/indestructible/riveted, +/area/awaymission/jungle_planet/inside) +"qnu" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"qnx" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 8 + }, +/area/awaymission/jungle_planet/outside) +"qnM" = ( +/mob/living/simple_animal/hostile/jungle_lizard/spearman{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"qnO" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"qoi" = ( +/obj/structure/flora/grass/jungle{ + icon_state = "bush2" + }, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 1 + }, +/area/awaymission/jungle_planet/outside/river) +"qox" = ( +/turf/simulated/wall, +/area/awaymission/jungle_planet/outside/abandoned) +"qph" = ( +/obj/structure/closet/syndicate, +/obj/item/clothing/suit/jacket/syndicatebomber, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/awaymission/jungle_planet/outside/abandoned) +"qpu" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"qpv" = ( +/obj/item/shard, +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"qpP" = ( +/obj/structure/flora/junglebush{ + icon_state = "bush4" + }, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/awaymission/jungle_planet/outside) +"qpV" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/item/circular_saw, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"qpZ" = ( +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/obj/structure/computerframe{ + anchored = 1 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/awaymission/jungle_planet/outside/abandoned) +"qqi" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"qqF" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"qrw" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall, +/area/awaymission/jungle_planet/outside/cave/pirate) +"qsD" = ( +/mob/living/simple_animal/hostile/scarybat{ + faction = list("junglemob") + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"qsJ" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"qtS" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"quj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"qur" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"qvZ" = ( +/obj/structure/fence/corner{ + dir = 1; + pixel_x = -14; + pixel_y = -1 + }, +/obj/structure/fence{ + pixel_y = -1 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"qwf" = ( +/obj/machinery/door/airlock/engineering{ + name = "engineering"; + req_access = list(271) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"qwh" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"qwq" = ( +/obj/effect/turf_decal/grass, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"qwS" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"qwX" = ( +/obj/machinery/atmospherics/trinary/tvalve/bypass{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"qxn" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "Command"; + name = "Command Shutters" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"qxu" = ( +/obj/effect/turf_decal/arrows, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"qxx" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 4 + }, +/area/awaymission/jungle_planet/outside/river) +"qyk" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"qzb" = ( +/obj/item/razor, +/obj/item/clothing/head/officer, +/obj/item/flashlight/seclite, +/obj/structure/closet, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/obj/item/lighter/zippo, +/obj/item/clothing/head/officer, +/obj/item/coin/iron, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/awaymission/jungle_planet/inside/complex) +"qzh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + locked = 1; + name = "main hangar"; + req_access = list(271) + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "Hang in"; + requires_power = 0 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"qzW" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"qBi" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/closet/crate/radiation, +/obj/item/stack/sheet/mineral/uranium{ + amount = 30 + }, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"qCn" = ( +/mob/living/simple_animal/hostile/jungle_lizard/axeman{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"qCV" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"qDq" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"qDP" = ( +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"qEe" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"qEf" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"qEs" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/cave) +"qEZ" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 4; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"qFu" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium_corner"; + dir = 4 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"qFG" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"qFK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"qGN" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"qIk" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/warning_stripes/west, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/ammo_casing/caseless/arrow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"qIV" = ( +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside) +"qJj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/closed, +/obj/machinery/door/airlock/engineering{ + name = "engineering"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"qJo" = ( +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 8 + }, +/area/awaymission/jungle_planet/outside/river) +"qJI" = ( +/obj/item/storage/fancy/donut_box/empty, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/awaymission/jungle_planet/inside/complex) +"qJR" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/largecrate, +/obj/structure/sign/explosives/alt{ + pixel_x = 31 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"qLR" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/jungle_planet/inside/complex) +"qNh" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"qNs" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/turf_decal/grass{ + dir = 9 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/inside/complex) +"qNW" = ( +/obj/structure/bonfire/lit, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/small) +"qOs" = ( +/obj/structure/sink{ + layer = 4; + pixel_y = 26 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"qOH" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/meat{ + pixel_y = -22; + pixel_x = -7 + }, +/obj/item/reagent_containers/food/snacks/monkeysdelight, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"qOM" = ( +/obj/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"qPc" = ( +/obj/structure/flora/grass/jungle{ + icon_state = "grass7" + }, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"qPA" = ( +/obj/machinery/kitchen_machine/oven, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"qPT" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"qQz" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/kitchen/knife{ + pixel_x = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"qQS" = ( +/obj/structure/stone_tile/cracked, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"qRh" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"qSF" = ( +/obj/item/shard, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"qST" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/gold{ + amount = 43 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"qTm" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "swamp4" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"qTn" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"qTC" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"qTY" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "waterfall1" + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"qUO" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"qVg" = ( +/obj/machinery/computer{ + dir = 8; + icon_state = "broken"; + icon_screen = "broken"; + icon_keyboard = "generic_key_broken" + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"qVG" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/mob/living/simple_animal/hostile/panther/huge_panther{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"qVY" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/meat, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"qVZ" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"qXQ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/cave) +"qYg" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "lake4" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"qYR" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"qZP" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"ras" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"raJ" = ( +/mob/living/simple_animal/hostile/jungle_lizard/spearman{ + wander = 0 + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"rbk" = ( +/obj/structure/sink/directional/west, +/obj/effect/decal/cleanable/spiderling_remains, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"rbm" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"rbZ" = ( +/obj/item/kitchen/knife/combat/survival/bone, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"rce" = ( +/obj/structure/flora/rock/pile/largejungle{ + icon_state = "rocks3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"rcw" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"rcF" = ( +/turf/simulated/wall/indestructible/whiteshuttle/nodiagonal, +/area/awaymission/jungle_planet/outside/abandoned) +"rcL" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"rdv" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 1 + }, +/area/awaymission/jungle_planet/outside/river) +"rdF" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"rdZ" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"rfe" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"rfZ" = ( +/obj/structure/largecrate, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"rgF" = ( +/obj/structure/table, +/obj/item/trash/can, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"rhk" = ( +/obj/item/stack/rods, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"rhY" = ( +/obj/structure/table/holotable/wood, +/obj/item/trash/candle{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/coin/gold, +/obj/item/clothing/mask/cigarette/pipe/cobpipe, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + list_reagents = list("rum" = 0) + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"rim" = ( +/obj/structure/chair/wood, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"riR" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + id_tag = "Sec in"; + requires_power = 0 + }, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"rjb" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/red{ + icon_state = "sheetred"; + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/awaymission/jungle_planet/inside/complex) +"rjA" = ( +/obj/structure/rack/gunrack, +/obj/structure/window/reinforced, +/obj/item/gun/energy/laser/retro/old{ + desc = "An older model of the basic lasergun, no longer used by Nanotrasen's private security or military forces. Nevertheless, it is still quite deadly and easy to maintain, making it a favorite amongst pirates and other outlaws." + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 8 + }, +/obj/item/gun/energy/laser/retro/old{ + desc = "An older model of the basic lasergun, no longer used by Nanotrasen's private security or military forces. Nevertheless, it is still quite deadly and easy to maintain, making it a favorite amongst pirates and other outlaws."; + pixel_y = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/awaymission/jungle_planet/outside/abandoned) +"rks" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"rlI" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort2" + }, +/obj/structure/sign/explosives/alt{ + pixel_x = 31 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"rlZ" = ( +/obj/structure/railing{ + dir = 2 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"rma" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"rmO" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "cave9" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"rmV" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"rne" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "pathway9" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"rnw" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/item/shard, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"rnx" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/tree/jungle, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"rnO" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/chair, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"rox" = ( +/obj/structure/flora/junglebush{ + icon_state = "bush8" + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"rpw" = ( +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"rpz" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"rpZ" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/waterfall) +"rqY" = ( +/mob/living/simple_animal/hostile/jungle_lizard/spearman{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"rrf" = ( +/obj/structure{ + icon_state = "smes"; + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit"; + icon = 'icons/obj/power.dmi'; + density = 1 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"rrw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/ammo_casing/caseless/arrow, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"rrT" = ( +/obj/effect/landmark/burnturf, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"rsE" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/jungle_planet/inside/complex) +"ruk" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/cave/small) +"ruK" = ( +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 4 + }, +/area/awaymission/jungle_planet/outside/river) +"rvr" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"rvF" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"rvH" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "pathway6" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"rww" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"rwz" = ( +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"rwV" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"rxH" = ( +/obj/structure/flora/junglebush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"rxJ" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"ryt" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"ryw" = ( +/obj/machinery/defibrillator_mount/loaded{ + pixel_y = -32 + }, +/obj/machinery/optable, +/obj/item/clothing/gloves/color/latex, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "bluefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"ryQ" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16 + }, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"ryS" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"rzP" = ( +/turf/simulated/floor/plasteel{ + icon_state = "asteroidfloor" + }, +/area/awaymission/jungle_planet/outside/river) +"rAd" = ( +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/small) +"rAr" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"rAs" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/east, +/obj/machinery/door/airlock/mining{ + name = "main hangar"; + req_access = list(271) + }, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "Hang in"; + requires_power = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"rAR" = ( +/obj/item/ammo_casing/caseless/arrow, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"rBb" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/ore_box, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"rBr" = ( +/obj/structure/chair/office/dark, +/obj/machinery/computer{ + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; + icon_keyboard = ""; + icon_screen = "telescreen"; + icon_state = "telescreen_console"; + pixel_x = -32; + density = 0 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"rBC" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"rBF" = ( +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/waterfall) +"rCN" = ( +/obj/structure/table_frame, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"rDj" = ( +/obj/random/tool, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"rEW" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"rFs" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/ore_box, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"rFx" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"rHc" = ( +/obj/structure/flora/rock, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"rHn" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/awaymission/jungle_planet/outside/abandoned) +"rHT" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/storage/box/matches, +/obj/effect/decal/cleanable/cobweb2, +/obj/item/clothing/mask/cigarette/pipe, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"rIj" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 8 + }, +/area/awaymission/jungle_planet/outside/river) +"rIP" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/sign/poster/official/walk{ + pixel_y = 33 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"rJp" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/flora/ash/cap_shroom, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"rJu" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/awaymission/jungle_planet/outside/abandoned) +"rJC" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"rKf" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "pathway8" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"rKg" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"rKR" = ( +/obj/structure/fence{ + pixel_y = -1 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"rLA" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"rLI" = ( +/obj/item/cultivator/rake, +/mob/living/simple_animal/hostile/jungle_lizard/meele{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"rMi" = ( +/obj/structure/bonfire{ + layer = 2.9 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"rMG" = ( +/obj/structure/flora/grass/jungle{ + icon_state = "bush8" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"rMM" = ( +/obj/structure/flora/junglebush{ + icon_state = "bush5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"rMO" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/brute, +/obj/item/bonegel, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"rNb" = ( +/obj/structure/railing, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"rNB" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"rNE" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/cave) +"rNJ" = ( +/obj/machinery/door_control/shutter/south{ + id = "Main in"; + req_access = list(271); + requires_power = 0 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"rNK" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + id_tag = "Sec in"; + requires_power = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"rOc" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"rOh" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"rPW" = ( +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"rQp" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger{ + pixel_y = 6; + pixel_x = 2 + }, +/obj/item/stock_parts/cell/high/plus{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/stock_parts/cell/high/plus{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/radio{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"rQP" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"rRd" = ( +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"rRq" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline{ + dir = 4; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"rRv" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"rSb" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"rSn" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"rSv" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/jungle_planet/outside/cave) +"rSM" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/tracksuit, +/obj/item/clothing/head/soft/black, +/obj/item/stack/spacecash/c20, +/obj/item/crowbar/small, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"rSX" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"rTs" = ( +/obj/structure{ + icon = 'icons/obj/machines/telecomms.dmi'; + icon_state = "AAS_Off_Open"; + name = "messaging server"; + desc = "A machine that processes and routes PDA and request console messages."; + pixel_x = -5; + density = 1; + anchored = 1 + }, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/turf/simulated/floor/greengrid{ + icon_state = "bcircuit" + }, +/area/awaymission/jungle_planet/inside/complex) +"rUm" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/closet/crate{ + opened = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"rUV" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Shuttle Maintenance" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"rUY" = ( +/obj/effect/baseturf_helper/asteroid, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/inside) +"rVe" = ( +/obj/item/camera_assembly, +/obj/item/stack/cable_coil{ + pixel_y = 10; + amount = 2 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"rVt" = ( +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"rVw" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/river) +"rXc" = ( +/obj/item/coin/gold{ + pixel_x = -17; + pixel_y = 11 + }, +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"rXw" = ( +/obj/structure/mineral_door/wood, +/obj/structure/barricade/wooden/crude, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"rXM" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/flashlight/flare/torch{ + pixel_x = -9; + anchored = 1; + tool_volume = 300; + on = 1 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"rXU" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"rYr" = ( +/mob/living/simple_animal/hostile/pirate{ + loot = null + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"rYy" = ( +/obj/structure/fence{ + dir = 4; + pixel_x = -14 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"rYB" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"rYD" = ( +/obj/effect/turf_decal/grass{ + dir = 4 + }, +/mob/living/simple_animal/hostile/retaliate/poison/snake{ + faction = list("hostile","jungle","junglemob") + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"rZa" = ( +/obj/item/shovel, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"sac" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/small) +"sar" = ( +/obj/structure{ + icon = 'icons/obj/machines/mining_machines.dmi'; + icon_state = "unloader-corner"; + name = "unloading machine"; + anchored = 1 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"sbj" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15 + }, +/obj/structure/flora/ausbushes/reedbush, +/obj/effect/mist, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"sbm" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/obj/item/shard, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"sbr" = ( +/turf/simulated/floor/chasm/straight_down/lava_land_surface/normal_air{ + light_color = null; + light_range = 0; + light_power = 0 + }, +/area/awaymission/jungle_planet/outside/cave) +"sbX" = ( +/obj/structure/barricade/wooden, +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "waterfall1" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/waterfall) +"scm" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -7; + pixel_y = -10 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"sdf" = ( +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"sdS" = ( +/mob/living/simple_animal/hostile/pirate/ranged{ + loot = null + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"sel" = ( +/obj/item/stack/sheet/metal, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"sex" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"sfR" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"sgy" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/largecrate, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"shj" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/effect/turf_decal/delivery/white, +/obj/machinery/atmospherics/portable/canister, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"sia" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"siH" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"sji" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"sjJ" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"skb" = ( +/obj/structure/fence{ + dir = 4; + pixel_x = -14 + }, +/obj/structure/holohoop{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"skh" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"snc" = ( +/obj/structure/chair/sofa/pew/left{ + dir = 1 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"snf" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"snP" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/warning_stripes/south, +/obj/machinery/light_construct/directional/south, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"soo" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rock, +/obj/item/stack/rods, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"soK" = ( +/obj/effect/decal/cleanable/generic, +/obj/machinery/light/directional/north, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"spr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"spE" = ( +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"spN" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 4 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"sqc" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"sqI" = ( +/obj/structure/table_frame, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/awaymission/jungle_planet/outside) +"sru" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"srB" = ( +/obj/structure/ore_box, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"srO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/west, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"srT" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/light_construct/directional/north, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"ssu" = ( +/obj/structure/sign/poster/official/random/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "rampbottom" + }, +/area/awaymission/jungle_planet/inside/complex) +"ssW" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_2" + }, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"stk" = ( +/obj/item/extinguisher, +/obj/item/shard, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"suk" = ( +/obj/structure/necropolis_arch{ + name = "Temple Arch"; + desc = "A massive arch decorated with horrific ornaments and draughts." + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"suE" = ( +/obj/structure/mineral_door/wood, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/small) +"suM" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "cave8" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"sxr" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 8 + }, +/area/awaymission/jungle_planet/outside/river) +"syB" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside) +"syJ" = ( +/obj/structure/table, +/obj/item/card/id/away/old/sec{ + name = "MC-16 multicard"; + desc = "A clip on ID Badge, has one of those fancy new magnetic strips built in." + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside) +"syQ" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/brown{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"syW" = ( +/obj/structure/fence/corner{ + pixel_x = 15; + pixel_y = -1 + }, +/obj/structure/fence{ + pixel_y = -1 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"syZ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"szb" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"szn" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"szw" = ( +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 9 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"szR" = ( +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/metal/fifty, +/obj/structure/closet/crate{ + opened = 1 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"szY" = ( +/obj/item/stack/packageWrap, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"sAP" = ( +/obj/machinery/door/poddoor/shutters{ + id_tag = "Sec in"; + dir = 8; + requires_power = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"sBv" = ( +/obj/item/chair{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"sBD" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "swamp4" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"sCe" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/item/shard, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"sCU" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"sDk" = ( +/obj/item/chair/wood{ + pixel_x = 22 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"sDP" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"sDQ" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/item/reagent_containers/food/snacks/grown/poppy, +/obj/item/reagent_containers/food/snacks/grown/poppy/geranium, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"sFa" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/cave) +"sFi" = ( +/obj/structure/grille, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"sHe" = ( +/obj/machinery/door/airlock/public{ + name = "Kitchen"; + req_access = list(271) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"sHm" = ( +/obj/item/storage/backpack/industrial, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"sHQ" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/wall, +/area/awaymission/jungle_planet/outside/cave/pirate) +"sIz" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -4 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"sIC" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "waterfall1" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"sIX" = ( +/obj/structure/flora/grass/jungle{ + icon_state = "grass7" + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 4; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"sJd" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"sKo" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/crate/engineering, +/obj/item/stock_parts/cell/high, +/obj/item/stack/cable_coil, +/obj/item/stack/rods{ + amount = 15 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"sKN" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"sKS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"sMs" = ( +/obj/structure/kitchenspike_frame, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"sMA" = ( +/obj/structure/computerframe{ + anchored = 1 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"sMO" = ( +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"sMZ" = ( +/obj/item/pen{ + pixel_x = 8 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "dark" + }, +/area/awaymission/jungle_planet/inside/complex) +"sNa" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"sNM" = ( +/obj/structure/decorative_structures/metal/statue/sun{ + layer = 10; + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"sOd" = ( +/obj/item/stack/ore/glass, +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"sOV" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "pathway9" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"sPL" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"sPM" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"sQH" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/door_control/shutter/south{ + id = "Cargo in"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"sQQ" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_axe{ + id = "cave3" + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"sRf" = ( +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "rampbottom" + }, +/area/awaymission/jungle_planet/outside/river) +"sRJ" = ( +/obj/machinery/computer{ + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; + name = "broken computer" + }, +/turf/simulated/floor/plasteel{ + icon_state = "purple"; + dir = 5 + }, +/area/awaymission/jungle_planet/inside/complex) +"sSk" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/cave/small) +"sTs" = ( +/obj/structure/closet/crate/can, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"sTG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"sTK" = ( +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/waterfall) +"sTS" = ( +/obj/machinery/door/firedoor/closed, +/obj/machinery/door/poddoor/shutters{ + id_tag = "Arm in"; + dir = 2; + requires_power = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/jungle_planet/inside/complex) +"sTV" = ( +/obj/effect/decal/warning_stripes/north, +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"sUj" = ( +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"sUJ" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"sUU" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"sVj" = ( +/turf/simulated/floor/plasteel{ + icon_state = "purple"; + dir = 1 + }, +/area/awaymission/jungle_planet/inside/complex) +"sWi" = ( +/obj/structure/sign/poster/contraband/random/north, +/obj/effect/decal/cleanable/cobweb2, +/obj/item/rack_parts, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"sWR" = ( +/obj/structure/sign/radiation{ + pixel_y = 65 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"sXj" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/awaymission/jungle_planet/inside/complex) +"sXU" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"sYz" = ( +/obj/structure/bookcase/random, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/small) +"sYR" = ( +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"sZo" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"sZs" = ( +/mob/living/simple_animal/hostile/pirate/ranged{ + loot = null + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"tas" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"tbb" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"tcb" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"tcr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"tcP" = ( +/obj/structure/table, +/obj/item/folder/syndicate/red, +/obj/item/pen, +/turf/simulated/floor/mineral/plastitanium, +/area/awaymission/jungle_planet/outside/abandoned) +"tcS" = ( +/obj/structure/flora/tree/jungle/small, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"tdt" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"tei" = ( +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/small) +"tek" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"tey" = ( +/obj/item/reagent_containers/food/snacks/grown/chili, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle, +/obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle, +/obj/item/reagent_containers/food/snacks/grown/onion, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/closet/crate/wooden/wooden_crate, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"teN" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"tfh" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"tfz" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"tgl" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"tha" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"tho" = ( +/obj/effect/spawner/random_spawners/blood_often, +/mob/living/simple_animal/hostile/jungle_lizard/meele{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"thr" = ( +/obj/structure{ + icon = 'icons/obj/machines/gateway.dmi'; + icon_state = "toff"; + name = "gateway"; + density = 1; + anchored = 1; + dir = 9; + desc = "A mysterious gateway built by unknown hands, it allows for faster than light travel to far-flung locations." + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkgreycamo" + }, +/area/awaymission/jungle_planet/inside) +"thJ" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/bluegrid{ + icon_state = "bcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"tio" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/tree/jungle, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"tiq" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"tiD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"tiT" = ( +/obj/effect/waterfall{ + dir = 4 + }, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/cave/small) +"tjL" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"tjS" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "swamp2" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"tlv" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"tmv" = ( +/obj/structure/table/wood, +/obj/item/stack/sheet/bone, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"tmC" = ( +/mob/living/simple_animal/hostile/jungle_lizard/meele{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"tna" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"tnm" = ( +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 4 + }, +/area/awaymission/jungle_planet/outside/waterfall) +"tnK" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"tnM" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"tnS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stack/rods, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"tnT" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_corner"; + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"tnX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"tpa" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"tps" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"tpH" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"tqm" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"tqq" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/head/helmet/old, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/awaymission/jungle_planet/inside/complex) +"tqF" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"tqZ" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/item/shard, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"trG" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"trH" = ( +/obj/machinery/atmospherics/portable/canister, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"tsv" = ( +/obj/effect/decal/cleanable/blood/gibs/robot, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"tsM" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"tte" = ( +/obj/item/bikehorn/golden, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/closet/crate/wooden/wooden_crate, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"ttC" = ( +/obj/item/chair/stool/bar{ + pixel_x = -13 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"ttY" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside) +"tvT" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "pathway7" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"twn" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"twF" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plasteel{ + icon_state = "asteroidfloor" + }, +/area/awaymission/jungle_planet/outside/river) +"twZ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"txh" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"tzH" = ( +/obj/machinery/door/airlock/mining{ + name = "second hangar"; + locked = 1; + req_access = list(271); + id_tag = "hang2in" + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "Cargo in" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"tAH" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"tAR" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/landmark/awaystart, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"tAY" = ( +/obj/machinery/light_construct/small/north, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"tBs" = ( +/obj/effect/waterfall{ + dir = 4 + }, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/cave) +"tBu" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/awaymission/jungle_planet/inside) +"tBJ" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"tCk" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"tCl" = ( +/obj/item/chair/wood, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"tDf" = ( +/obj/effect/decal/warning_stripes/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"tDn" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"tDA" = ( +/obj/structure/flora/rock/pile, +/mob/living/simple_animal/hostile/scarybat{ + faction = list("junglemob") + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"tDH" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/waterfall) +"tEi" = ( +/obj/item/rack_parts, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"tEr" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "purple"; + dir = 1 + }, +/area/awaymission/jungle_planet/inside/complex) +"tEA" = ( +/obj/structure/flora/tree/jungle/small, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"tEQ" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"tGN" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/bluegrid{ + icon_state = "bcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"tHr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"tHT" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"tIH" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"tJi" = ( +/obj/structure/kitchenspike_frame, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"tJG" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"tKb" = ( +/obj/structure/fence, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"tKK" = ( +/obj/structure/table, +/obj/item/card/id/away/old/sec{ + name = "MC-16 multicard"; + desc = "A clip on ID Badge, has one of those fancy new magnetic strips built in." + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"tLh" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate{ + opened = 1 + }, +/obj/item/stack/sheet/mineral/plasma, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"tLH" = ( +/obj/structure/door_assembly/door_assembly_ext{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"tLL" = ( +/obj/structure/table/wood/fancy/royalblack, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"tMk" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "cave2" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"tMG" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/cobweb2, +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"tMH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"tNq" = ( +/obj/effect/waterfall{ + dir = 1 + }, +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/cave) +"tNF" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"tOo" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"tOz" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plasteel{ + icon_state = "asteroidfloor" + }, +/area/awaymission/jungle_planet/outside) +"tOB" = ( +/obj/structure/girder/reinforced, +/obj/item/stack/sheet/mineral/plastitanium, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"tPa" = ( +/obj/structure/closet, +/obj/item/clothing/suit/browntrenchcoat, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/gloves/fingerless, +/obj/item/kitchen/knife/combat/survival, +/obj/item/storage/belt/utility, +/obj/item/flashlight/seclite, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"tQw" = ( +/obj/item/stack/cable_coil{ + pixel_y = 10; + amount = 2 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"tQB" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "pathway13" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"tRE" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"tSG" = ( +/obj/structure/morgue{ + dir = 2 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/awaymission/jungle_planet/inside/complex) +"tTi" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"tTx" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/decal/remains/human, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"tTG" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"tTV" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"tTZ" = ( +/obj/effect/turf_decal/caution, +/obj/structure/railing{ + dir = 2 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"tUb" = ( +/obj/effect/turf_decal/delivery/white, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"tUn" = ( +/obj/structure/flora/junglebush{ + icon_state = "bush8" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"tUw" = ( +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"tUy" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters{ + id_tag = "Right in"; + dir = 8; + requires_power = 0 + }, +/obj/machinery/door/airlock/mining{ + locked = 1; + name = "main hangar"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"tUU" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/awaystart, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"tUX" = ( +/obj/effect/turf_decal/delivery/white, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"tVe" = ( +/obj/item/stack/sheet/metal, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"tVL" = ( +/obj/structure/flora/grass/jungle, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"tVQ" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"tWg" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"tWr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/window/full/plasmareinforced, +/turf/simulated/floor/indestructible, +/area/awaymission/jungle_planet/inside/complex) +"tWG" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"tYz" = ( +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"tYH" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/awaymission/jungle_planet/inside/complex) +"tYL" = ( +/obj/structure/fence, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium_corner"; + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"tZR" = ( +/obj/structure/fence/door, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"tZW" = ( +/obj/mecha/working/ripley{ + obj_integrity = 140 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"uaO" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate{ + opened = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"ubw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/machinery/light_construct/directional/south, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"uca" = ( +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 1 + }, +/obj/structure/ore_box, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"ucj" = ( +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"ucK" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"ude" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle{ + pixel_x = -10 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/stack/medical/bruise_pack/advanced, +/obj/item/stack/medical/bruise_pack, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"udf" = ( +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"udR" = ( +/obj/item/bonesetter{ + pixel_x = 17; + pixel_y = -13 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/item/storage/firstaid/toxin, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"udS" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "pathway11" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"ueo" = ( +/obj/structure/flora/grass/jungle, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_full" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"ueO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing/corner, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside/river) +"ueW" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"ufR" = ( +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/cave) +"ugF" = ( +/obj/item/stack/cable_coil{ + amount = 5 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"ugL" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/mineral/plastitanium, +/area/awaymission/jungle_planet/outside/abandoned) +"ugR" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/abandoned) +"ugX" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"uhg" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"uim" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"ujc" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/camera_assembly, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/awaymission/jungle_planet/inside/complex) +"ujg" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/cave/small) +"ujY" = ( +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"ukm" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"ukM" = ( +/turf/simulated/wall, +/area/awaymission/jungle_planet/inside) +"uli" = ( +/obj/item/stack/sheet/mineral/gold{ + amount = 25 + }, +/obj/item/stack/sheet/mineral/gold{ + amount = 25 + }, +/obj/item/coin/diamond, +/obj/item/coin/silver, +/obj/machinery/light/small/directional/north, +/obj/item/coin/diamond, +/obj/item/coin/diamond, +/obj/item/coin/diamond, +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/closet/crate/wooden/wooden_crate, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"ulv" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/mob/living/simple_animal/hostile/poison/giant_spider, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"ulP" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"umH" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"umO" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"umP" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "2post" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"unA" = ( +/obj/structure/mineral_door/sandstone, +/obj/structure/barricade/wooden/crude, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"unS" = ( +/obj/item/chair{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"uoc" = ( +/obj/structure/flora/junglebush/large, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"uoQ" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"uoY" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"upc" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"upX" = ( +/obj/item/stack/rods, +/obj/item/shard, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/jungle_planet/inside/complex) +"uqU" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"uqY" = ( +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside) +"urG" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"usE" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/port_gen/pacman/super{ + anchored = 1; + desc = "A portable generator for emergency backup power."; + name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator" + }, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"usV" = ( +/obj/structure/flora/rock/pile/largejungle{ + icon_state = "rocks1" + }, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/river) +"usY" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/waterfall) +"utb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"uts" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/effect/landmark/burnturf, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"utY" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"uue" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/ammo_casing/caseless/arrow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/awaymission/jungle_planet/inside/complex) +"uus" = ( +/obj/structure/closet, +/obj/item/storage/firstaid/brute/empty, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/regular, +/obj/item/roller_holder, +/obj/item/handheld_defibrillator, +/obj/item/storage/box/syringes, +/obj/item/stack/medical/bruise_pack, +/obj/item/storage/box/gloves, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"uvz" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"uvF" = ( +/obj/structure{ + icon_state = "smes"; + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit"; + icon = 'icons/obj/power.dmi'; + density = 1 + }, +/obj/structure/cable, +/obj/structure/sign/poster/ripped{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/awaymission/jungle_planet/outside/abandoned) +"uxL" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"uyo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"uyI" = ( +/mob/living/simple_animal/hostile/panther/huge_panther{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"uAo" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 8 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"uAH" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"uAI" = ( +/obj/structure/closet/crate/wooden/wooden_crate, +/obj/item/stack/medical/bruise_pack/advanced, +/obj/item/stack/medical/ointment/advanced, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/splint, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/small) +"uBo" = ( +/obj/item/match, +/obj/effect/decal/cleanable/spiderling_remains, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"uBr" = ( +/obj/structure/closet, +/obj/item/stamp/qm, +/obj/item/clothing/shoes/centcom, +/obj/item/lighter/zippo, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"uBw" = ( +/obj/machinery/constructable_frame, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor{ + pixel_x = 14 + }, +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/obj/item/stack/cable_coil{ + pixel_y = 4; + amount = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"uBO" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"uCa" = ( +/obj/item/tank/internals/plasma/empty{ + pixel_x = 14 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"uCg" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"uCt" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"uDo" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"uEa" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "lake3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"uFt" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"uFL" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "pathway13" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"uGb" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"uGj" = ( +/obj/structure/table/wood, +/obj/item/cigbutt, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"uGp" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_axe{ + id = "pathway13" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"uIb" = ( +/obj/structure/flora/rock/pile/largejungle{ + icon_state = "rocks1" + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 4; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"uIx" = ( +/obj/machinery/camera{ + network = list("MC-16"); + dir = 9; + c_tag = "Robotech" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"uIE" = ( +/obj/item/pickaxe/mini, +/obj/item/stack/ore/glass, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"uIX" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"uJH" = ( +/obj/structure/reagent_dispensers/oil, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"uJN" = ( +/obj/machinery/door/poddoor{ + id_tag = "gatelizard_piratcaptain" + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"uJW" = ( +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"uJY" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/awaymission/jungle_planet/inside/complex) +"uKb" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 6; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"uKR" = ( +/obj/structure/closet, +/obj/item/clothing/mask/gas, +/obj/item/wrench, +/obj/item/analyzer, +/obj/item/tank/internals/plasma/empty, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"uKT" = ( +/obj/structure/kitchenspike, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"uMl" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "pathway9" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"uMp" = ( +/obj/item/stack/rods{ + amount = 2 + }, +/obj/item/stack/sheet/metal{ + pixel_x = 9 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/abandoned) +"uMZ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"uNs" = ( +/obj/structure{ + icon = 'icons/obj/machines/gateway.dmi'; + icon_state = "toff"; + name = "gateway"; + desc = "Technological communication device"; + density = 1; + anchored = 1; + dir = 10 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkgreycamo" + }, +/area/awaymission/jungle_planet/inside) +"uNx" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"uND" = ( +/obj/machinery/light_construct/directional/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"uNI" = ( +/obj/item/handheld_defibrillator, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"uOh" = ( +/obj/item/camera_assembly, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"uOn" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"uOZ" = ( +/obj/structure/mineral_door/sandstone, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"uPH" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"uPZ" = ( +/obj/item/stack/rods, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"uQQ" = ( +/obj/structure/closet/crate/secure/loot, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"uRs" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 6; + pixel_y = 30 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"uRJ" = ( +/obj/machinery/door/airlock{ + name = "restrooms" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"uSc" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"uSt" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"uTk" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"uUj" = ( +/obj/item/stack/sheet/wood{ + amount = 30 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"uVT" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"uWc" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/decal/straw/edge, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"uWU" = ( +/obj/structure/railing{ + dir = 2 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"uXd" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "cave4" + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"uXf" = ( +/obj/structure/flora/junglebush/large, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/awaymission/jungle_planet/outside) +"uZv" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/cave) +"uZC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"uZY" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"val" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/sign/poster/contraband/random/west, +/obj/random/tool, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"vao" = ( +/obj/structure/flora/rock/pile/largejungle{ + icon_state = "rocks1"; + pixel_y = 2; + pixel_x = -2 + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"vbD" = ( +/obj/machinery/door/airlock/freezer, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"vbX" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"vbZ" = ( +/obj/structure/flora/rock, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"vcV" = ( +/obj/effect/decal/cleanable/blood/writing, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"vdZ" = ( +/obj/structure{ + icon = 'icons/obj/stationobjs.dmi'; + icon_state = "controller-o"; + name = "blackbox recorder"; + density = 1; + anchored = 1 + }, +/obj/item/stock_parts/capacitor, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/turf/simulated/floor/greengrid{ + icon_state = "bcircuit" + }, +/area/awaymission/jungle_planet/inside/complex) +"veX" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"vgc" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "lake4" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"vgy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"vgF" = ( +/obj/effect/decal/cleanable/spiderling_remains, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"vgG" = ( +/obj/structure/table, +/obj/item/pen, +/obj/item/folder/yellow{ + pixel_x = -5 + }, +/obj/machinery/door_control/bolt_control{ + pixel_x = 8; + desiredstate_open = 1; + id = "hang2in" + }, +/obj/machinery/door_control/shutter{ + pixel_x = 8; + pixel_y = 8; + id = "gate_lizard_QM" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"vhm" = ( +/obj/structure/stone_tile/block, +/obj/structure/sacrificealtar{ + icon_state = "sacrificealtar-red"; + density = 1; + climbable = 1 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"vhL" = ( +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"vhX" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "cave11" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"viC" = ( +/obj/structure/flora/rock, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"viM" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"vjr" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"vjv" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/turf_decal/grass{ + dir = 6 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/inside/complex) +"vjw" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/cave/small) +"vkt" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"vkC" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"vlw" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/structure/table, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"vly" = ( +/obj/structure/flora/grass/jungle, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"vlT" = ( +/obj/item/stack/sheet/bone{ + amount = 5 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"vmE" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"vni" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/obj/effect/decal/remains/human, +/obj/item/ammo_casing/caseless/arrow, +/obj/effect/spawner/random_spawners/blood_often, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"voq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"vot" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"voN" = ( +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"vpw" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"vpR" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/small) +"vqo" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside) +"vqB" = ( +/obj/structure/closet/crate, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stack/sheet/mineral/gold{ + amount = 43 + }, +/obj/item/stack/sheet/mineral/silver{ + amount = 40 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"vqT" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"vrK" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside) +"vrM" = ( +/obj/item/clothing/suit/armor/vest, +/obj/item/reagent_containers/spray/pepper, +/obj/item/storage/belt/security, +/obj/item/clothing/shoes/combat, +/obj/item/kitchen/knife/combat, +/obj/structure/closet/secure_closet{ + req_access = list(271) + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/awaymission/jungle_planet/inside/complex) +"vrP" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + id_tag = "Sec in"; + dir = 8; + requires_power = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"vsU" = ( +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"vta" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/item/storage/briefcase{ + pixel_x = -2; + pixel_y = -5 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"vtg" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Skynet_heavy" + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"vtE" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"vvz" = ( +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/suit/unathi/mantle, +/obj/item/clothing/suit/unathi/mantle, +/obj/item/clothing/suit/unathi/robe, +/obj/item/clothing/suit/unathi/robe, +/obj/structure/closet/crate/wooden/wooden_crate, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"vvO" = ( +/obj/item/broken_device, +/obj/item/stack/rods, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/bluegrid{ + icon_state = "bcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"vwd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"vws" = ( +/obj/structure/fermenting_barrel, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"vwu" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 1 + }, +/area/awaymission/jungle_planet/outside/river) +"vwC" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/computerframe{ + icon_state = "comp_frame_5"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"vwT" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "pathway12" + }, +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"vwW" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"vye" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"vzJ" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"vAX" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"vBt" = ( +/obj/structure/closet, +/obj/item/stack/sheet/plasteel{ + amount = 15 + }, +/obj/item/stack/sheet/plasteel{ + amount = 15 + }, +/obj/item/stack/sheet/plasteel{ + amount = 15 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/mod/core/plasma, +/obj/item/mod/construction/plating, +/obj/item/mod/construction/plating, +/obj/item/mod/construction/plating, +/obj/item/circuitboard/autolathe, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/awaymission/jungle_planet/inside/complex) +"vBw" = ( +/obj/item/stack/rods, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"vBz" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 4; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"vBY" = ( +/obj/structure/necropolis_arch{ + name = "Temple Arch"; + desc = "A massive arch decorated with horrific ornaments and draughts." + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "cave9" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"vCb" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/fried_vox{ + pixel_y = 5 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"vCt" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/item/stack/sheet/mineral/plastitanium, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/abandoned) +"vCC" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"vCY" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium_corner"; + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"vDD" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"vEl" = ( +/turf/simulated/floor/mineral/titanium/yellow, +/area/awaymission/jungle_planet/outside/abandoned) +"vEu" = ( +/mob/living/simple_animal/hostile/jungle_lizard, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"vEC" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"vEJ" = ( +/obj/structure/table_frame, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"vEO" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"vFj" = ( +/obj/structure/computerframe{ + icon_state = "comp_frame_2" + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/mineral/titanium/yellow, +/area/awaymission/jungle_planet/outside/abandoned) +"vFE" = ( +/obj/effect/turf_decal/plaque, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"vFR" = ( +/obj/effect/turf_decal/caution/stand_clear/red, +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"vGb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/turf/simulated/floor/engine, +/area/awaymission/jungle_planet/inside/complex) +"vGM" = ( +/obj/structure/flora/rock/pile/largejungle{ + icon_state = "rocks3" + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"vHc" = ( +/obj/structure/table/reinforced, +/obj/item/kitchen/utensil/spoon{ + pixel_x = -3; + pixel_y = 18 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"vHh" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/sign/securearea{ + pixel_y = -31 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"vIH" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/clipboard, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/awaymission/jungle_planet/inside) +"vIV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/closed, +/obj/machinery/door/poddoor/shutters{ + id_tag = "Sec in"; + dir = 8; + requires_power = 0 + }, +/obj/machinery/door/airlock/security{ + locked = 1; + name = "security"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/awaymission/jungle_planet/inside/complex) +"vJx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"vKb" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/folder/yellow{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/radio{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "browncorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"vKf" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"vKK" = ( +/obj/structure/chair, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"vLD" = ( +/turf/simulated/floor/beach/away/water/deep{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/cave/small) +"vMf" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/turf_decal/caution, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"vMq" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/small) +"vMu" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "cave8" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"vMv" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/warning_stripes/east, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"vMV" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"vNb" = ( +/obj/structure/fence/door, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 6 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"vNE" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random_spawners/dirt_often, +/mob/living/simple_animal/parrot, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"vOh" = ( +/turf/simulated/wall/indestructible/riveted, +/area/awaymission/jungle_planet/outside/cave) +"vPB" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"vPN" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/indestructible/riveted, +/area/awaymission/jungle_planet/inside) +"vPR" = ( +/obj/effect/decal/cleanable/shreds, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"vPU" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"vQf" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/rock, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"vQC" = ( +/mob/living/simple_animal/hostile/jungle_lizard{ + wander = 0 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"vRw" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"vRK" = ( +/obj/structure/chair/brass{ + dir = 4 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"vSc" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/mob/living/simple_animal/lizard, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"vSq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"vSu" = ( +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"vSL" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 1 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"vTu" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"vTx" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"vUt" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"vUv" = ( +/obj/structure/table_frame, +/turf/simulated/floor/mineral/titanium/yellow, +/area/awaymission/jungle_planet/outside/abandoned) +"vVv" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery/red, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"vVD" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/remains/human, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"vVX" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "waterfall6" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"vXz" = ( +/obj/machinery/optable, +/obj/item/scalpel{ + pixel_y = -1 + }, +/obj/machinery/light_construct/small/west, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/awaymission/jungle_planet/inside/complex) +"vYH" = ( +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/structure/closet/crate{ + opened = 1 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"vYJ" = ( +/mob/living/simple_animal/hostile/jungle_lizard/meele{ + wander = 0 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"vZa" = ( +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside) +"wae" = ( +/obj/structure/flora/rock, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"wak" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"wax" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"waQ" = ( +/obj/machinery/atmospherics/binary/valve, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"wbK" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma/fifty, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"wbT" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"wcv" = ( +/obj/structure/bed/mattress, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/small) +"wcW" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"wdb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"wdZ" = ( +/obj/structure/table_frame/wood, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"weh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 10 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"weC" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"wfe" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush2" + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"wft" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"wgn" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/warning_stripes/west, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"who" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"wie" = ( +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 10 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"wjd" = ( +/obj/structure/chair/stool/bar, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"wjj" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"wjJ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"wkc" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/abandoned) +"wkh" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"wld" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15; + pixel_x = -11 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"wlz" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"wmO" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"wnc" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "rampbottom" + }, +/area/awaymission/jungle_planet/outside/river) +"wne" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall, +/area/awaymission/jungle_planet/outside/river) +"wnr" = ( +/obj/structure/closet/crate/freezer/iv_storage, +/obj/item/reagent_containers/iv_bag/blood/OMinus, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/awaymission/jungle_planet/inside/complex) +"woa" = ( +/obj/item/stack/rods, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"woW" = ( +/obj/structure/closet, +/obj/item/clothing/under/costume/pirate_rags, +/obj/item/clothing/head/bandana, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"wpb" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"wrq" = ( +/obj/structure/flora/rock, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"wrK" = ( +/obj/structure/mineral_door/wood, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"wrU" = ( +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"wtJ" = ( +/obj/effect/decal/cleanable/blood/gibs/robot, +/turf/simulated/floor/plasteel{ + icon_state = "purple"; + dir = 1 + }, +/area/awaymission/jungle_planet/inside/complex) +"wtM" = ( +/obj/effect/spawner/random_spawners/oil_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"wtW" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"wuN" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee{ + id = "lake5" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"wvP" = ( +/obj/structure/kitchenspike, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"wwU" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/ranged{ + id = "cave10" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"wxj" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"wxE" = ( +/obj/structure/flora/junglebush{ + icon_state = "bush8" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"wxN" = ( +/obj/structure/firelock_frame, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"wyt" = ( +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/abandoned) +"wyx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/caution, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"wyS" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/crate, +/obj/item/vending_refill/boozeomat, +/obj/item/vending_refill/medical, +/obj/item/vending_refill/snack, +/obj/item/vending_refill, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"wzc" = ( +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/small) +"wzh" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"wzk" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/awaymission/jungle_planet/inside/complex) +"wzs" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"wzM" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"wBe" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside) +"wCr" = ( +/obj/structure/grille/broken, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -7; + pixel_y = -10 + }, +/obj/item/shard, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside) +"wCz" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) +"wCJ" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/generic, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"wCZ" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 6 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"wDF" = ( +/obj/effect/turf_decal/bot_red, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"wEc" = ( +/obj/structure/decorative_structures/metal/statue/golden_disk, +/obj/structure/stone_tile/slab/cracked, +/obj/item/flashlight/flare/torch{ + pixel_x = -9; + anchored = 1; + tool_volume = 300; + on = 1 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"wEA" = ( +/obj/item/stack/sheet/mineral/gold{ + amount = 25 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = 12; + pixel_y = 12; + amount = 25 + }, +/obj/item/coin/gold{ + pixel_x = -9 + }, +/obj/item/coin/gold{ + pixel_x = -17; + pixel_y = 11 + }, +/obj/item/coin/gold, +/obj/item/clothing/gloves/ring/gold{ + pixel_x = 4; + pixel_y = 12 + }, +/obj/item/clothing/gloves/ring/gold, +/obj/item/coin/gold{ + pixel_x = -9; + pixel_y = 11 + }, +/obj/structure/stone_tile/slab, +/obj/item/clothing/accessory/necklace/locket{ + pixel_x = 9 + }, +/obj/item/clothing/accessory/necklace/locket, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"wEF" = ( +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"wEK" = ( +/obj/structure/girder/reinforced, +/obj/item/stack/sheet/mineral/titanium, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"wEU" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/ore_box, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"wFg" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + id_tag = "Sec in"; + requires_power = 0 + }, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"wFj" = ( +/obj/item/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 = -7 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"wGc" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/sign/nosmoking_1{ + pixel_x = -32 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"wGC" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"wGY" = ( +/obj/structure/chair/stool/bar, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"wHC" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"wHR" = ( +/obj/structure/flora/junglebush/large, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "cave1" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"wIo" = ( +/obj/structure/mineral_door/sandstone, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"wIA" = ( +/obj/item/stack/rods, +/turf/simulated/floor/beach/away/coastline{ + dir = 4; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"wIY" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline{ + dir = 6; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"wJh" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/indestructible, +/area/awaymission/jungle_planet/inside) +"wJq" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"wKg" = ( +/obj/structure/flora/junglebush, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/awaymission/jungle_planet/outside) +"wKi" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"wMa" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_corner"; + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"wMk" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + list_reagents = list("rum" = 50) + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"wME" = ( +/obj/machinery/economy/vending/cola/free, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"wMO" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/turf_decal/caution{ + icon_state = "caution"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"wMU" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"wMY" = ( +/obj/item/toy/plushie/lizardplushie, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"wNr" = ( +/obj/item/rack_parts, +/obj/item/rack_parts, +/obj/item/shield/riot, +/obj/item/shield/riot, +/obj/item/shield/riot, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"wNS" = ( +/obj/structure/flora/junglebush/large, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/abandoned) +"wOh" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"wOm" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"wOP" = ( +/turf/simulated/wall/indestructible/whiteshuttle, +/area/awaymission/jungle_planet/outside/abandoned) +"wOR" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 2 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"wOV" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/cave/small) +"wPk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"wPA" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/wall/indestructible/syndishuttle, +/area/awaymission/jungle_planet/outside/abandoned) +"wQo" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"wQM" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = 17 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"wQY" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"wQZ" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"wRw" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/tree/jungle, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 0.3; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/obj/effect/dummy/lighting_obj{ + light_power = 6 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"wSt" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"wTj" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light_construct/small/west, +/mob/living/simple_animal/hostile/poison_snake{ + wander = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/jungle_planet/inside/complex) +"wTo" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"wUi" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"wVx" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"wVU" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/block/cracked, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"wWr" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/structure/sign/monkey_paint{ + pixel_y = 30 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"wWP" = ( +/obj/item/reagent_containers/glass/bucket/wooden, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"wXR" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"wYk" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/awaymission/jungle_planet/inside/complex) +"wYy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/south, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"wZE" = ( +/obj/structure/curtain/medical, +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 9; + pixel_y = -9 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -7; + pixel_y = -10 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/jungle_planet/inside/complex) +"wZQ" = ( +/obj/effect/decal/warning_stripes/north, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"wZY" = ( +/obj/item/storage/bag/cash, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"xae" = ( +/mob/living/simple_animal/hostile/pirate{ + loot = null + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"xag" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -7; + pixel_y = -10 + }, +/obj/item/stack/rods, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"xam" = ( +/obj/effect/landmark/awaystart, +/turf/simulated/floor/mineral/titanium/blue, +/area/awaymission/jungle_planet/outside/abandoned) +"xaI" = ( +/obj/effect/turf_decal/caution, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"xaS" = ( +/obj/structure/table/wood, +/obj/item/newspaper, +/obj/item/trash/chips{ + pixel_x = -8 + }, +/obj/item/trash/can, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"xbo" = ( +/obj/machinery/door/airlock/command{ + locked = 1; + name = "command"; + req_access = list(271); + id_tag = "commanddoor" + }, +/obj/machinery/door/firedoor/closed, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "Command"; + requires_power = 0 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"xbW" = ( +/obj/machinery/door/firedoor/closed, +/obj/machinery/door/poddoor/shutters{ + id_tag = "Arm in"; + dir = 2; + requires_power = 0 + }, +/obj/machinery/door/airlock/security{ + locked = 1; + name = "security"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "dark" + }, +/area/awaymission/jungle_planet/inside/complex) +"xcu" = ( +/obj/structure/reagent_dispensers/oil, +/obj/structure/sign/fire{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"xcy" = ( +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/mob/living/simple_animal/hostile/poison_snake{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"xdw" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"xdz" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/black{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"xdC" = ( +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/ammo_casing/caseless/arrow, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"xeo" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/five, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"xeD" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/river) +"xeZ" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"xfi" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/broken_bottle, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"xfj" = ( +/obj/structure/table/reinforced, +/obj/item/trash/plate, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"xfn" = ( +/obj/item/ammo_casing/caseless/arrow, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/door_control/shutter/south{ + name = "Armory Shutters-control"; + id = "Arm in"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/awaymission/jungle_planet/inside/complex) +"xfP" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside) +"xhl" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "swamp4" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"xhO" = ( +/obj/structure/stone_tile/block/cracked, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"xiE" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"xjp" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"xky" = ( +/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" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/awaymission/jungle_planet/inside/complex) +"xkA" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/cave/small) +"xkK" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"xlu" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/diamond{ + amount = 25 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"xmJ" = ( +/obj/item/reagent_containers/food/drinks/mushroom_bowl, +/obj/item/reagent_containers/food/snacks/badrecipe, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"xmQ" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"xqn" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate{ + opened = 1 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"xqz" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"xrT" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/gun/turret, +/obj/item/clothing/mask/cigarette/pipe, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/river) +"xsD" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"xsG" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/coastline{ + dir = 6; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"xsI" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"xsR" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"xtu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"xtv" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/junglebush{ + anchored = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"xuA" = ( +/obj/item/stack/rods, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/river) +"xuH" = ( +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"xuU" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside) +"xwv" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/rock/pile/largejungle{ + icon_state = "rocks1"; + pixel_y = 2; + pixel_x = -2 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"xxa" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"xxH" = ( +/obj/item/trash/can, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"xye" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/mineral/plastitanium, +/area/awaymission/jungle_planet/outside/abandoned) +"xyC" = ( +/obj/structure/stone_tile/slab, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"xyX" = ( +/obj/effect/decal/cleanable/blood/writing, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"xAp" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 5 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"xAs" = ( +/obj/item/chair{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/awaymission/jungle_planet/inside/complex) +"xAS" = ( +/obj/item/flashlight/flare/torch{ + pixel_x = -9; + anchored = 1; + tool_volume = 300; + on = 1 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"xAY" = ( +/obj/item/flashlight/flare/torch{ + pixel_x = -9; + anchored = 1; + tool_volume = 300; + on = 1 + }, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"xBt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"xBG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/glasses/hud/health, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"xCf" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"xCP" = ( +/obj/effect/decal/remains/human, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/awaymission/jungle_planet/inside/complex) +"xCQ" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/item/storage/belt/utility, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"xCT" = ( +/obj/item/stack/cable_coil{ + pixel_y = 10; + amount = 2 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/mob/living/simple_animal/lizard, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside) +"xCW" = ( +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"xDa" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside/complex) +"xDc" = ( +/obj/structure/stone_tile/block, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"xDg" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"xDi" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/pickaxe/mini{ + pixel_y = 7 + }, +/obj/item/shovel{ + pixel_x = -5; + pixel_y = -7 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"xDN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "Hang in"; + requires_power = 0 + }, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"xDV" = ( +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/water/deep/dense_canpass, +/area/awaymission/jungle_planet/outside/river) +"xFu" = ( +/obj/structure/flora/junglebush{ + icon_state = "bush4" + }, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"xFL" = ( +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/waterfall) +"xGI" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"xHs" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"xJH" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/structure/largecrate, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"xJT" = ( +/obj/machinery/computer{ + icon_state = "computer"; + dir = 8; + name = "arrival console" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/outside) +"xKX" = ( +/obj/item/flashlight/lantern, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"xMU" = ( +/obj/structure/flora/grass/jungle, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 4 + }, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"xNb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"xOa" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "cafeteria" + }, +/area/awaymission/jungle_planet/inside/complex) +"xOb" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 16 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"xOi" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"xOj" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma/fifty, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/inside/complex) +"xOV" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "cave4" + }, +/turf/simulated/floor/engine/cult, +/area/awaymission/jungle_planet/outside/cave) +"xPb" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"xPg" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/cave) +"xPj" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 8 + }, +/obj/item/phone{ + pixel_y = 12; + pixel_x = 9 + }, +/obj/item/radio{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"xPr" = ( +/obj/machinery/door/airlock/research{ + name = "robotech"; + req_access = list(271) + }, +/obj/machinery/door/firedoor/closed, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"xPM" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/item/stack/rods, +/obj/item/shard, +/obj/item/shard{ + pixel_x = 9 + }, +/obj/effect/decal/cleanable/glass, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"xPX" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"xQa" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave) +"xQp" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/effect/landmark/awaystart, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgrey" + }, +/area/awaymission/jungle_planet/inside) +"xQt" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "waterfall2" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"xQC" = ( +/obj/structure/flora/grass/jungle, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"xQV" = ( +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/jungle_planet/outside/abandoned) +"xRv" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/item/pen/fancy, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + list_reagents = list("whiskey" = 0); + pixel_x = -9 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/inside/complex) +"xSz" = ( +/obj/item/reagent_containers/food/drinks/bottle/rum, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + list_reagents = list("rum" = 0) + }, +/obj/structure/closet/crate/wooden/wooden_crate, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave/pirate) +"xSA" = ( +/obj/structure/flora/rock, +/obj/structure/grille/broken, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/jungle_planet/outside/cave) +"xTB" = ( +/obj/structure/flora/tree/jungle/small, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"xTU" = ( +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/jungle_planet/outside/cave/small) +"xUs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id_tag = "Sec in"; + requires_power = 0 + }, +/obj/machinery/door/airlock/security{ + locked = 1; + name = "security"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"xVk" = ( +/obj/structure/bed, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside) +"xVv" = ( +/obj/structure/flora/grass/jungle{ + pixel_x = -15 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/river) +"xVE" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"xVT" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null; + dir = 4 + }, +/area/awaymission/jungle_planet/outside) +"xWo" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/awaymission/jungle_planet/inside/complex) +"xWD" = ( +/obj/item/stack/cable_coil{ + pixel_y = -11; + amount = 2 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"xWT" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"xYt" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium_corner"; + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/river) +"xZe" = ( +/obj/item/chair{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"xZy" = ( +/obj/structure/railing/corner, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"xZK" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside/cave/pirate) +"xZT" = ( +/obj/item/cigbutt, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"yaX" = ( +/obj/structure{ + icon = 'icons/obj/machines/mining_machines.dmi'; + icon_state = "stacker"; + name = "stacking machine"; + anchored = 1; + density = 1 + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"ybw" = ( +/obj/structure/railing, +/turf/simulated/floor/beach/away/sand, +/area/awaymission/jungle_planet/outside/river) +"ycX" = ( +/obj/effect/landmark/awaymissions/gate_lizard/mine_spawner{ + id = "pathway10" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"ydq" = ( +/obj/structure/bed/mattress/dirty, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"ydD" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/obj/effect/landmark/awaymissions/gate_lizard/mob_spawn/melee_spear{ + id = "pathway9" + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"yep" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/item/stack/rods, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside/river) +"yeB" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"yeD" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/river) +"yeN" = ( +/obj/structure/table/wood, +/obj/item/organ/external/chest, +/turf/simulated/floor/wood/oak, +/area/awaymission/jungle_planet/outside/cave) +"yfS" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "tracks"; + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/inside/complex) +"ygc" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/light_emitter{ + light_color = "#FFFFFF"; + set_cap = 1; + icon = 'modular_ss220/maps220/icons/mapping_helpers.dmi'; + icon_state = "sunlight_helper"; + layer = 10 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"ygj" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 6; + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside/waterfall) +"ygn" = ( +/obj/effect/decal/cleanable/blood/old, +/mob/living/simple_animal/hostile/jungle_lizard, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "ground" + }, +/area/awaymission/jungle_planet/outside) +"ygw" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/outside) +"yhd" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside/river) +"yhO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/closed, +/obj/machinery/door/airlock/engineering{ + name = "engineering"; + req_access = list(271) + }, +/turf/simulated/floor/plasteel, +/area/awaymission/jungle_planet/inside/complex) +"ylm" = ( +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/plating, +/area/awaymission/jungle_planet/outside/abandoned) +"ylR" = ( +/obj/structure/flora/junglebush/large{ + icon_state = "bush3" + }, +/mob/living/simple_animal/hostile/panther/huge_panther{ + wander = 0 + }, +/turf/simulated/floor/indestructible/grass, +/area/awaymission/jungle_planet/outside) +"ylZ" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_big_full" + }, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/awaymission/jungle_planet/outside) + +(1,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +bty +lNR +mgq +gnq +"} +(2,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gOJ +gpG +gpG +gpG +gpG +miM +miM +miM +gpG +gpG +gpG +gpG +xDV +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +fRH +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +rUY +oQl +jOl +cTt +"} +(3,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gOJ +miM +miM +gOJ +gOJ +gpG +gpG +gpG +gpG +gOJ +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +qpP +fRH +egD +egD +dLI +wKg +dpm +miM +miM +nGx +nGx +jbn +lWL +aHl +fKz +miM +miM +miM +ylZ +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(4,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +xDV +gpG +gOJ +miM +miM +gOJ +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +dLI +qpP +osI +dpm +dLI +fRH +dLI +aHl +nGx +uGb +fKz +nGx +mYK +nGx +uGb +nGx +nGx +mYK +qeW +qeW +jbn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(5,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gOJ +miM +miM +gOJ +oLd +gpG +gpG +gpG +gpG +gpG +gOJ +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +fRH +fhz +fhz +dLI +osI +xsI +sNa +sNa +nGx +nGx +bLF +nGx +nGx +nGx +fKz +nGx +lWL +aHl +tUn +cYa +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(6,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +xDV +gOJ +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +fKU +cJq +ctB +lWL +lWL +fjM +xAp +ctB +ctB +fKz +sNa +sNa +uTk +gDx +fjM +sNa +sNa +tUn +lWL +eZk +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(7,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +rOc +nai +nai +aFD +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +wrq +fhz +fEq +mdl +eew +qsJ +jbn +fhz +jKi +qeW +fKU +uCa +sNa +jZI +fcs +fEq +fEq +sNa +bOP +fcs +rNB +gLf +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(8,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xTU +xTU +xTU +xTU +xTU +pWh +eay +xTU +xTU +qNW +tei +vpR +sYz +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aFD +nai +aFD +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mAF +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +oBM +xFu +fjM +cYa +fEq +cJO +wOP +wOP +kxd +wOP +wOP +wOP +lWL +eDn +fhz +giz +fGf +qfJ +ina +fhz +eZk +fhz +fhz +blW +mSO +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(9,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xTU +xTU +xTU +xTU +omY +vpR +vpR +suE +gaD +tei +tei +gaD +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +rOc +nai +nai +nai +aFD +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mAF +nai +nai +mAF +nai +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +nai +nai +nai +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xFu +mIG +rox +qeW +hjj +fhz +wEK +wOP +vUv +wOP +ueW +bqM +wyt +eJy +wOP +rcF +qfJ +xfP +eZk +nEG +fhz +sNa +sNa +fhz +blW +lWL +aHl +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(10,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xTU +xTU +xTU +xTU +xTU +wcv +xTU +xTU +qcZ +vpR +gaD +vpR +xTU +xTU +xTU +xTU +xTU +tiT +tiT +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +nai +aFD +nai +aFD +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +miM +miM +miM +mAF +nai +nai +rOc +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +frH +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gOJ +gOJ +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kTt +jlv +lWL +lWL +lxs +pnJ +vEl +iGo +iGo +jxT +jxT +jxT +wkc +jxT +bjW +qfJ +mSO +gTb +ina +fhz +fhz +fhz +fhz +dno +lWL +lWL +tUn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(11,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +jBs +vpR +vpR +vpR +suE +tei +xTU +xTU +xTU +jAF +jAF +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +aFD +nai +nai +nai +mAF +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mAF +nai +nai +nai +miM +nai +rOc +miM +miM +nai +miM +miM +miM +miM +nai +rOc +miM +miM +miM +miM +nai +nai +nai +aFD +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +tpH +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +omz +jHd +omz +omz +omz +omz +jHd +cYu +cYu +miM +miM +miM +miM +miM +miM +miM +fKU +tUn +hjj +xsI +cYa +xPM +qpZ +rJu +vEl +njH +ugR +udf +jxT +jxT +tLH +fcs +mat +sNa +nEG +fhz +fhz +fhz +fhz +fcs +eZk +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(12,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +bBR +uAI +xTU +xTU +tei +tei +xTU +nAK +nAK +iaW +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +nai +miM +nai +nai +nai +qsD +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +nai +miM +miM +miM +miM +pKO +nai +aFD +nai +qsD +mAF +miM +nai +nai +nai +miM +miM +miM +miM +miM +nai +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gOJ +xeZ +frH +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gpG +tpH +miM +miM +miM +omz +ifJ +pHo +eAh +pYs +wmO +jHd +omz +jHd +miM +miM +miM +miM +miM +jHd +jHd +jHd +jHd +jHd +omz +lWL +wOP +wOP +eJW +wOP +dUE +fhn +cuS +jQg +wOP +rcF +fhz +qfJ +jcp +ina +fhz +fhz +fhz +lWL +aHl +eZk +lWL +cYa +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(13,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +tei +bvC +mrK +nAK +nAK +vLD +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +mAF +nai +rOc +nai +nai +qsD +nai +mAF +miM +miM +miM +miM +nai +mAF +nai +nai +mAF +miM +miM +miM +miM +miM +miM +miM +miM +nai +aFD +nai +nai +nai +nai +miM +miM +miM +miM +miM +miM +nai +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +frH +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +frH +gOJ +gOJ +gpG +miM +miM +miM +miM +omz +sMA +woa +pHo +kuK +vgF +aud +pHo +omz +miM +miM +miM +jHd +jHd +jHd +uKR +eGz +shj +dsk +gaK +cYa +fhz +wOP +wOP +wOP +wOP +wOP +wEK +wOP +owL +ena +akZ +qfJ +jcp +hdu +fhz +fhz +qeW +tUn +fhz +tUn +cEd +tUn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(14,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xTU +xTU +xTU +xTU +xTU +xTU +xTU +aUn +aUn +xkA +aoG +nAK +pSD +aIo +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +nai +nai +miM +nai +nai +mAF +nai +nai +miM +miM +miM +miM +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +mAF +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +pJn +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +oLd +gpG +gpG +tpH +miM +miM +cku +sWi +pHo +pHo +rDj +cku +cku +tAY +omz +miM +miM +miM +jHd +xWT +rUV +wXR +kuK +gDE +pGk +gaK +pNv +fEq +sJd +gNh +fhz +lbq +ikb +fMh +eAe +fcs +kRf +qfJ +iWW +aHl +ina +fhz +fhz +eQS +fhz +fhz +lWL +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(15,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +miM +miM +xTU +xTU +xTU +sSk +nAK +nAK +nAK +eEO +nAK +sSk +nAK +jdy +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +pKO +miM +miM +nai +miM +miM +nai +nai +nai +nai +nai +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mAF +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +mAF +nai +mAF +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +xeZ +gpG +gpG +gpG +gpG +gpG +gpG +pJn +tpH +aLd +mqx +mqx +xVv +kSX +gOJ +gOJ +cku +cku +cku +cku +cku +iEl +cku +sXj +byV +yfS +jHd +omz +omz +omz +omz +dXw +koU +xcu +qbZ +wXR +pUX +koU +ohf +fEq +oFY +xZy +rvr +eat +rvr +uDo +fhz +fio +dob +fcs +nCA +nCA +hdu +fhz +xsI +jrI +qeW +lWL +uTk +cYa +cYa +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(16,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +miM +miM +miM +xTU +xTU +nAK +nAK +xTU +aUn +jdy +nAK +oSr +xkA +wzc +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +mAF +nai +nai +mAF +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +mAF +nai +mAF +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +aFD +nai +miM +miM +miM +mAF +miM +miM +miM +nai +rOc +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xeZ +heN +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +tqm +aga +oBh +oBh +vwu +lRz +gOJ +cku +vni +cku +wTj +cku +hgk +kHa +sXj +nuz +jox +dnc +nBO +grU +vcV +mYn +wbT +koU +mAT +ulv +vgF +wDF +koU +kzC +cbY +fcs +oDl +syJ +bkW +iMW +auq +kcy +kcy +vVv +tHT +nCA +nCA +sNa +fhz +cYa +nGx +fKz +lWL +lWL +mYK +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(17,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +miM +miM +miM +xTU +xTU +xTU +nAK +xTU +jdy +nAK +sSk +xkA +jdy +xkA +jdy +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +nai +nai +nai +nai +nai +mAF +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +aFD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +nai +nai +nai +nai +qsD +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +frH +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +aLd +ruK +oBh +oBh +oBh +jhj +oUq +vMV +cku +arP +cku +arP +cku +wax +nSR +sXj +cku +cku +cku +sXj +jlU +koU +lRM +fnP +gaK +lDk +pZY +dGT +dGT +obM +fhz +oFY +fMh +lGN +kzI +fiM +fhz +fhz +cFB +kcy +lGN +fcs +fxM +byv +qeW +xsI +sNa +fKz +uGb +bXc +eZk +cYa +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(18,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +miM +miM +miM +xTU +xTU +nAK +nAK +pSD +nAK +sac +vMq +mrK +eEO +jdy +mlq +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mAF +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gOJ +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +qvZ +rYy +skb +rYy +bAQ +oBh +oBh +oBh +fMx +nOA +hWA +bbq +fBI +cVI +nMQ +uRJ +fGg +kwU +btX +sXj +btI +gaK +rSX +xZT +koU +tMG +hFi +gys +wXR +koU +fEq +fMh +fhz +erb +fJs +kzI +fJs +mfu +xJT +psv +aJg +nCA +fhz +fGf +ina +fhz +fhz +sNa +xsI +fZj +lWL +aHl +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(19,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +miM +miM +xTU +xTU +nAK +xTU +xTU +rAd +iVX +aUn +aUn +aIo +xTU +aIo +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +nai +nai +miM +miM +miM +miM +miM +miM +miM +nai +tZW +miM +miM +miM +miM +miM +miM +nai +rOc +nai +miM +miM +mAF +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +qGN +miM +miM +miM +miM +miM +miM +miM +miM +miM +gOJ +frH +gpG +gpG +frH +gOJ +gpG +gpG +gpG +xuA +tqm +bVh +bVh +bVh +tKb +oBh +fQG +dVh +fMx +ebS +kRO +rbk +cku +nMQ +nMQ +sXj +nSX +fht +fht +sXj +mbt +gaK +wOR +hmr +gaK +gaK +gaK +gaK +gaK +gaK +uoc +oFY +nCA +dMz +uNx +fhz +fhz +fhz +eUt +uNx +ygw +fMh +fGf +cNf +pdY +oiX +qfJ +fhz +fhz +kTx +lWL +aHl +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(20,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +miM +miM +xTU +xTU +nAK +xTU +xTU +iVX +iVX +jtc +iVX +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +nai +nai +miM +miM +miM +miM +miM +miM +miM +nai +aFD +aFD +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +nai +nai +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +qGN +mYK +lWL +miM +miM +miM +miM +miM +lWL +miM +miM +miM +gpG +gpG +gpG +pJn +gOJ +gpG +gpG +gpG +gOJ +ikG +bVh +lcU +gMT +qdL +oBh +aoh +aks +cku +sXj +cku +cku +cku +ati +iRJ +sXj +cku +cku +cku +sXj +dGT +gaK +lnu +vmE +vcV +xyX +uBo +sMO +dQU +koU +hjj +tqF +uSt +uSt +uSt +wMO +uSt +jHM +fcs +fcs +uSt +qfJ +uts +cNf +aMI +cnH +pwd +pwd +tNF +ajJ +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(21,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +miM +miM +xTU +xTU +nAK +nAK +xTU +vjw +iVX +iVX +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +mAF +nai +mAF +miM +miM +miM +miM +miM +miM +tDA +nai +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mAF +miM +nai +rOc +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +cCl +qfd +aHl +xsI +miM +lWL +aHl +sNa +nhk +rfe +miM +miM +gpG +gpG +gOJ +gpG +gpG +gpG +gpG +gOJ +rKR +vCY +boK +nPk +gdK +dco +qTC +egj +igC +sXj +rSM +bDb +flq +dGT +fOl +bql +krt +fck +cku +sXj +hsO +cku +sXj +odX +cku +ilx +cku +cku +wHC +hdm +mTn +idC +wOP +wOP +wOP +wOP +wOP +wOP +wOP +oHG +ena +jKX +xfP +qfJ +fGf +fhz +iGn +iGn +fhz +blW +lWL +cYa +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(22,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +miM +miM +miM +xTU +xTU +nAK +mWq +cNM +iVX +ujg +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +nai +miM +miM +miM +miM +miM +miM +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +qGN +qGN +xdw +lWL +aHl +lWL +sNa +sNa +qnu +oBh +kVj +hPE +gpG +gpG +gpG +gpG +gpG +gpG +gpG +tpH +rKR +iob +aKg +aKg +vNb +oBh +oBh +pxm +rBC +sXj +xkK +tUU +cku +fOl +mUy +cku +vta +pZa +sXj +ajx +mFZ +cku +dQH +bNI +vXz +kjn +pmk +lle +mha +kZx +ina +wOP +wOP +bNa +wOP +wGc +cXx +jZg +lZs +wOP +rcF +wZQ +tTV +qfJ +fhz +wOP +ulP +ulP +wOP +blW +lWL +eZk +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(23,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +miM +miM +xTU +xTU +xTU +nAK +wOV +cNM +iVX +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +nai +miM +miM +miM +miM +miM +mAF +nai +mAF +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +qGN +lWL +eZk +rnx +lWL +tgl +sNa +cJq +ujY +oBh +iFa +aUt +mOX +gpG +gpG +gpG +gpG +gpG +gpG +gpG +rKR +iob +aKg +jCV +tYL +oBh +oBh +pxm +rBC +sXj +sXj +sXj +cku +iRJ +mfn +sXj +sXj +sXj +sXj +jFa +ebM +cku +tSG +bNI +cum +sMZ +ahF +cku +dNG +koU +vMf +pnJ +eFd +rJu +iUc +gMI +rfZ +jxT +jxT +jxT +tLH +fhz +viM +tHT +nEG +wOP +vDD +vDD +wOP +blW +lWL +lWL +cYa +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(24,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +miM +miM +miM +miM +miM +gpG +gpG +miM +xTU +xTU +xTU +nAK +nAK +ruk +vjw +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +nai +nai +nai +nai +miM +miM +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +miM +miM +lWL +miM +lWL +lWL +aHl +lWL +qGN +lWL +fQG +nhk +dVh +oBh +ahG +kSX +gpG +gpG +gpG +gpG +gpG +gpG +rKR +xYt +aug +oud +tKb +oBh +jxF +mzv +lqX +sXj +syQ +hFQ +cku +gfM +spr +cku +nMQ +kre +sXj +oAu +iRg +sXj +sXj +sXj +cku +gLH +kvJ +cku +dGT +kZx +vMf +ivZ +vFj +rJu +iUc +gMI +jxT +xam +jxT +jxT +kpa +qUO +bTq +nCA +hdu +wOP +maV +jxT +wEK +fZj +aKg +nhk +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(25,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +miM +miM +miM +miM +gpG +miM +xTU +xTU +xTU +xTU +nAK +mWq +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +nai +nai +nai +rOc +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +lWL +miM +miM +jbn +aHl +jbn +miM +miM +miM +jbn +eZk +qeW +lWL +aHl +lWL +qeW +qGN +qGN +lWL +lWL +fQG +vCC +dVh +dVh +oBh +osc +gOJ +gpG +gpG +gpG +gpG +gpG +syW +bVh +bVh +opl +cSN +oBh +fQG +hnS +iuK +sXj +rHT +tCl +bql +nMQ +spr +cDY +pbE +fFW +sXj +sBv +hEX +iVc +hGt +apx +cku +cku +hbL +sXj +kuK +gaK +ina +wOP +wOP +hPx +wOP +qJR +mTE +wEU +wEU +wOP +rcF +mLM +qfJ +kRf +nEG +tLH +cPb +vDD +wOP +pNv +rMM +aks +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(26,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +miM +miM +miM +miM +gpG +miM +xTU +xTU +xTU +xTU +xTU +nAK +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +iTk +iTk +iTk +miM +miM +miM +miM +miM +qGN +qfd +aHl +xsI +jbn +iah +xsI +lJs +nTQ +lWL +lWL +aHl +iah +lWL +eZk +sCU +nGx +nGx +fMq +qGN +qGN +xsI +xsI +lWL +sNa +aoh +fQG +hPE +gOJ +gOJ +gpG +gpG +gpG +gpG +dLM +vBz +wIA +aBV +oBh +dVh +wzs +jrM +rBC +sXj +sXj +sXj +cku +nMQ +vye +cku +sXj +sXj +sXj +vKK +min +gKv +hcz +evz +upX +uus +rsE +sXj +dGT +gaK +uMZ +eVl +wOP +wOP +wOP +wOP +wOP +wOP +wOP +pVc +ena +diO +xfP +sNa +ina +wOP +jxT +eNT +wOP +blW +aks +aks +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(27,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +gpG +gpG +miM +miM +gpG +miM +miM +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +gpG +gpG +miM +xTU +xTU +xTU +xTU +xTU +nAK +nAK +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +rpz +cWx +rpz +rpz +rpz +lWL +mYK +mTn +miM +miM +miM +miM +miM +iTk +fzF +lWL +lWL +miM +aHl +miM +aHl +qGN +qGN +xdw +lWL +qur +lWL +xsI +iTk +trG +iTk +hSs +lRe +cJq +iTk +lWL +wcW +hWY +nGx +lWL +aHl +qGN +sNa +lWL +sNa +lWL +ujY +jMK +gOJ +aLd +kSX +gOJ +gpG +gpG +gpG +gpG +gOJ +gOJ +bhA +bUF +fQG +mUR +cyg +wnc +sXj +bND +pzW +bql +vSc +spr +gxN +kwD +kCn +sXj +iGS +qFK +njs +jEQ +mzx +qZP +pHo +aVr +sXj +wSt +gaK +mSO +eZk +pcp +qjI +fhz +mYb +qjI +dNR +pcp +oFY +lWL +cEd +sNa +sNa +ahk +wOP +pnJ +pnJ +wOP +blW +aoh +gpG +xDV +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(28,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +gpG +gpG +miM +gpG +gpG +gpG +gpG +xDV +gpG +miM +miM +miM +gpG +miM +miM +miM +xTU +xTU +xTU +xTU +xTU +nAK +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mTn +lWL +szw +mof +wie +kcJ +iTk +lWL +hux +lWL +miM +miM +sNa +miM +iTk +iTk +lWL +cJq +lWL +lWL +lWL +cJq +qGN +lWL +eZk +gzq +aHl +iTk +umO +nUE +tsv +iTk +iTk +jfu +iTk +iTk +eZk +upc +lJs +qeW +lJs +lWL +ctB +ctB +ctB +sNa +sNa +fQG +fSD +jxH +fQG +oUq +kSX +gpG +gpG +gpG +gpG +chq +gOJ +bhA +ybw +lIv +lqX +nsX +lIv +sXj +kZZ +bti +cku +bqx +opL +sXj +eGY +mdt +cku +rAR +dNU +oiR +ksq +cDS +iQb +pwS +lpa +cku +onb +gaK +lWL +wjJ +mTn +rZa +wtM +fhz +fEq +tVL +fcs +kuj +eZk +abm +lWL +cbY +izy +fGf +fMh +bhj +qjI +oDF +aks +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(29,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +miM +miM +gpG +gpG +gOJ +miM +xTU +xTU +xTU +xTU +nAK +nAK +nAK +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mYK +pgx +iTk +uca +fzF +iTk +iTk +lWL +cJq +lWL +mYK +mTn +lWL +lWL +aHl +iTk +iTk +iTk +iTk +iTk +iTk +lWL +mTn +iTk +iTk +iTk +iTk +iTk +iTk +iTk +iTk +iTk +iTk +iTk +iTk +iTk +lWL +mHv +tWG +lWL +iTk +qGN +lWL +lWL +aHl +sNa +lWL +uim +aKg +phs +nhk +dVh +aks +osc +gOJ +gpG +gpG +gpG +gpG +chq +bhA +eTu +lqX +iuK +rEW +lIv +sXj +sXj +cku +sXj +iiu +jtx +sXj +cku +sXj +sXj +lme +qFK +cku +ibb +xBG +kHP +iJu +kLd +sXj +wSt +gaK +lWL +cxR +bBM +mxg +pzw +fhz +qGN +lLh +vFE +liA +liA +lWL +jDd +jDd +wtM +fGf +fhz +gyH +eat +qRh +aks +gOJ +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +"} +(30,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +miM +xTU +xTU +xTU +nAK +nAK +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +cTp +iTk +iTk +iTk +iTk +mTn +iTk +iTk +lWL +iTk +iTk +iTk +lWL +iTk +iTk +iTk +iTk +iTk +iTk +iTk +iTk +nZE +iTk +iTk +iTk +adi +sNa +xsI +xsI +lJs +lJs +sNa +vUt +lWL +sNa +mYK +hWY +eZk +iTk +iTk +qGN +lJs +lWL +ctB +sNa +sNa +vUt +fQG +aks +ujY +fQG +oBh +osc +gOJ +gpG +gpG +gpG +gpG +gpG +bhA +oBh +crg +dKU +djO +bOu +kmg +dqk +fET +jMH +nMQ +spr +fOl +pnG +kxM +cyh +ffA +dxa +iAq +iPQ +mzx +gJG +ivg +hsv +sXj +wSt +tBu +obB +obB +obB +obB +obB +obB +pxl +wCr +tha +qni +qni +coG +lOz +lOz +tBu +fcs +fhz +erb +fQG +nhk +aks +azY +gOJ +gpG +gpG +gpG +xDV +gpG +gpG +xDV +gpG +gpG +gpG +miM +miM +"} +(31,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gOJ +miM +xTU +xTU +sSk +nAK +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +tUn +kiO +iTk +fKU +iTk +iTk +iTk +iTk +iTk +iTk +aHl +lWL +lWL +aHl +cJq +iTk +iTk +iTk +iTk +iTk +iTk +iTk +lWL +aHl +iTk +hux +cEd +ueo +lWL +lJs +lWL +lWL +sNa +sNa +mYK +lWL +lWL +aHl +lWL +iTk +iTk +iTk +lWL +lWL +aHl +sNa +sNa +sNa +lWL +lWL +lWL +aHl +jhj +hIm +gOJ +gOJ +gOJ +gpG +gpG +gOJ +bhA +lSN +lIv +rim +oMg +scm +rnw +fWS +wpb +pFI +nMQ +tiD +bqF +rbm +gJg +wQo +vmE +bFl +cku +agV +rMO +nzK +pwS +clv +sXj +vPR +tBu +dtX +val +xqz +msr +vKf +eRg +wQZ +oiZ +vrK +aHb +iAY +jxB +bmT +jxB +obB +fEq +oFY +erb +fQG +aKg +oBh +osc +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +miM +"} +(32,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +miM +xTU +xTU +nAK +pSD +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +aHl +lWL +hux +iTk +iTk +mTn +sHm +iTk +cWx +umP +hux +hux +lWL +uUj +mTn +mTn +iTk +iTk +iTk +lWL +lWL +aHl +lWL +lWL +lWL +lWL +iah +cEd +lJs +lWL +lWL +lWL +lWL +lWL +pKX +sNa +qeW +lWL +aHl +qGN +iTk +iTk +iTk +lWL +aHl +lWL +mYK +ctB +sNa +sNa +qeW +lWL +aHl +oBh +oUq +xVv +kSX +gpG +gpG +gpG +ouu +bhA +juZ +lIv +hvL +uGj +sia +wQo +bti +iRJ +nMQ +iTx +iTx +fJc +caT +lAr +wQo +btI +bFl +sXj +dud +dud +gzp +wZE +dud +cku +wXR +tBu +sji +utb +xCT +vgy +tcr +oLz +tLh +mRw +xDg +wbK +eOR +xDg +orm +xDg +tBu +fcs +fEq +erb +nhk +oBh +jhj +osc +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(33,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xTU +xTU +xTU +nAK +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +fKU +byp +mTn +uWU +iTk +iTk +iTk +iTk +iTk +hWj +sCe +rKg +fhz +cVe +eFw +hux +mTn +qGN +lsA +iTk +lWL +lWL +lWL +sNa +vUt +lWL +sNa +mYK +lWL +lWL +bjA +nGx +lWL +lWL +lWL +lWL +sNa +qeW +qeW +mYK +xsI +xsI +iTk +iTk +lWL +aHl +lWL +lWL +aHl +sNa +sNa +qeW +qeW +mYK +xuH +xuH +oBh +osc +gpG +gpG +gpG +gpG +bhA +dsC +lqX +sDk +wdZ +gIY +fMx +bti +wjd +wGY +ttC +wGY +aEA +nfZ +ehV +fMx +sPM +ubw +sXj +bkL +uVT +udR +wFj +nIL +sXj +wSt +obB +urG +oKl +czz +iYQ +aSb +tBu +qFG +qYR +bsm +uaO +gZm +xDg +iAY +pLT +obB +cNf +fhz +kTx +fQG +oBh +oBh +osc +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(34,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +xTU +xTU +pSD +sSk +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +mYK +lWL +tUn +yeB +fky +hux +iTk +iTk +iTk +aHl +jhW +pWH +fhz +bqH +dWC +qGN +qGN +eZk +lsA +iTk +lWL +aHl +lWL +sNa +sNa +mYK +aHl +lWL +aHl +hWY +tWG +kJf +lWL +lWL +lWL +lWL +mYK +lWL +qeW +lWL +qGN +xsI +iTk +iTk +qGN +lWL +aHl +lWL +aHl +sNa +lWL +lWL +qeW +lWL +nhk +aks +rvF +osc +gpG +gpG +gpG +gpG +bhA +dsC +lIv +pdL +lqX +lqX +cku +sHe +oTr +lTs +xfj +vHc +sXj +cku +cku +sXj +kxv +wdb +sXj +ude +qpV +cAM +uNI +ryw +sXj +sMO +obB +obB +pGZ +pGZ +pGZ +pGZ +obB +bKK +wTo +piV +vjr +vbX +xDg +xsD +caz +obB +nCA +kRf +fhz +jhj +oBh +nyY +wIY +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(35,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gOJ +frH +gOJ +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +xTU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +mTn +lWL +lWL +lWL +mYK +lWL +mTn +iTk +lWL +iTk +lWL +doE +sqI +twn +hpE +gGW +pRO +lsA +lsA +lsA +iTk +fqy +lWL +lWL +lWL +sNa +sNa +qeW +lWL +aHl +wcW +jIo +oSm +lWL +lWL +cJq +lWL +sNa +lWL +aHl +lWL +lWL +eZk +iTk +iTk +qGN +lWL +aHl +lWL +sNa +sNa +sNa +lWL +aHl +lWL +neX +oBh +oBh +osc +gpG +gpG +gpG +gpG +bhA +oBh +dKU +lqX +lIv +rBC +fMx +eIh +gpD +dSf +dla +szY +sXj +mph +wvP +sXj +lJK +bFl +cku +bKN +lIF +jEF +hlm +wnr +sXj +uZY +dGT +sMO +obB +thr +oCe +uNs +ibw +oMS +xDg +tnT +dpW +mqD +kBj +xDg +mVg +obB +nCA +fEq +bhj +dHz +oBh +nph +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(36,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +gOJ +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +mYK +qGN +aHl +lWL +qGN +byp +fKU +mTn +lWL +lWL +lWL +lWL +fzF +lWL +hux +fKU +lWL +eFw +qSF +xsI +fpn +mTn +euH +tOz +lsA +lWL +iTk +lWL +lWL +aHl +lWL +lWL +sNa +qeW +qeW +lWL +lWL +aHl +jbn +miM +xsI +lWL +uim +aHl +sNa +uhg +lWL +lJs +lWL +iTk +iTk +iTk +eZk +lWL +xsI +lWL +uim +aHl +sNa +sNa +lWL +vCC +lPZ +oBh +osc +gOJ +gpG +gpG +gpG +gZQ +oBh +oNm +oNm +oNm +xVE +fMx +qQz +xOa +kvb +dla +sIz +sXj +haC +vwW +sXj +lJK +pqt +cku +sXj +sXj +sXj +sXj +sXj +sXj +sXj +cku +onb +pGZ +pfh +tRE +iKL +tAR +oMS +xPb +mFJ +kXb +qwq +xDg +xDg +iMN +tBu +obB +hUQ +obB +obB +obB +osc +heN +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(37,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +lWL +aHl +cJq +lWL +lWL +lWL +mYK +miM +miM +miM +miM +lWL +mYK +lWL +hux +lWL +lWL +juL +eKg +lbV +kSV +jpz +eFw +dWC +lWL +sNa +iTk +lWL +aHl +lWL +lJs +lWL +lWL +aHl +qeW +cJq +lWL +jbn +miM +miM +lWL +aHl +vQf +mOS +dwI +nva +hux +hux +sNa +qGN +iTk +iTk +qGN +lWL +aHl +lJs +sNa +qeW +lWL +lWL +lWL +fQG +oRE +neX +osc +gOJ +gpG +gpG +gpG +tek +uIb +vBz +dtW +xsG +miM +cku +qOs +xOa +ilA +dla +xOa +vbD +haC +adt +omz +ooe +tiq +vSq +ffA +ffA +vSq +nwM +oWz +oQC +szn +sXj +sMO +pGZ +tRE +pvb +kDX +xQp +kWk +xDg +euM +rYD +wMa +xDg +sKN +cwo +tBu +gSJ +cDs +obG +vZa +vAX +hPE +gOJ +ouu +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(38,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +gOJ +chq +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +wfe +lWL +lWL +qGN +aHl +qGN +lWL +miM +miM +miM +miM +miM +miM +lWL +lWL +qGN +hux +hux +lWL +juL +aHl +jlK +knT +fhz +imq +djG +oal +lWL +iTk +lWL +aHl +lWL +lJs +lWL +sNa +lWL +aHl +lWL +miM +miM +miM +miM +miM +miM +miM +mPQ +uhg +eZk +qeW +cGL +uhg +hux +iyF +iTk +iTk +iTk +lJs +lWL +qeW +sNa +lWL +lWL +lWL +ujY +dco +fQG +osc +gOJ +gpG +gpG +gpG +gpG +gpG +lsJ +tpH +miM +miM +cku +lqx +qPA +bGr +gBW +eIh +sXj +qgA +eHa +omz +qFK +szb +pHo +cgI +lJK +tdt +ssu +dGF +sKS +vkC +sXj +wSt +pGZ +wrU +cLG +gQD +oFc +tps +wyS +lxd +atM +xDg +cnW +xDg +mRw +tBu +jVr +xuU +kGA +egx +tha +fQG +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(39,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +chq +gOJ +gOJ +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +lWL +lWL +lWL +mYK +lWL +lWL +miM +miM +miM +miM +miM +miM +mYK +lWL +lWL +iTk +hux +lWL +lWL +sel +jpz +dPd +knJ +jpz +eFw +sNa +lWL +lWL +lWL +lWL +xsI +lWL +sNa +cVD +sNa +sNa +mYK +miM +miM +miM +miM +miM +miM +miM +miM +cGL +mPQ +mOS +eZk +qeW +qGN +iTk +iTk +iTk +iTk +lWL +qeW +eZk +lJs +qeW +lWL +sNa +fQG +fQG +oBh +oUq +aId +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +cku +sXj +omz +omz +omz +koU +omz +jHd +jHd +omz +exr +qzh +jHd +dmi +xDN +xDN +jHd +omz +ere +nRH +sXj +dGT +pGZ +qVg +nvA +hsD +ecJ +kdR +qtS +bos +sKo +xtu +mjM +aZA +qST +tBu +cDs +oND +ibX +iKm +khp +fQG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(40,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +frH +gOJ +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +mYK +miM +miM +miM +miM +qGN +miM +miM +miM +miM +miM +miM +miM +lWL +hux +fKU +iTk +lWL +lWL +lWL +lWL +lWL +xag +rhk +sNa +qNh +gTb +lWL +lWL +lWL +lWL +aHl +lWL +sNa +qeW +lWL +lWL +jbn +mYK +miM +miM +miM +miM +miM +miM +miM +sNa +jbn +lNN +lWL +lWL +aHl +lWL +aHl +iTk +iTk +lWL +vzJ +sNa +sNa +ctB +sNa +sNa +neX +aoh +oBh +jhj +osc +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +jHd +jAE +mxl +rlI +hHU +hHU +iBT +kjd +aJz +tTZ +pGy +iRD +hAv +szb +tPa +jHd +mdf +vkC +cku +aud +obB +pGZ +pGZ +pGZ +pGZ +idR +iAY +iAY +rSn +qyk +qCV +qlp +xJH +tBu +klh +mcY +njE +vqo +kUz +fQG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(41,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +gOJ +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aHl +fid +lWL +iTk +lWL +lWL +lWL +mYK +sNa +sNa +lWL +sNa +lWL +qGN +lWL +lWL +lWL +lWL +lWL +lWL +mYK +miM +jbn +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +aHl +lWL +lWL +mYK +mTn +bcc +iTk +iTk +iTk +lJs +lWL +sNa +sNa +lWL +sNa +lWL +ujY +dco +kqa +xuH +osc +gpG +gpG +gpG +xDV +gpG +frV +gOJ +xeZ +miM +miM +rfe +omz +vtg +cku +ieT +sar +sar +cxP +nRW +bus +wft +iuf +gUQ +sPM +mqZ +lWe +jHd +uRs +pQX +pQX +ngO +oHE +weh +uZC +bES +fQm +ukM +jAq +jAq +ukM +ukM +mRw +ncm +sjJ +tBu +xVk +xVk +gvS +dwN +vAX +dHz +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(42,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +miM +miM +miM +miM +miM +miM +miM +miM +fQG +bJa +lWL +eZk +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +lWL +qGN +lWL +lWL +lWL +lWL +lWL +sNa +gTb +lWL +lWL +lWL +qGN +lWL +qGN +sNa +sNa +lNN +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +mYK +lWL +iTk +iyF +iTk +lWL +sNa +lWL +sNa +lWL +lWL +ctB +aks +fQG +fQG +oBh +hIm +gOJ +gpG +gpG +gpG +gpG +gpG +usV +lyL +sxr +oBh +xOi +omz +vtg +cku +dGT +dWW +dWW +lJK +vhL +uyo +rlZ +vKb +uJW +tlv +xCQ +bdt +jHd +lnA +btH +mKX +pHo +btI +rAr +fTr +hfY +wJh +rdZ +akj +vIH +mfr +ukM +mRw +ixx +qYR +tBu +obB +obB +vAX +vAX +obB +fQG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(43,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +frH +miM +miM +miM +miM +miM +miM +miM +fQG +nhk +lWL +lJs +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +mYK +lWL +fMq +pyu +qfd +qfd +fMq +fMq +fMq +lWL +eZk +lWL +iTk +iTk +iTk +lJs +sNa +lWL +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +lWL +qGN +iTk +iTk +iTk +qGN +twn +uim +sNa +uim +lWL +lWL +ujY +aks +ujY +oBh +osc +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +jPL +aBV +xuH +omz +vtg +yaX +gnh +iDP +epa +jlc +kEk +srB +rlZ +gad +rcL +uJW +bkg +mdg +omz +omz +omz +omz +jHd +sdf +jgY +fTr +xaS +fQm +fTv +nQO +vgG +hJI +iNw +xDg +dYL +uND +vPN +miM +rcw +aKg +fQG +fQG +fQG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(44,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gOJ +lPB +miM +miM +miM +miM +miM +dVh +miP +fQG +lWL +qeW +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +fMq +oZh +lWL +eZk +lWL +lWL +lWL +iTk +lWL +lWL +iTk +iTk +iTk +iTk +lWL +sNa +lWL +lWL +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +dPQ +lWL +qGN +iTk +iTk +iTk +lWL +ctB +qGN +lWL +uim +sNa +lWL +fQG +wzh +neX +fQG +pkD +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +xDV +gpG +ppD +oBh +omz +koU +koU +heb +vYH +epa +rBb +kEk +lsj +rlZ +bkN +xDi +cBW +lsg +hkx +fpm +hwW +hwW +uJW +omz +wME +mYW +tMH +mzt +wJh +uBr +bRP +bFX +tnS +kby +xsR +eOP +xsR +vPN +miM +miM +fQG +nhk +frH +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(45,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +aLd +qxx +oBh +miM +miM +miM +miP +fQG +fQG +fQG +aHl +lWL +miM +miM +miM +miM +miM +miM +miM +miM +mTn +lWL +lJs +cYa +lWL +aHl +fMq +fid +hux +lWL +fMq +iTk +iTk +iTk +iTk +iTk +iTk +iTk +iTk +iTk +lWL +lWL +sNa +cJq +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +lWL +qGN +uqU +lWL +aHl +iyF +lWL +qGN +qGN +lWL +sNa +lWL +aHl +fQG +uoQ +fQG +jxH +heN +lOj +ket +gOJ +cGy +erB +gpG +gpG +gpG +gpG +mmK +tIH +omz +tUb +sgy +dGT +dGT +plk +rBb +rFs +sTG +kXJ +iXs +mfd +gbN +srO +gbN +dSl +dkV +pQX +wyx +igW +eUc +ngc +vJx +szb +wJh +ucK +cfm +akj +gmI +ukM +tRE +kmX +aVQ +vPN +miM +miM +miM +miM +tpH +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(46,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +bhA +oBh +jhj +fQG +miM +miP +rdF +aKg +neX +fQG +cJq +qGN +lWL +miM +miM +miM +miM +miM +miM +jbn +lWL +lWL +lWL +mYK +lJs +ylR +qGN +lWL +hux +hux +hux +lWL +iTk +iTk +iTk +iTk +iTk +iTk +iTk +lWL +sNa +lWL +sNa +pKX +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +jmD +iTk +iTk +lWL +aHl +xsI +lJs +sNa +sNa +lWL +veX +aks +fQG +fSD +jxH +fGG +oUq +kSX +uPZ +gOJ +gpG +gpG +gpG +gpG +glO +dKU +jHd +srT +dGT +aaG +qVG +hFe +vmE +btI +voq +dGF +mjF +oSL +btI +dGF +dGF +dGF +aPo +vkC +xaI +rAs +kuH +dSA +wYy +szb +wJh +isn +hOJ +baN +qgJ +oyb +htM +gnw +jFM +vPN +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(47,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +aLd +ruK +oBh +oBh +aoh +miM +fQG +aKg +neX +aKg +neX +sNa +lWL +lWL +miM +miM +miM +miM +mYK +eZk +qGN +lWL +lWL +cJq +qGN +lWL +lWL +lWL +qGN +lWL +lWL +fMq +lWL +iTk +iTk +iTk +iTk +iTk +iTk +iTk +lWL +lWL +lWL +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +qGN +qGN +bJa +qGN +iTk +iTk +iTk +iTk +lWL +lWL +lWL +fMq +lWL +bVh +bVh +bVh +aKg +fQG +fQG +bVh +lqG +rzP +pHp +gWs +lqX +ucj +gVX +dKU +fSp +aRy +dGT +dGT +aaG +qzW +mkC +jEv +btI +vwd +rpw +sTs +mHQ +wEF +uJW +dGT +tUX +qma +lfb +jIh +omz +rnO +tDf +wYy +jUZ +wJh +wJh +wJh +wJh +fQm +fQm +mky +tzH +mky +vPN +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(48,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +bhA +oBh +oBh +oBh +aks +aKg +fdc +aKg +fQG +jCs +fQG +lWL +sNa +sNa +qGN +lWL +lWL +lWL +lWL +cCl +qGN +cYa +lWL +lJs +lWL +lWL +lWL +mYK +lWL +fMq +qGN +lWL +eZk +fMq +eZk +eZk +iyF +sNa +lWL +lWL +sNa +vUt +lWL +sNa +mYK +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +lWL +lWL +iTk +iTk +iTk +iTk +iTk +iTk +nZE +bVh +dWN +bVh +bVh +bVh +fQG +hVl +rzP +rzP +rzP +dKU +gpG +gpG +bdW +dKU +dKU +aRy +dGT +dGT +jOR +wRw +rUm +hFe +kEk +sKS +dGF +omz +omz +omz +xbo +xbo +omz +omz +omz +jHd +omz +sPM +sTV +iaV +uOh +ovS +pDO +sPM +sPM +sPM +ewJ +tDf +tjL +sQH +vPN +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(49,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +bhA +oBh +oBh +oBh +neX +neX +neX +veX +gop +aKg +fdc +qeW +sNa +sNa +lWL +enG +qGN +sNa +sNa +sNa +lWL +miM +miM +miM +miM +miM +lWL +jbn +lWL +lWL +lWL +lWL +eZk +lWL +eZk +fMq +lWL +sNa +fMq +lWL +sNa +sNa +mYK +lWL +cJq +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +lWL +mYK +lWL +iTk +iTk +iTk +iTk +mYK +fQG +bVh +bVh +bVh +bVh +bVh +rzP +rzP +rzP +lqG +qEf +eKx +gpG +lwa +jvN +bdW +aRy +uJW +dGT +aaG +vjv +exm +nUo +xOj +xDa +fgp +jHd +szb +aGh +sPM +mZK +koU +oNz +qlE +hzV +omz +soK +tDf +quj +geg +wgn +uoY +lGm +lGm +qIk +cAK +cKa +jvs +snP +omz +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(50,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +bhA +jhj +oBh +oBh +aKg +neX +jCs +aoh +fQG +neX +veX +lWL +lWL +lWL +lWL +sNa +sNa +sNa +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +cJq +fMq +lWL +qfd +eZk +aHl +qGN +fMq +lWL +lWL +lWL +pKX +sNa +qeW +lWL +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aHl +lWL +cJq +lWL +lWL +lWL +lWL +lWL +lWL +lWL +lWL +fQG +fQG +ujY +fQG +fGG +iEV +fQG +rVe +rzP +pLD +wIY +gpG +xDV +gpG +glO +rNJ +jHd +aiM +eHK +cUI +lyb +qNs +vPB +iMH +tHr +cbj +omz +vEO +lJK +jIx +pTC +koU +mlQ +ePb +eIw +omz +haX +gAO +fTr +qxu +hxY +rRv +giu +vMv +kDq +kDq +kDq +kDq +ryt +omz +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(51,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +bhA +oBh +oBh +aoh +aKg +aks +aks +fQG +aKg +aoh +aKg +qeW +sNa +lWL +lWL +lWL +mYK +jbn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +fMq +lWL +fMq +lWL +sNa +sNa +fMq +oZh +lWL +lWL +lWL +lWL +lWL +sNa +qeW +qeW +mYK +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +aHl +lWL +lWL +mYK +lWL +lWL +lWL +lWL +lWL +lWL +lWL +oyy +vEC +tfh +hty +vEC +qox +fQG +lqG +kgY +gOJ +gpG +gpG +gpG +sPL +qEf +omz +dWp +wHC +okA +wHC +wHC +dcU +iMH +vqB +pHo +ktw +fJU +tsM +opf +sPM +oZK +pnG +mUy +xRv +omz +prI +qee +ebM +wft +iXz +eag +ffh +geP +geP +fYi +nzd +aUN +eag +jHd +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(52,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +dLM +aBV +oBh +fQG +jCf +aKg +aKg +aKg +fQG +fQG +nhk +lWL +cJq +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +fMq +lWL +sNa +qGN +lWL +qGN +qGN +aHl +lWL +lWL +lWL +mYK +lWL +qeW +mYK +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +cJq +lWL +mYK +lWL +cJq +lWL +lWL +qeW +jaD +atT +iyT +jZh +brT +nhk +aoh +osc +gOJ +gpG +gpG +gpG +bhA +rfe +omz +ssW +gAk +plk +xlu +dGT +vmE +nWh +fTr +mYW +bCI +lms +wGC +btI +rFx +koU +omz +omz +omz +mUM +lRu +hJX +vIV +sAP +jHd +jHd +vrP +fCt +fqK +gaK +omz +jHd +gaK +omz +omz +omz +omz +jHd +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(53,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +dLM +aBV +jhj +aKg +jCs +gop +veX +fQG +fQG +fQG +lWL +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +aHl +sNa +eZk +fqy +iyF +lWL +sNa +lWL +lWL +lWL +sNa +lWL +cJq +lWL +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +lWL +aHl +lWL +lWL +aHl +tfh +nwk +bjW +fNF +uMp +tVe +rzP +fFk +gOJ +gpG +gpG +gpG +bhA +qpu +omz +esZ +tVQ +szR +iMH +oJx +iuL +pII +bSK +rJC +ktw +mWX +tQw +hWw +uJW +uJW +jHd +cmS +tEi +kDy +jQM +omz +igR +wxN +koU +tKK +kdW +gMt +kvY +bvE +omz +rjb +qzb +kJm +gDF +fgN +kJC +omz +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(54,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +dLM +aBV +aKg +neX +aKg +fQG +fQG +fQG +nhk +lWL +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +sNa +sNa +sNa +iTk +jbn +sNa +xsI +lWL +uim +aHl +sNa +sNa +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +cJq +aHl +lWL +lWL +eZk +lWL +qox +kNa +ugR +mHV +pOr +sRf +twF +oUq +kSX +rwz +gpG +gpG +gqc +drq +omz +uBw +cET +jlc +aIM +nZX +oHz +xqn +wKi +pyX +nfW +oTf +sDP +btI +sPM +efM +jHd +epj +wzk +tYH +wYk +xbW +khX +uJY +mkI +uue +wCJ +iXN +bjz +lpi +gaK +mDQ +vmE +oSZ +rOh +edO +xWo +omz +miM +miM +miM +miM +miM +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(55,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +ouu +chq +aoh +fQG +fQG +veX +neX +fQG +fQG +cpI +lWL +qGN +qGN +qGN +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +cVD +lWL +sNa +iTk +lWL +lWL +aHl +sNa +qGN +lWL +lWL +mYK +jbn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +jbn +lWL +myG +lWL +lWL +tOo +qox +rjA +cAA +jiu +qox +qox +vqT +dVh +hPE +gpG +gpG +gpG +drq +drq +omz +fFa +szb +tEQ +pHo +szb +qxu +rJC +ebM +nNY +bCI +oTf +sDP +cWA +sPM +sPM +jHd +tqq +wNr +kka +qLR +sTS +qVZ +fpQ +jKq +ljO +szb +wak +nma +uJW +fBw +lgq +nLG +qmr +rgF +rCN +xWo +omz +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(56,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +fQG +fQG +fQG +fQG +fQG +lWL +qGN +cYa +lJs +qGN +eZk +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mYK +aHl +lWL +aHl +lWL +aHl +qGN +lWL +qGN +lWL +lWL +lWL +cJq +pKX +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aHl +lWL +cJq +lWL +qeW +lWL +qox +qox +gRZ +hTo +jbb +uvF +qox +fQG +tpH +gpG +gpG +gpG +drq +drq +omz +kRN +jei +kHW +njP +szb +qxu +cwa +enP +kIg +omz +xPj +lJK +wlz +hmu +sPM +jHd +dkt +vmE +xCP +xfn +omz +dVT +crR +koU +icJ +xZe +btI +nma +stk +gaK +fpQ +lJK +dLG +edO +unS +tnK +omz +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(57,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +aLI +gOJ +fQG +fQG +oBh +fQG +fQG +mOa +qGN +llu +lWL +qGN +qGN +qGN +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +mYK +jbn +mYK +lWL +aHl +oZh +key +lWL +lWL +lWL +qGN +xsI +xsI +lWL +mYK +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +owK +pYP +owK +owK +tfz +xFL +cqs +vqT +gon +tfh +vqT +qox +dVh +kSX +gOJ +xDV +gpG +gOJ +drq +omz +vwC +oKw +mtZ +jjL +uJW +liL +lBd +bjS +eRi +omz +iKW +esx +cjT +vEJ +isZ +jHd +emh +epR +vrM +nBk +omz +ujc +xAs +jHd +hUH +aLO +qJI +xky +bYg +omz +elg +mIK +piJ +iKu +vRw +dpL +omz +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(58,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +chq +dLM +aBV +oBh +oBh +fQG +cYa +qeW +lWL +cYa +mOa +cYa +qGN +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +jbn +lWL +lWL +mYK +lWL +qGN +qGN +lWL +lWL +qGN +qGN +sNa +mYK +sNa +qeW +lWL +aHl +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +owK +ljY +owK +owK +aNk +aNk +owK +mhl +gvg +vBw +owK +nyY +hPE +gOJ +gpG +gpG +gpG +frH +jHd +omz +omz +omz +omz +omz +tUy +fnt +tUy +omz +omz +jHd +qxn +nTH +hkE +jHd +omz +gaK +omz +omz +jHd +omz +gaK +omz +gaK +cWO +wFg +iek +opL +xUs +gaK +gaK +riR +omz +rNK +omz +omz +omz +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(59,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +dLM +aBV +oBh +oBh +lWL +eZk +qGN +lWL +qGN +ctB +qeW +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +mYK +mYK +aHl +lWL +lWL +oZh +qGN +nva +lWL +fMq +qGN +lWL +mYK +sNa +uTk +qeW +mYK +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +ljY +owK +aNk +owK +tEA +rXU +mlv +jid +ljB +mKl +kdB +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +drq +drq +drq +fQG +wjj +lFP +cjo +jck +lIv +lqX +lqX +nhk +jwe +lVB +lIv +fQG +fQG +pMW +jCs +yeD +lqX +lIv +lIv +lqX +bzW +lqX +gfL +gfL +lIv +lIv +aKg +isv +fQG +fQG +nhk +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(60,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +tpH +gpG +gpG +gpG +bhA +jhj +oBh +ctB +qGN +qGN +qGN +eZk +llu +qGN +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +rHc +jbn +cVD +mYK +qGN +qeW +qGN +sNa +lWL +lWL +qGN +lWL +mYK +qGN +lWL +qeW +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +cIV +eOw +owK +hLp +jid +ojJ +rRd +xOb +mqx +iwL +gOJ +gOJ +gpG +dCq +sXU +aId +drq +drq +fQG +neX +wjj +lFP +cjo +jck +lIv +lqX +neX +fQG +gOJ +bhA +dHz +wOh +xPX +crg +iEF +qpv +fQG +rwV +aKg +bzW +lqX +iZU +prp +wPk +gfL +eIQ +kEE +nDj +fQG +qPc +sIX +wIY +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(61,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +bhA +qpu +oBh +lWL +lLF +cYa +lJs +qGN +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +lWL +mYK +qGN +lWL +qGN +lWL +lWL +lWL +qGN +lWL +aHl +sNa +lWL +lWL +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +hua +dvN +isU +fLn +fLn +aNk +img +vsU +ygj +rmV +oBh +hIm +gOJ +gpG +gpG +bhA +jhj +drq +drq +drq +drq +dPT +yep +nSy +lFP +ueO +lwa +aKg +wzM +rdF +pJn +dLM +vBz +vBz +qEZ +fKP +rxJ +oBh +rfe +oBh +lXp +wxj +aks +vTx +eaI +fOZ +ebr +mbT +vGM +xMU +vBz +hPE +snf +gOJ +gOJ +miM +miM +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(62,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +pJn +gpG +bhA +oBh +oBh +lWL +drM +cYa +aHl +miM +miM +lJs +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +aHl +lWL +sNa +mYK +qGN +lWL +aHl +lWL +qGN +lWL +mYK +sNa +sNa +sNa +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kLT +fdG +dvN +hhN +oyE +lgS +mlv +vsU +ygj +aHq +fiw +oBh +osc +gOJ +gpG +xDV +bhA +oBh +drq +drq +drq +drq +gpG +gpG +iHH +lFP +brp +bhA +neX +tDn +tJG +tpH +gpG +gpG +tpH +gOJ +dLM +hXX +vBz +vBz +vBz +hPE +dLM +vBz +hPE +glo +gpG +gOJ +dLM +kzn +pEk +chq +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(63,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +ppD +oBh +jhj +llu +mOa +qGN +qGN +miM +miM +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +cJq +lWL +iBS +eZk +mYK +lWL +lWL +lWL +qGN +qGN +lWL +lWL +aHl +lWL +cJq +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kLT +mSc +xCf +caM +dvN +dvN +kjR +ygj +dvN +aHq +tnm +fLn +oBh +osc +gOJ +gpG +gpG +kGW +vBz +lKZ +drq +frH +pJn +gpG +gpG +oov +lFP +rNb +dLM +vBz +wIY +tpH +gpG +gpG +gpG +gpG +gpG +tpH +gpG +gpG +gpG +gOJ +gpG +gpG +gpG +gpG +rVw +gpG +gpG +gOJ +tpH +frH +gpG +tpH +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(64,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +tqm +oBh +oBh +ctB +lWL +aHl +miM +miM +lWL +lWL +lWL +mYK +cYa +miM +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +lWL +mYK +jbn +aHl +lWL +lWL +oZh +lWL +jbn +qGN +lWL +lWL +lWL +lWL +lWL +mYK +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kLT +sbj +dvN +miM +oAs +ezc +dvN +aHq +tnm +fLn +fLn +oBh +osc +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +dTB +gpG +qEe +cjo +fYj +gpG +tpH +gOJ +gpG +gpG +frH +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(65,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +bhA +oBh +oBh +lWL +lWL +lWL +lWL +mYK +tUn +lWL +lWL +lWL +lWL +mYK +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +lWL +sNa +vUt +lWL +sNa +mYK +lWL +qGN +lLF +lWL +qGN +fMq +lWL +lWL +qeW +aHl +sNa +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mNO +jIu +mNO +xFL +gvg +fLn +nQT +oUq +kSX +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xuA +lFP +brp +gpG +gpG +gpG +gpG +gpG +tpH +gpG +gpG +gpG +gpG +gpG +frH +gOJ +gpG +gpG +nWE +gOJ +gpG +gpG +gpG +hyD +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(66,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +dLM +aBV +oBh +lWL +lWL +lWL +lWL +aHl +cYa +cJq +lWL +aHl +lWL +dPQ +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +mYK +sNa +sNa +mYK +lWL +sNa +sNa +iTk +qGN +lWL +aHl +qGN +lWL +aHl +aHl +sNa +lNN +aHl +miM +miM +jbn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +hKc +mJv +dQN +wMU +ljY +aNk +fLn +oBh +oBh +osc +gOJ +gpG +gpG +gpG +gpG +xDV +ouu +gpG +gpG +gpG +ikN +lFP +brp +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +mNV +mqx +mqx +mqx +gQV +aId +gOJ +gpG +mJf +gpG +gpG +gpG +gbK +rYB +jHY +pjT +pjT +pjT +tAH +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(67,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +mpV +aBV +fMq +aHl +myZ +myZ +lWL +aHl +fjM +lWL +myZ +myZ +fjM +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +pKX +lNN +qeW +lWL +sNa +iyF +lWL +qGN +lWL +lWL +xsI +lJs +lWL +sNa +lWL +mYK +miM +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +ljY +miM +miM +miM +owK +fCe +peh +ljY +aNk +xFL +xtv +dcG +xOi +osc +gOJ +gpG +gpG +gpG +gpG +gOJ +aLd +mqx +xxa +gpG +oov +lFP +brp +gpG +gpG +gpG +drq +drq +drq +gOJ +gOJ +gpG +mNV +ruK +oBh +oBh +oBh +oBh +osc +frH +gpG +wPk +hWa +ldP +mkW +nld +xOi +oBh +lqX +oCR +lIv +mgw +kSX +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(68,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gXD +lWL +myZ +myZ +lWL +aHl +lWL +lWL +aHl +myZ +myZ +myZ +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +mYK +miM +aHl +uim +qeW +qeW +mYK +iTk +fMq +lWL +qGN +lWL +aHl +aHl +lWL +lWL +ctB +lWL +qGN +qGN +lWL +lWL +miM +qGN +qGN +miM +miM +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +aHl +aae +aHl +ecl +qGN +qfd +aHl +jYd +aHl +vkt +dVh +jhj +osc +gOJ +gpG +gpG +gpG +gpG +gOJ +drq +drq +oUq +kSX +xBt +mwX +gGN +crg +gTg +drq +drq +drq +drq +drq +frH +gOJ +bhA +oBh +oBh +oBh +oBh +nyY +hPE +gOJ +gpG +jYu +mEZ +olI +ruK +oBh +oBh +aoh +fQG +mCN +lqX +oBh +qoi +kSX +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(69,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gOJ +myZ +myZ +myZ +mSO +fjM +lWL +bHE +lWL +myZ +myZ +myZ +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aHl +lWL +qeW +aHl +lWL +lWL +qGN +lWL +lWL +lWL +gkK +sNa +lJs +lWL +qGN +cJq +jbn +lWL +qGN +qGN +qGN +lWL +miM +miM +lWL +uqU +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +mYK +cJq +lWL +lWL +cVD +uqU +qGN +xdw +lWL +sNa +uqU +dbU +oBh +osc +rwz +gpG +gpG +gpG +gpG +gOJ +drq +drq +drq +oUq +nub +xWD +awp +iBX +iDD +drq +drq +drq +drq +gOJ +gpG +gOJ +bhA +oBh +neX +dVh +nyY +hPE +gOJ +gpG +pMn +pCi +mEZ +iEE +oFV +kWV +aoh +koU +koU +mBd +koU +gaK +fDN +nph +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(70,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +myZ +myZ +myZ +myZ +myZ +myZ +fMq +jpO +tUn +fMq +myZ +myZ +myZ +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aHl +sNa +lWL +aHl +qeW +sNa +aHl +lWL +qGN +sNa +sNa +lWL +lJs +lWL +qGN +lWL +sNa +qGN +lWL +cCl +qGN +lWL +aHl +qGN +miM +lWL +lWL +lWL +mYK +xdw +mYK +sNa +uqU +miM +miM +miM +miM +miM +uqU +qeW +lWL +sNa +qeW +bdd +fMq +lWL +lWL +qGN +aHl +eZk +vkt +vkt +qGN +dVh +xuH +osc +gOJ +gpG +gpG +gpG +gpG +gOJ +drq +drq +drq +sXj +aPs +cuf +aPs +cku +sXj +sXj +sXj +drq +drq +gpG +gpG +gpG +bhA +oBh +aKg +gaK +koU +hkE +wQo +wQo +koU +yhO +yhO +yhO +koU +gaK +gaK +gaK +oqX +ugF +gxU +gaK +oBh +osc +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(71,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +myZ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +fMq +lJs +myZ +myZ +myZ +myZ +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +miM +xsI +lWL +uim +aHl +sNa +sNa +eZk +sNa +lWL +iTk +qGN +qGN +sNa +sNa +lWL +oaT +sNa +lJs +lJs +qGN +sNa +lWL +lWL +lWL +bgE +lLF +xdw +lWL +mYK +cJq +mYK +lWL +qGN +cCl +xdw +lWL +sNa +uqU +lWL +lWL +qGN +qfd +cVD +xsI +fMq +qfd +lWL +lWL +aHl +aHl +lWL +iBS +lWL +mYK +rma +hEw +lrA +osc +gOJ +gpG +gpG +gpG +gpG +gpG +drq +drq +drq +sXj +dGT +cbG +mKz +jOs +fKx +oDv +sXj +elP +gpG +gpG +gpG +gpG +bhA +oBh +aKg +gaK +amv +vlw +lIX +qkl +kba +hnY +fFg +vot +oqo +eXT +mBd +dGT +nbc +jrP +vdZ +gaK +oBh +osc +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(72,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +myZ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +lJs +myZ +myZ +myZ +myZ +myZ +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +lWL +aHl +mYK +jbn +cVD +lWL +rqY +oZh +lWL +qGN +iTk +qGN +qGN +lWL +lWL +lJs +lWL +sNa +vUt +lJs +sNa +sNa +sNa +lWL +lWL +lWL +qGN +uqU +lWL +lWL +lWL +mYK +mYK +lWL +qGN +qGN +qGN +cCl +lWL +lWL +lWL +bgE +qGN +xdw +fMq +sNa +qGN +lWL +aHl +aHl +mYK +qeW +vkt +xsI +uim +kzW +nhk +oBh +rdv +kSX +gpG +gpG +gpG +gpG +gOJ +tpH +drq +drq +sXj +tEr +sUU +fLt +cUf +huL +oxO +cku +rIP +faH +faH +faH +faH +faH +faH +vHh +koU +pgy +szb +azN +lGL +rrw +vSq +xNb +vSq +hlk +uJW +koU +jHd +jHd +jHd +rTs +gaK +oBh +osc +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(73,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +pwP +cfb +pwP +myZ +myZ +myZ +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +sNa +vUt +lWL +sNa +mYK +lWL +lWL +qGN +iTk +lWL +lWL +lWL +lJs +lWL +oaT +sNa +sNa +lJs +eZk +uhg +uhg +lWL +pKX +cJq +qGN +uqU +mYK +miM +miM +miM +miM +lWL +fMq +fMq +sNa +sNa +lWL +lWL +fMq +lWL +fMq +ylR +lWL +fMq +lWL +lWL +lWL +lWL +fMq +lWL +lWL +lWL +mYK +aHl +nhk +oBh +oBh +osc +gpG +gpG +xDV +gpG +sXj +sXj +cku +cku +sXj +xPr +lbI +cPv +cku +dGT +aMB +diJ +jdV +jdV +euW +jdV +jdV +jdV +jdV +jdV +cLm +huK +vTu +iUT +cfe +dph +szb +siH +siH +jgU +ugX +koU +jCQ +nyz +jHd +koU +gaK +oBh +dQS +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(74,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +myZ +fqI +fqI +fqI +iwe +myZ +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +sNa +sNa +mYK +lWL +lWL +aHl +sNa +qGN +iTk +qGN +lWL +qGN +lWL +fHT +lWL +lWL +sNa +sNa +qGN +qeW +lWL +sNa +qeW +qGN +qGN +miM +miM +miM +miM +miM +aae +aHl +lNN +sNa +lWL +lWL +bLF +nGx +lWL +hux +hux +fMq +fMq +fMq +lWL +fMq +lWL +lWL +mYK +lWL +lWL +lWL +mYK +mYK +fQG +nhk +uOn +osc +gpG +gpG +gpG +aLd +sXj +mKk +kRR +rBr +sfR +iNC +skh +hAD +sXj +pJO +blp +ood +jdV +jdV +jdV +jdV +jdV +euW +jdV +jdV +qJj +ifC +oYz +koU +tWr +jtW +beN +jtW +jtW +koU +qwf +koU +dGT +dGT +ouM +oBh +oBh +oBh +osc +ouu +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(75,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +gOJ +chq +gOJ +miM +miM +miM +miM +miM +miM +miM +myZ +myZ +myZ +fqI +myZ +myZ +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +pKX +sNa +qeW +lWL +lWL +lWL +qGN +aHl +qGN +nva +lWL +lWL +lJs +lJs +lJs +lWL +sNa +qGN +qfd +aHl +xsI +aHl +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +sNa +hux +hux +lWL +hux +hux +aHl +fMq +hux +fMq +hux +hux +lWL +lWL +lWL +lWL +lWL +mYK +lWL +lWL +lWL +mYK +dVh +dVh +oBh +osc +gpG +gpG +aLd +ruK +sXj +hqZ +gkO +nqg +gdv +sPM +uJW +mpQ +sXj +sXj +cku +sXj +lqX +iEF +lwa +lwa +iEF +lqX +lAc +dll +koU +spE +jPS +jtW +rSb +mYm +gYy +gYy +aru +koU +ilG +waQ +qwX +qbS +cmE +lWu +oBh +aoh +hPE +snf +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(76,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +miM +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +gpG +miM +gpG +tpH +chq +gOJ +fAF +gOJ +lPB +miM +miM +miM +miM +miM +miM +myZ +myZ +xZK +myZ +myZ +myZ +myZ +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +sNa +qeW +qeW +mYK +qGN +qGN +lWL +lLF +sNa +lWL +lWL +lWL +lWL +lJs +lWL +lWL +qGN +qGN +ygc +aHl +qXQ +miM +miM +miM +miM +miM +miM +jbn +iTk +fzF +lWL +lWL +lWL +aHl +lWL +aHl +lWL +who +who +fMq +fMq +hux +fMq +nGx +nGx +nGx +nGx +nGx +fMq +lWL +lWL +aHl +hUi +ujY +ujY +hPE +gpG +gpG +dmx +oBh +wQo +gck +btI +iQn +qOM +sPM +skh +dGT +lmK +sVj +mwV +sXj +sUj +htO +nwg +gpG +gpG +gpG +bhA +dVh +koU +kxC +qbt +mhX +nwi +usE +iXr +jrS +pjI +koU +htc +sbm +isl +ivL +fMx +neX +fQG +fQG +fQG +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(77,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +lPB +mqx +mqx +mqx +mqx +ruK +oBh +yhd +fQG +fQG +fQG +miM +miM +myZ +eEy +fqI +pwP +myZ +myZ +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +mYK +lWL +qeW +lWL +lWL +lWL +lWL +lLF +lWL +lWL +lWL +aHl +aHl +lWL +lWL +sNa +qGN +aHl +eZk +qfd +sFa +miM +miM +miM +miM +lWL +iTk +lWL +lWL +sNa +lWL +ylZ +lWL +lWL +lWL +lWL +who +lWL +abm +lWL +lWL +lWL +aHl +nGx +lWL +fMq +fMq +bLF +nGx +lWL +lWL +lWL +nhk +nhk +ujY +gpG +gpG +gpG +ppD +tYz +mTI +mRQ +mre +aLT +uJW +btI +btI +rQp +cku +sVj +vBt +sXj +oBh +oBh +osc +gpG +gpG +gpG +ipA +fQG +tqZ +oBa +tCk +beN +kZu +hhU +fYa +hfj +vGb +koU +koU +gaK +gaK +omz +jHd +fQG +ikH +oBh +oUq +kSX +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(78,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +aLd +qxx +oBh +oBh +oBh +oBh +qTC +oBh +kfu +nMI +hvX +pNW +rMM +miM +myZ +myZ +fqI +fqI +myZ +myZ +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +qXQ +vUt +lWL +sNa +lWL +sNa +sNa +mYK +lWL +iTk +qGN +qGN +aHl +lWL +lWL +xsI +lWL +uim +aHl +aHl +lWL +iBS +lWL +mYK +miM +miM +miM +jbn +sNa +iTk +lFB +sNa +sNa +lWL +lWL +lWL +lWL +iTk +iTk +lWL +who +lWL +lWL +aHl +lWL +lWL +nGx +bLF +fMq +lWL +lWL +nGx +mYK +lWL +lWL +nhk +fQG +nhk +gpG +gpG +gpG +dLM +aBV +qPT +cEh +sPM +eyi +vFR +jYR +gxQ +bBj +sXj +wtJ +nyc +sXj +oBh +vGM +osc +gpG +gpG +gpG +bhA +oBh +wQo +oZC +tCk +jtW +kZu +kKh +fYa +hvt +tnX +koU +cod +qaT +kZj +jHd +rMG +neX +oBh +oBh +oBh +osc +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(79,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +xeD +azA +azA +xeD +oBh +oBh +jhj +oBh +mIS +jhS +pcr +oeY +jvT +wxE +miM +miM +myZ +myZ +fqI +fqI +qwh +myZ +myZ +miM +miM +miM +miM +miM +miM +miM +qXQ +sNa +dPQ +lWL +lWL +lWL +pKX +sNa +lWL +iTk +lWL +qGN +qGN +qGN +lWL +aHl +lWL +sNa +qeW +mYK +uTk +gzq +jYd +sNa +miM +miM +iyF +fMq +qqF +sNa +sNa +lWL +lWL +hux +lWL +lWL +sNa +lWL +bLF +nGx +who +who +who +who +lWL +hux +lWL +nGx +nGx +kmw +nGx +nGx +lWL +lWL +lWL +ujY +fQG +nhk +gpG +gpG +xDV +gpG +dLM +sXj +kTH +ajt +leE +jyR +igf +eSc +deq +cku +lCT +qhD +sXj +nyY +vBz +hHM +gpG +gpG +xDV +ppD +oBh +fMx +fSv +vTu +jtW +qBi +gYy +gYy +gYy +hfB +koU +gFb +sZo +dGT +jHd +jHd +oBh +oBh +fDN +jhj +osc +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(80,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +azA +xeD +azA +azA +oBh +azA +oBh +nBY +oBh +hvX +hvX +ylm +bjW +oBh +fQG +xrT +miM +myZ +myZ +hqz +qnO +fqI +myZ +myZ +myZ +myZ +miM +miM +miM +miM +miM +miM +pKX +sNa +qeW +lWL +lWL +lWL +sNa +qeW +lWL +lWL +xsI +lWL +lWL +lWL +lWL +lWL +tio +lWL +lWL +hrV +lWL +mYK +miM +miM +jmD +iTk +fyJ +sNa +sNa +lWL +lWL +lWL +lWL +lWL +sNa +sNa +who +nGx +nGx +nGx +nGx +nGx +bXc +lWL +hux +lWL +cIA +nGx +lWL +nGx +nGx +lWL +mYK +mYK +fQG +fQG +ujY +gOJ +gpG +gpG +gpG +gpG +sXj +sRJ +uIx +nhA +pFF +dMZ +dfE +itu +sXj +jOD +uJH +cku +hPE +tpH +gpG +gpG +gpG +mNV +ruK +oBh +koU +irF +nOE +koU +koU +koU +koU +koU +koU +koU +dGT +sWR +pHo +trH +omz +oBh +oBh +nyY +rRq +hPE +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(81,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +dLM +aBV +oBh +oBh +oBh +oBh +oBh +kfu +xQV +xQV +rVt +bjW +wxE +dZG +miM +myZ +myZ +myZ +myZ +fqI +fqI +myZ +myZ +myZ +myZ +myZ +myZ +myZ +miM +miM +lWL +sNa +qeW +qeW +lWL +lWL +mYK +mYK +lWL +xsI +lWL +myG +eZk +cJq +lWL +qeW +mYK +lWL +qeW +lWL +mYK +mYK +lWL +lWL +lWL +cJq +sNa +sNa +lWL +fMq +lWL +lWL +lWL +sNa +lWL +lWL +who +nGx +rqY +who +nGx +nGx +nGx +lWL +hux +lWL +lWL +nGx +nGx +uGb +nGx +lWL +fMq +fMq +fQG +dVh +fQG +osc +gpG +gpG +gpG +gOJ +sXj +sXj +sXj +fMx +fMx +fMx +cku +sXj +sXj +sXj +sXj +sXj +gpG +chq +gpG +gpG +lPB +ruK +oBh +tUw +gaK +fwi +pHo +uBO +xdC +nrY +pHo +eAh +elw +pHo +dGT +pHo +pHo +trH +omz +jhj +kCj +hPE +oLd +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(82,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +dLM +aBV +oBh +oBh +oBh +oBh +dTm +kfu +xQV +hvX +oBh +rMM +azA +miM +myZ +myZ +myZ +myZ +myZ +fqI +pwP +myZ +myZ +iwe +myZ +myZ +myZ +miM +miM +lWL +mYK +lWL +qeW +lWL +lWL +sNa +lWL +aHl +iTk +lWL +sNa +lWL +lWL +qGN +mYK +miM +miM +miM +miM +miM +lWL +vao +lWL +abm +sNa +sNa +lWL +lWL +fMq +tjS +hux +ylZ +lWL +lWL +aHl +nGx +tWG +nGx +nGx +uAo +nGx +who +who +lWL +fMq +fMq +fMq +lWL +fMq +lWL +fMq +qGN +fMq +dVh +oBh +xuH +nph +gpG +gpG +gpG +gOJ +tpH +gOJ +gOJ +gOJ +oBh +gOJ +gOJ +tpH +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +dLM +vBz +mxx +hPE +gaK +gaK +gaK +gaK +gaK +koU +ewM +wVx +cHC +hRv +hjc +pHo +pHo +jHd +omz +nyY +hbb +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +miM +"} +(83,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +tqm +oBh +oBh +oBh +oBh +oBh +ffL +dbn +ffL +oeO +fQG +llI +miM +myZ +myZ +myZ +myZ +myZ +fqI +xZK +fqI +fqI +fqI +mij +myZ +myZ +miM +miM +lWL +sNa +lWL +aHl +lWL +uim +aHl +sNa +mYK +aGN +lWL +qGN +lWL +mYK +rNE +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +lWL +rqY +lWL +lWL +fMq +ahX +hux +hux +lWL +lWL +aHl +nGx +nGx +sNa +bLF +hnL +iTk +lWL +who +fMq +fMq +lWL +lWL +lWL +aHl +lWL +lWL +fMq +pCa +lWL +hMA +nhk +ujY +osc +gpG +gpG +gpG +gOJ +gOJ +gpG +gpG +tpH +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +tpH +gpG +gpG +gpG +gpG +gpG +koU +gaK +gaK +gaK +gaK +gaK +gaK +anV +jHd +dLM +wIY +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +"} +(84,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +miM +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +dLM +aBV +oBh +oBh +oBh +oBh +oBh +oBh +igH +wxE +aKg +myZ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +fqI +fqI +fqI +pwP +myZ +myZ +miM +miM +uim +aHl +sNa +hvD +lWL +sNa +mYK +lWL +lWL +lWL +jbn +cCl +eZk +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +lWL +aHl +hux +hux +sNa +sNa +hux +lWL +lWL +lWL +lWL +nGx +nGx +nGx +nGx +hWY +kXj +iTk +fMq +nGx +nGx +nGx +lWL +aHl +aHl +lWL +fMq +fMq +qGN +fMq +fQG +fQG +nhk +kDm +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gpG +gpG +gpG +xDV +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +"} +(85,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +dLM +aBV +oBh +oBh +oBh +oBh +oBh +oqn +nAu +rxH +bVh +xfi +frZ +myZ +myZ +myZ +myZ +myZ +myZ +fqI +fqI +bWN +bWN +myZ +myZ +miM +miM +miM +lWL +sNa +sNa +mYK +lWL +lWL +aHl +qGN +lWL +lWL +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +lWL +fzF +lWL +lWL +lWL +lWL +lWL +sNa +qfd +hux +lWL +lWL +lWL +nGx +nGx +uqY +nGx +lWL +hux +who +iTk +uSc +uGb +nGx +lWL +lWL +lWL +lWL +lWL +fMq +qGN +lWL +fMq +dVh +fQG +nhk +nwg +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gOJ +gpG +gpG +xDV +gpG +gOJ +gpG +gpG +xeZ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +miM +miM +miM +miM +"} +(86,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +aLd +ruK +oBh +kfu +kfu +wPA +isG +isG +oBh +bVh +bVh +enb +kwl +sdS +xdz +eis +myZ +myZ +myZ +fqI +fqI +bWN +abx +mij +myZ +miM +miM +miM +miM +lWL +sNa +sNa +qeW +lWL +lWL +raJ +lWL +lWL +lWL +aHl +miM +miM +miM +miM +miM +miM +miM +miM +lWL +iTk +lWL +lWL +ylZ +sNa +sNa +sNa +who +who +hux +lWL +who +nGx +uqY +uqY +nGx +xwv +lWL +pus +cOa +qFu +nGx +lWL +lWL +cIA +nGx +bXc +lWL +fMq +fMq +fMq +qGN +dVh +qTn +fQG +osc +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +gpG +gpG +gpG +gOJ +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gpG +gpG +gpG +gpG +xeZ +gOJ +gpG +gOJ +frH +gpG +xDV +gOJ +gOJ +gOJ +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +"} +(87,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +aLd +ruK +kNf +jhS +kfu +aIU +kfu +ffL +oBh +hYQ +hYQ +aPj +gaG +hYQ +pbH +qkp +enb +hYQ +hYQ +myZ +hqz +fqI +fqI +fqI +myZ +myZ +miM +miM +lWL +aHl +lWL +mYK +sNa +qeW +qeW +lWL +lWL +qGN +lWL +xsI +lWL +miM +miM +aHl +miM +miM +miM +miM +aHl +sNa +lWL +lWL +sNa +sNa +sNa +lWL +lWL +lWL +lWL +lWL +who +nGx +nGx +bLF +uqY +nGx +lWL +hWY +nGx +sNa +nGx +lWL +lWL +cIA +nGx +lWL +nGx +lWL +lWL +lWL +mYK +lWL +dVh +dVh +pJH +hPE +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +cVt +mqx +mqx +mqx +kSX +gpG +gOJ +gOJ +xCW +lgB +aUt +mqx +rPW +gOJ +cFQ +mqx +mqx +cfR +mqx +mqx +rYB +cak +kSX +gOJ +gpG +gpG +miM +miM +gOJ +gOJ +gpG +gpG +xDV +gpG +xDV +gpG +gpG +gpG +gpG +miM +"} +(88,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +miM +gpG +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +kjq +bhA +oBh +jhS +bpT +bFY +xQV +xQV +grz +oBh +hYQ +cdh +pbH +aPj +hYQ +dIT +aPj +xae +kIr +hYQ +myZ +myZ +pwP +umH +pwP +myZ +myZ +miM +miM +aHl +lWL +mYK +lWL +lWL +lWL +vzJ +lWL +nva +lWL +lWL +lWL +cJq +qGN +lWL +cEd +cJq +jbn +miM +miM +lWL +lNN +lWL +lWL +hux +hux +lWL +lWL +qfd +pyu +lWL +lWL +mYK +nGx +nGx +nGx +nGx +nGx +fKz +nGx +nGx +uAo +lWL +who +lWL +uGb +nGx +nGx +cIA +lWL +lWL +lWL +lWL +lWL +ujY +ryQ +pRX +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +gpG +gpG +gpG +gOJ +gpG +gpG +aLd +ruK +oBh +oBh +oBh +oUq +kSX +heN +aLd +jiZ +tcS +ujY +fQG +fQG +fQG +gOJ +fQG +nhk +fQG +dVh +jhj +aDI +aoh +miM +miM +gpG +frH +miM +miM +miM +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +miM +"} +(89,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +miM +gpG +xDV +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +aLd +ruK +oBh +kNf +jhS +kfu +lRG +kfu +ffL +isG +hYQ +lJw +aPj +qkp +hYQ +hYQ +nou +qkp +rrf +hYQ +myZ +myZ +wkh +fqI +myZ +myZ +myZ +miM +miM +aHl +lWL +lWL +cVD +sNa +lWL +aHl +lWL +sNa +lWL +lWL +lWL +lWL +qeW +miM +miM +cEd +cEd +lWL +miM +lWL +sNa +ylZ +lWL +hux +lWL +sNa +sNa +qfd +lWL +lWL +lWL +aHl +nGx +tWG +lWL +nGx +lWL +nGx +hWY +lWL +iyF +lWL +who +lWL +lWL +ohA +lWL +nGx +bXc +lWL +aHl +lWL +lWL +nhk +osc +frH +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +fwY +mqx +mqx +mqx +mqx +mqx +kSX +gpG +gOJ +gpG +bhA +fQG +ujY +fQG +nhk +nhk +kdN +chq +aKg +ujY +nhk +doc +fQG +fQG +uCg +pJn +aoh +dVh +nhk +hUi +aKg +fQG +nhk +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +miM +"} +(90,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +bhA +oBh +qpu +oBh +oBh +kfu +kfu +wPA +isG +isG +hYQ +lWJ +aPj +hYQ +hYQ +asY +pbH +aPj +hYQ +hYQ +hYQ +hYQ +fqI +myZ +myZ +myZ +myZ +miM +miM +aHl +xsI +lWL +uim +aHl +sNa +sNa +lWL +lWL +lWL +lWL +iTk +qeW +lWL +miM +miM +miM +aHl +vly +lWL +lWL +sNa +lWL +lWL +kBQ +lWL +lWL +sNa +sNa +lWL +fMq +lWL +lWL +hWY +nGx +hux +nGx +nGx +uGb +nGx +lWL +xhl +lWL +who +lWL +sNa +mVl +lWL +lWL +lWL +mCz +lWL +lWL +lWL +ujY +qwS +gOJ +gOJ +gOJ +gOJ +gpG +gOJ +gOJ +lPB +bLU +oBh +fQG +fQG +fQG +nhk +lFd +kOz +gOJ +aLd +ruK +fQG +nhk +aoh +fdc +aKg +gOJ +gOJ +ujY +nhk +ujY +aks +fQG +fQG +fQG +uPH +gOJ +fQG +neX +fQG +rdF +rcw +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(91,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gOJ +gpG +gpG +gpG +gpG +aLd +fHr +oBh +oBh +oBh +oBh +oBh +oBh +oBh +oBh +isG +qrw +hYQ +hYQ +hYQ +hYQ +sex +epz +uvz +aPj +uvz +eaA +fqI +fqI +myZ +myZ +myZ +myZ +miM +miM +lWL +aHl +lWL +sNa +qeW +lWL +fMq +jbn +qGN +lWL +lWL +iyF +cJq +qeW +miM +miM +miM +miM +miM +miM +lWL +lNN +iTk +sNa +sNa +qfd +lWL +bLF +sNa +lWL +lWL +lWL +aHl +nGx +sNa +lWL +nGx +lWL +tWG +kXj +fMq +lWL +hux +hux +hux +sNa +lWL +lWL +aHl +aHl +lWL +lWL +lWL +aHl +nhk +fPe +mqx +mqx +mqx +mqx +mqx +mqx +sXU +ruK +oBh +fQG +nhk +fQG +fQG +fQG +fQG +fQG +gOJ +dVh +aKg +sUJ +aks +aKg +fbH +ujY +chq +aKg +neX +aks +ujY +doc +aks +fQG +fQG +fQG +gOJ +nhk +fQG +qTn +fQG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(92,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +miM +gOJ +gpG +gpG +gOJ +bhA +oBh +oBh +oBh +kfu +kfu +wPA +isG +rrT +oke +oBh +fqI +uvz +aPj +sYR +hYQ +hYQ +nou +aPj +hYQ +hYQ +hYQ +hYQ +fqI +myZ +myZ +myZ +myZ +miM +miM +mYK +lWL +lWL +aHl +lWL +jbn +lWL +lWL +qGN +qGN +qGN +iTk +lWL +aHl +miM +miM +miM +miM +miM +miM +lWL +sNa +iTk +sNa +lWL +lWL +lWL +hWY +sNa +lWL +hux +lWL +lWL +uGb +nGx +nGx +nGx +hWY +nGx +who +lWL +who +who +lWL +lWL +sNa +lWL +aHl +lWL +aHl +lWL +aHl +lWL +lWL +ujY +fQG +nhk +fQG +fQG +fQG +fQG +fQG +fQG +nhk +fQG +fQG +lWL +lWL +qGN +lWL +lWL +nGx +fKz +qGN +qfd +aHl +xsI +lWL +vkt +eZk +nGx +lWL +sNa +qGN +mYK +aHl +mTn +lWL +lWL +nhk +gOJ +fQG +gop +nhk +rcw +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(93,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +miM +miM +miM +gOJ +gpG +gpG +gOJ +oSb +qpu +kNf +jhS +kfu +aIU +kfu +ffL +oBh +oBh +neX +hYQ +lfj +hYQ +aPj +hYQ +iZo +qkp +fqI +bBA +hYQ +myZ +myZ +fqI +myZ +myZ +myZ +myZ +miM +miM +lWL +mYK +lWL +aHl +jCL +lWL +fMq +lWL +eZk +lWL +qGN +lWL +lWL +lWL +myG +miM +miM +miM +miM +jbn +lWL +lWL +iTk +kBQ +lWL +sNa +lWL +sNa +sNa +sNa +sNa +sNa +lWL +nGx +lWL +nGx +nGx +nGx +lWL +who +who +who +fMq +lWL +lWL +lWL +lWL +lWL +lWL +lWL +mYK +lWL +lWL +lWL +ujY +fQG +fQG +fQG +fQG +nhk +dVh +fQG +fQG +ujY +fQG +fQG +lWL +mYK +lWL +lWL +aHl +nGx +lWL +qGN +qGN +xdw +lWL +sNa +uqU +lWL +nGx +eZk +lWL +aHl +aHl +aHl +aHl +mTn +lNN +neX +gOJ +neX +wQY +dVh +doc +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(94,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +miM +miM +miM +gOJ +gOJ +gpG +gpG +gpG +gpG +pbA +oBh +jhS +bpT +bFY +xQV +xQV +grz +oBh +oBh +oBh +hYQ +hYQ +hYQ +aPj +sZs +aPj +pRD +aPj +cge +myZ +myZ +myZ +fqI +fqI +myZ +myZ +myZ +miM +miM +miM +lWL +enG +eZk +fMq +fMq +lWL +fMq +mOx +fMq +lWL +lWL +fMq +cJq +qGN +lWL +mYK +miM +lWL +lWL +cJq +lWL +nNs +lWL +sNa +sNa +lWL +sNa +sNa +ylZ +who +who +nGx +nGx +eQY +nGx +rqY +lWL +lWL +lWL +aHl +lWL +lWL +aHl +lWL +lWL +mYK +lWL +lWL +lWL +mYK +lWL +lWL +lWL +lWL +lWL +mYK +mYK +lWL +mYK +lWL +lWL +qGN +lWL +lWL +lWL +lWL +upc +nGx +lWL +lWL +nGx +mYK +qGN +aHl +eZk +qfd +qfd +qGN +nGx +nGx +lWL +lWL +qeW +rHc +mTn +mTn +mTn +jbn +gOJ +gOJ +nhk +qnu +fQG +fQG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(95,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +xDV +gpG +gOJ +bhA +oBh +kNf +jhS +kfu +lRG +kfu +ffL +oBh +oBh +wne +hYQ +hYQ +xfi +aPj +cbH +aPj +aPj +qkp +qkp +lUr +myZ +myZ +myZ +ohy +ohy +myZ +myZ +miM +miM +miM +lWL +aHl +iTk +iTk +qeW +fMq +lWL +fMq +lWL +lWL +lWL +lWL +sNa +qGN +lWL +lWL +lWL +lWL +lWL +lWL +lWL +who +lWL +lWL +lWL +lWL +kBQ +sNa +lWL +who +lWL +tWG +nGx +nGx +eRs +sNa +sNa +lWL +lWL +lWL +hux +jml +fMq +lWL +lWL +abm +lWL +lWL +mYK +mYK +mYK +sNa +lWL +lWL +lWL +lWL +lWL +lWL +vSu +pyu +mYK +lWL +lWL +lWL +mYK +nGx +nGx +nGx +lWL +sNa +nGx +nGx +nGx +lWL +iBS +lWL +mYK +rma +nGx +lWL +oJv +sNa +sNa +cVD +aHl +miM +miM +miM +gOJ +aks +rcw +dVh +aks +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(96,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +dLM +aBV +oBh +qpu +kfu +kfu +wPA +isG +oBh +isG +oBh +fqI +bxc +qkp +hHj +nsm +vCb +sru +qkp +fqI +woW +myZ +myZ +myZ +myZ +ohy +myZ +myZ +miM +miM +miM +miM +iTk +iTk +iTk +iTk +iTk +lWL +fMq +qeW +lWL +fMq +lWL +lWL +qGN +lWL +cJq +lWL +sNa +lNN +sNa +sNa +who +who +nGx +lWL +lWL +sNa +sNa +xTB +who +lWL +nGx +kmw +lWL +sNa +sNa +lWL +lWL +aHl +hux +hux +hux +hux +lWL +lWL +lWL +lWL +qeW +lWL +lWL +pKX +sNa +mYK +aHl +bLF +nGx +nGx +nGx +upc +lWL +lWL +lWL +lWL +lWL +lWL +cIA +nGx +lWL +qGN +mYK +qGN +sNa +nGx +lWL +mYK +lWL +fMw +aHl +nGx +qeW +nJX +cCl +mYK +vzJ +miM +miM +miM +drq +gOJ +nhk +drq +nai +eBs +drq +drq +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(97,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +dLM +rIj +oBh +oBh +oBh +oBh +oBh +oBh +oeO +myZ +pbH +qkp +gzv +hHj +efS +wMk +sru +fqI +rYr +myZ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +miM +miM +fMq +fMq +iTk +iTk +jCT +qCn +iTk +fMq +fMq +sNa +lWL +lWL +lWL +qGN +qGN +lWL +aHl +lWL +lWL +sNa +sNa +lWL +aHl +who +bLF +lWL +who +ylZ +lWL +aHl +lWL +aHl +nGx +nGx +sNa +sNa +who +nGx +nGx +fKz +lWL +iTk +hux +lWL +lWL +aHl +lWL +mYK +ctB +lWL +sNa +sNa +lWL +qeW +lWL +cIA +upc +nGx +nGx +nGx +nGx +nGx +nGx +nGx +lWL +aHl +lWL +lWL +lWL +qGN +lWL +qGN +xsI +nGx +nGx +nGx +nGx +nGx +eZk +nGx +sNa +ctB +qGN +lWL +miM +miM +miM +drq +drq +kvL +drq +drq +nai +nai +drq +drq +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(98,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +dLM +vBz +aBV +oBh +jhj +oBh +oBh +miM +myZ +tnM +aPj +qkp +bec +eJx +efS +qkp +pbH +hYQ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +myZ +miM +miM +miM +fMq +qeW +iTk +iTk +iTk +iTk +fMq +lWL +sNa +lWL +oZh +lWL +lWL +sNa +lWL +lWL +bLF +upc +hux +lWL +lWL +itG +who +lWL +who +lwj +lWL +lWL +lWL +aHl +nGx +nGx +hWY +sNa +mYK +nGx +nGx +fKz +fKz +lWL +lWL +lWL +lWL +lWL +abm +lWL +lWL +ctB +uim +sNa +lWL +mYK +lWL +aHl +lWL +nGx +nGx +cIA +fKz +bLF +nGx +nGx +bLF +lWL +sNa +lWL +lWL +lWL +mYK +lWL +aHl +mYK +xsI +mYK +mYK +hqG +hWY +nGx +nGx +xsI +cJq +jYd +aHl +miM +miM +drq +drq +drq +kvL +drq +drq +nai +nai +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +miM +miM +"} +(99,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gOJ +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +gpG +gOJ +dLM +aBV +xxH +oBh +wxE +miM +hYQ +sHQ +tnM +qkp +jiB +txh +hfN +oRs +epz +fAe +qkp +gHN +myZ +myZ +myZ +myZ +myZ +myZ +miM +miM +miM +lWL +iTk +iTk +iTk +iTk +jCL +fMq +lWL +sNa +sNa +lWL +iTk +lWL +sNa +sNa +lWL +nGx +lWL +lWL +iTk +lWL +sNa +sNa +lWL +who +hux +hux +hux +who +lWL +nGx +nGx +lWL +sNa +nGx +uGb +nGx +uGb +nGx +hux +cEd +fMq +qGN +ctB +lWL +aHl +fMq +fMq +xsI +lWL +lWL +lWL +lWL +mYK +lWL +xsI +aHl +lWL +lWL +aHl +lWL +lWL +lWL +sNa +sNa +lWL +lWL +lWL +lWL +lWL +mYK +qGN +lWL +lWL +qGN +mYK +mYK +qGN +nGx +hWY +sNa +jbn +miM +miM +miM +drq +drq +kvL +kvL +drq +nai +nai +nai +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +miM +miM +"} +(100,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +dLM +aBV +oBh +nhk +miM +miM +hYQ +hYQ +wtW +eOG +cpc +uvz +qkp +hYQ +hYQ +myZ +hNN +fYG +myZ +myZ +myZ +myZ +myZ +miM +miM +miM +fMq +lWL +cVD +tOo +mYK +aHl +aHl +lWL +lWL +sNa +lWL +iTk +lWL +lWL +lWL +lWL +lWL +lWL +lWL +lWL +lWL +hux +who +abm +lWL +hux +who +who +who +bLF +tWG +der +sNa +sNa +nGx +nGx +nGx +nGx +nGx +lWL +cEd +fMq +qGN +fMq +qGN +qGN +msZ +fMq +lWL +ctB +lWL +qGN +fMq +lWL +lWL +lWL +mYK +lWL +lWL +lWL +pKX +lWL +lWL +mYK +sNa +lWL +aHl +lWL +lWL +lWL +lWL +lWL +lWL +aHl +lWL +qGN +mYK +qGN +mYK +nGx +nGx +nGx +jfF +kvL +drq +drq +kvL +kvL +rOc +nai +nai +nai +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +nai +nai +nai +nai +drq +drq +drq +drq +miM +miM +"} +(101,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gOJ +gpG +gOJ +miM +miM +miM +miM +miM +myZ +myZ +myZ +hYQ +hYQ +aPj +dbJ +myZ +myZ +myZ +myZ +pbH +rhY +myZ +myZ +myZ +myZ +miM +miM +fMq +lWL +sNa +vUt +lWL +sNa +lWL +lWL +lWL +aHl +lWL +sNa +cqy +abm +lWL +lWL +hux +lWL +iyF +iTk +lWL +hux +hux +who +lWL +lWL +lWL +who +lWL +nGx +nGx +fMq +sNa +sNa +nGx +nGx +nGx +aHl +nGx +lWL +lWL +cEd +fMq +qGN +qGN +jbn +qGN +fMq +qGN +qGN +xsI +fMq +qGN +qGN +iGT +lWL +lWL +qeW +mYK +sNa +sNa +lWL +lWL +lWL +pKX +pKX +lWL +lWL +lWL +mYK +mYK +mYK +lWL +mYK +mYK +lWL +aHl +mYK +qGN +qGN +uFt +sNa +miM +miM +kvL +nIc +kvL +kvL +nai +aFD +nai +nai +nai +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +nai +nai +drq +nai +drq +drq +drq +drq +miM +miM +"} +(102,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +miM +miM +miM +miM +miM +myZ +myZ +myZ +uQQ +qkp +pbH +xeo +myZ +myZ +evE +gAD +qkp +rww +myZ +myZ +myZ +myZ +gZv +lWL +aHl +lWL +sNa +sNa +lWL +lWL +lWL +aHl +lWL +lWL +aHl +sNa +lWL +lWL +lWL +iTk +lWL +lWL +iTk +lWL +lWL +hux +lWL +who +who +hux +lWL +lWL +lWL +aHl +fMq +fMq +fMq +nGx +nGx +nGx +aHl +nGx +nGx +sBD +qGN +jbn +qGN +qGN +ylZ +qGN +qGN +qGN +qGN +qGN +fMq +fMq +ctB +qGN +qGN +lWL +lWL +lWL +mYK +sNa +lWL +lWL +sNa +sNa +lWL +lWL +lWL +xsI +lWL +lWL +lWL +lWL +vzJ +lWL +lWL +mYK +mYK +lWL +mYK +qGN +mYK +jbn +miM +miM +drq +drq +kvL +kvL +nai +nai +nai +nai +drq +drq +drq +drq +drq +drq +drq +drq +drq +nai +rOc +drq +drq +nai +drq +drq +nai +nai +drq +drq +drq +miM +miM +"} +(103,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gOJ +gOJ +gpG +gpG +gOJ +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +gpG +miM +miM +miM +miM +myZ +lwg +qkp +sZs +oPC +myZ +myZ +myZ +myZ +vNE +qkp +bil +myZ +myZ +myZ +miM +lWL +lWL +lWL +fMq +sNa +sNa +qeW +lWL +aHl +lWL +mYK +lWL +sNa +aHl +lWL +lWL +iTk +fMq +hux +fMq +lWL +lWL +lWL +lWL +hux +hux +hux +lWL +aHl +aHl +lWL +lWL +lWL +aHl +nGx +nGx +nGx +myG +nGx +nGx +fMq +qGN +fMq +qGN +qGN +qGN +fMq +qGN +fMq +qGN +rqY +ofe +fMq +jbn +fMq +qGN +lWL +lWL +lWL +mYK +lWL +lWL +lWL +mYK +xsI +lWL +lWL +mYK +sNa +lWL +lWL +aHl +eZk +qeW +lWL +lWL +lWL +mYK +mYK +mYK +mYK +mYK +mYK +miM +miM +drq +drq +nIc +kvL +nai +nai +nai +nai +drq +drq +drq +drq +drq +drq +nai +xQa +drq +nai +nai +nai +drq +nai +drq +drq +drq +drq +drq +drq +drq +miM +miM +"} +(104,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gOJ +gpG +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +gpG +gpG +gpG +gpG +miM +miM +myZ +myZ +umH +qkp +pbH +myZ +myZ +iJL +nNc +qkp +pbH +myZ +myZ +myZ +myZ +miM +mYK +cJq +aHl +fMq +fMq +sNa +qeW +qeW +lWL +lWL +mYK +mYK +lWL +lWL +aHl +sNa +sNa +syZ +itw +kBQ +lWL +sNa +sNa +sNa +lWL +lWL +lWL +fMq +aHl +abm +lWL +lWL +lWL +lWL +nGx +nGx +nGx +nGx +nGx +nGx +lWL +lWL +qGN +qGN +ftZ +fMq +fMq +fMq +qnM +fMq +lWL +aHl +fMq +fMq +lWL +fMq +qGN +lWL +lWL +lWL +qeW +lWL +hWd +lWL +lWL +lWL +qeW +sNa +lhy +aHl +lWL +lWL +lWL +sNa +sNa +lWL +lWL +lWL +aHl +mYK +lWL +lWL +mYK +miM +drq +drq +drq +drq +kvL +aFD +nai +eUP +nai +nai +uyI +drq +drq +drq +nai +nai +nai +nai +nai +nai +nai +drq +nai +drq +drq +drq +drq +drq +drq +drq +miM +miM +"} +(105,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +myZ +kUl +xSz +mSW +myZ +myZ +qkp +myZ +wWr +myZ +myZ +myZ +myZ +myZ +miM +lWL +aHl +lWL +fMq +fMq +lWL +fMq +qeW +lWL +lWL +lWL +lWL +mYK +aHl +lWL +aHl +uhg +hux +dKi +hux +kBQ +lWL +lWL +lWL +who +who +who +who +aHl +fMq +lWL +lWL +aHl +lWL +nGx +tWG +nGx +nGx +nGx +nGx +rce +lWL +qGN +qGN +iTk +iTk +lWL +aHl +fMq +fMq +lWL +lLF +qGN +fMq +lWL +aHl +qGN +lWL +lWL +lWL +tOo +mYK +lWL +lWL +lWL +sNa +sNa +sNa +sNa +lWL +lWL +lWL +lWL +mYK +sNa +vUt +aHl +lWL +lWL +lWL +mYK +lNN +mYK +miM +drq +drq +kvL +kvL +kvL +nai +kPT +nai +nai +nai +drq +drq +drq +drq +nai +nai +nai +drq +drq +drq +nai +nai +nai +aFD +drq +drq +drq +drq +drq +drq +miM +miM +"} +(106,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +myZ +myZ +myZ +myZ +myZ +myZ +uJN +myZ +myZ +myZ +myZ +myZ +myZ +myZ +miM +lWL +aHl +mYK +fMq +lWL +sNa +fMq +lWL +lWL +lWL +lWL +lWL +lWL +mYK +lWL +lWL +lWL +hux +hux +kBQ +hux +qeW +lWL +aHl +lWL +mYK +lWL +sNa +aHl +lWL +lWL +lWL +lWL +aHl +nGx +nGx +piW +nGx +tWG +nGx +myG +lWL +qGN +fMq +fMq +qGN +qGN +qGN +qGN +qGN +qGN +gQc +qGN +qGN +lWL +fMq +qGN +fMq +lWL +lWL +lWL +qeW +lWL +qGN +qGN +qGN +lWL +rvH +lWL +lWL +lWL +qeW +qeW +lWL +aHl +sNa +sNa +lWL +aHl +lWL +mYK +sNa +aHl +miM +drq +drq +kvL +kvL +kvL +nai +aFD +nai +kPT +nai +drq +drq +drq +nai +nai +drq +drq +drq +drq +drq +drq +nai +nai +nai +drq +drq +drq +drq +drq +drq +miM +miM +"} +(107,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +myZ +myZ +myZ +myZ +ppW +qkp +wZY +myZ +myZ +myZ +myZ +myZ +myZ +miM +mYK +lWL +xsI +lWL +sNa +lWL +sNa +sNa +lWL +sNa +sNa +aHl +lWL +lWL +lWL +lWL +lWL +hux +cSH +itw +kBQ +qeW +qeW +mYK +lWL +mYK +mYK +lWL +lWL +aHl +fMq +lWL +lWL +lWL +nGx +uqY +uqY +uqY +nGx +nGx +lWL +fMq +qGN +fMq +qGN +qGN +eUG +qGN +qGN +qGN +qGN +qeW +alw +fMq +iTk +fMq +fMq +qGN +eZk +xsI +fMq +pho +qGN +qGN +lWL +qGN +lWL +lWL +iTk +iTk +qeW +qeW +lWL +aHl +lWL +aHl +aHl +lWL +lWL +lWL +mYK +pKX +mYK +miM +drq +drq +drq +nai +nai +nai +drq +drq +kPT +nai +nai +drq +drq +nai +drq +drq +drq +drq +drq +drq +drq +drq +nai +nai +drq +drq +drq +drq +drq +drq +miM +miM +"} +(108,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +myZ +myZ +myZ +bUP +pbH +ncb +myZ +myZ +myZ +myZ +myZ +myZ +miM +lWL +lWL +aHl +aHl +sNa +qeW +lWL +lWL +jbn +lWL +lWL +lWL +fMq +lWL +lWL +lWL +mYK +lWL +ltE +hux +mls +lWL +qeW +lWL +lWL +lWL +lWL +lWL +aHl +lWL +lWL +lWL +lWL +aHl +tWG +nGx +uqY +uqY +nGx +qTm +fMq +lWL +lWL +lWL +qGN +qGN +fMq +fMq +fMq +fMq +fMq +iGT +fMq +lWL +iyF +qGN +qGN +qGN +eZk +hHO +fMq +lWL +qGN +iTk +iTk +qGN +qGN +cJq +lWL +iyF +iTk +iTk +lWL +lWL +lWL +mYK +sNa +sNa +aHl +lWL +lWL +lNN +aHl +miM +drq +drq +drq +nai +nai +nai +drq +drq +eUP +rbZ +aFD +nai +nai +nai +drq +drq +drq +drq +drq +nai +drq +nai +nai +nai +xQa +drq +drq +drq +drq +drq +miM +miM +"} +(109,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +miM +myZ +myZ +myZ +uli +qkp +pjP +myZ +miM +miM +miM +miM +miM +miM +lWL +sNa +sNa +mYK +aHl +lWL +fMq +lWL +lWL +lWL +lWL +aHl +lWL +lWL +sNa +lWL +cJq +mYK +lWL +aHl +cJq +lWL +aHl +mYK +cVD +lWL +lWL +lWL +lWL +aHl +lWL +lWL +fMq +nGx +nGx +uqY +pXA +nGx +nGx +lWL +lWL +enG +eZk +mYK +mYK +cJq +lWL +lWL +lWL +mYK +xsI +kqc +lWL +aHl +iTk +qGN +fMq +lWL +eZk +eZk +lWL +qeW +cJq +lWL +aHl +qGN +qGN +lWL +iBS +lWL +pfi +lWL +lWL +qeW +tvT +lWL +sNa +aHl +lWL +lWL +lWL +mYK +aHl +miM +drq +drq +drq +drq +drq +nai +nai +drq +nai +nai +drq +drq +drq +nai +ncg +drq +drq +drq +drq +aFD +nai +kPT +drq +drq +nai +drq +drq +drq +drq +drq +miM +miM +"} +(110,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +myZ +myZ +myZ +nZe +qkp +tte +myZ +miM +miM +miM +miM +miM +miM +lWL +cJq +pKX +sNa +qeW +lWL +lWL +jpO +lWL +vUt +sNa +sNa +sNa +lWL +pKX +lWL +lWL +lWL +aHl +lWL +lWL +sNa +sNa +mYK +sNa +sNa +aHl +lWL +aHl +lWL +lWL +lWL +dPQ +nGx +tWG +adP +nGx +nGx +cJq +eZk +eZk +qeW +qeW +qeW +mYK +mYK +mYK +lWL +lWL +lWL +qGN +qGN +fMq +fMq +qGN +viC +qeW +lWL +aHl +eZk +xsI +lWL +lWL +lWL +lWL +hWd +miM +lWL +eZk +lWL +lWL +lWL +lWL +lWL +lWL +sNa +aHl +sNa +lWL +lWL +lWL +dPQ +aHl +miM +drq +drq +drq +drq +drq +nai +nai +drq +nai +drq +drq +drq +drq +mfj +drq +drq +drq +drq +drq +bQa +nai +eUP +nai +drq +nai +nai +drq +drq +drq +drq +miM +miM +"} +(111,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +myZ +myZ +myZ +myZ +jXL +myZ +myZ +miM +miM +miM +miM +miM +miM +aHl +lWL +lWL +sNa +qeW +qeW +lWL +lWL +sNa +sNa +lWL +lWL +cJq +sNa +lWL +miM +miM +miM +miM +miM +miM +lWL +lWL +miM +aHl +lWL +aHl +lWL +mYK +mYK +aHl +aHl +aHl +aHl +nGx +nGx +nGx +lWL +eZk +qeW +qGN +miM +qEs +eZk +lWL +lWL +lWL +lWL +dPQ +mYK +fMq +qGN +xsI +qGN +qGN +qGN +qeW +fMq +lWL +rQP +iTk +fMq +fMq +miM +miM +miM +miM +jbn +sNa +rne +sNa +cJq +lWL +lWL +sNa +sNa +ecl +sNa +lWL +lWL +aHl +sNa +lWL +miM +miM +drq +drq +nai +drq +drq +nai +drq +mKY +nai +drq +drq +drq +drq +drq +drq +drq +drq +drq +nai +nai +nai +kPT +nai +nai +nai +drq +drq +drq +drq +miM +miM +"} +(112,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +myZ +myZ +myZ +myZ +myZ +myZ +myZ +miM +miM +miM +miM +miM +lWL +lWL +lWL +lWL +mYK +lWL +qeW +aHl +lWL +sNa +fMq +lWL +lWL +aHl +sNa +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +vzJ +lWL +aHl +lWL +mYK +mYK +sNa +aHl +miM +qGN +qGN +lWL +iah +qGN +miM +miM +miM +miM +miM +miM +sNa +sNa +lWL +lWL +mYK +mYK +uTk +fMq +qGN +gwZ +fzF +iTk +iTk +iTk +iTk +sNa +qeW +miM +miM +miM +miM +miM +miM +miM +qGN +sNa +aHl +iTk +lWL +sNa +lWL +mYK +lWL +aHl +lWL +lWL +mYK +uim +miM +miM +drq +drq +nai +drq +drq +nai +nai +nai +eUP +drq +drq +drq +drq +drq +drq +drq +drq +drq +nai +nai +nai +drq +nai +nai +nai +rOc +drq +drq +drq +miM +miM +"} +(113,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mYK +lWL +lWL +lWL +sNa +lWL +aHl +mYK +aHl +fMq +qqF +lWL +lWL +lWL +sNa +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mYK +dPQ +mYK +mYK +lWL +lWL +mYK +mYK +miM +miM +miM +qGN +miM +qGN +qGN +miM +miM +miM +miM +miM +miM +miM +lWL +sNa +lWL +lWL +mYK +fMq +fMq +fMq +qGN +lWL +fMq +lWL +fMq +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +qGN +qGN +lWL +iyF +lWL +lWL +lWL +sNa +sNa +lWL +lWL +lWL +dPQ +sNa +miM +miM +miM +drq +nai +drq +drq +nai +drq +drq +drq +drq +drq +drq +drq +drq +nai +drq +drq +rOc +nai +nai +nai +drq +drq +nai +nai +nai +drq +drq +drq +miM +miM +"} +(114,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +miM +miM +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +xsI +cJq +uim +aHl +sNa +sNa +lWL +lWL +lWL +sNa +lWL +lWL +mYK +sNa +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +mYK +lWL +qeW +mYK +mYK +mYK +dPQ +aHl +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +miM +miM +miM +qGN +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +qGN +qGN +qGN +iTk +lWL +lWL +sNa +mYK +qGN +nva +lWL +lWL +lWL +sNa +aHl +miM +miM +drq +nai +nai +drq +tcb +drq +drq +drq +drq +nai +nai +nai +nai +nai +drq +drq +drq +nai +nai +nai +nai +drq +drq +nai +drq +drq +drq +drq +miM +miM +"} +(115,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +aHl +lWL +sNa +qeW +lWL +cJq +lWL +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +aHl +mYK +lWL +aHl +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +frk +sNa +sNa +sNa +qGN +cJq +qGN +iTk +sNa +sNa +eZk +nva +qGN +nva +nva +mYK +lWL +mYK +mYK +aHl +miM +drq +drq +nai +drq +nai +nai +drq +drq +drq +nai +drq +drq +nai +drq +drq +drq +drq +drq +nai +nai +aFD +nai +nai +nai +drq +drq +drq +drq +miM +miM +"} +(116,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +mYK +lWL +jbn +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +mYK +sNa +sNa +mYK +uim +sNa +aHl +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +fMq +enG +sNa +sNa +qGN +qGN +qGN +qGN +sNa +eZk +sNa +qGN +nva +nva +lWL +sNa +cJq +lWL +mYK +miM +miM +drq +nai +nai +nai +nai +nai +nai +nai +nai +nai +nai +nai +drq +drq +nai +nai +nai +nai +nai +nai +nai +nai +drq +drq +drq +drq +drq +miM +miM +"} +(117,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +miM +gOJ +gOJ +fQG +aoh +aoh +fQG +fQG +fQG +fQG +fQG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +qGN +qGN +cCl +lWL +lWL +twn +uFL +qGN +lWL +lWL +lWL +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +jbn +lWL +eZk +lWL +sNa +esq +iTk +lWL +eZk +eZk +eZk +eZk +sNa +sNa +sNa +sNa +sNa +sNa +mYK +aHl +miM +drq +drq +drq +drq +drq +drq +drq +drq +nai +nai +drq +drq +nai +drq +drq +drq +drq +drq +nai +nai +nai +drq +drq +drq +drq +drq +drq +miM +miM +"} +(118,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +miM +gpG +gpG +xDV +gOJ +gOJ +fQG +fQG +fQG +aoh +aoh +bka +fQG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aHl +nGx +qGN +lWL +aHl +qGN +lWL +qGN +cJq +lWL +iTk +iTk +iTk +jbn +miM +miM +miM +aHl +vwT +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +qGN +sNa +sNa +iTk +iTk +eZk +lWL +xsI +xsI +sNa +jbn +lWL +lWL +sNa +lWL +lWL +sNa +jYd +miM +miM +miM +drq +drq +nai +nai +nai +nai +nai +drq +drq +drq +drq +drq +drq +drq +nai +nai +nai +drq +drq +drq +drq +drq +drq +drq +drq +miM +miM +"} +(119,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +dBV +dBV +dBV +dBV +dBV +dBV +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +gOJ +gOJ +fQG +fQG +aoh +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aHl +miM +lWL +cVD +nGx +uGp +lWL +lWL +lWL +rqY +lWL +lWL +iyF +lWL +lWL +cJq +lWL +lWL +qGN +tQB +iTk +sNa +sNa +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +qGN +lNN +lWL +iTk +qGN +eZk +uMl +lWL +lWL +xsI +lWL +lWL +lWL +mYK +iim +lWL +cJq +aHl +mYK +miM +miM +miM +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +drq +miM +nai +miM +drq +drq +drq +drq +drq +drq +drq +drq +miM +miM +"} +(120,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +bMV +dBV +utY +cPg +gYj +dBV +pWf +gWu +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +fmQ +gpG +gpG +fmQ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +miM +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +oLd +gOJ +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nGx +fMq +lWL +aHl +nGx +nGx +nGx +lWL +lWL +rqY +lWL +lWL +sNa +sNa +sNa +lWL +sNa +sNa +sNa +lWL +cJq +iTk +iTk +iTk +jbn +lWL +lWL +aHl +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +eZk +lWL +eZk +lWL +qGN +qGN +xsI +qeW +lWL +sNa +lWL +lWL +lWL +nva +lWL +lWL +lWL +aHl +mYK +aHl +miM +miM +miM +drq +drq +drq +drq +drq +drq +miM +miM +miM +miM +miM +miM +miM +rXw +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(121,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gWu +thJ +aFo +eQU +cPg +mtm +kLj +gWu +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +ufR +miM +miM +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +fQG +fQG +miM +miM +miM +miM +miM +miM +miM +kvL +kvL +kvL +kvL +nGx +nGx +fMq +adP +lWL +nGx +nGx +nGx +sNa +sNa +who +knx +sNa +sNa +who +who +nKe +sNa +nGx +bLF +lWL +sNa +sNa +lWL +iTk +cJq +sNa +sNa +sNa +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +mYK +fMq +eZk +qGN +miM +miM +miM +miM +fMq +lWL +lWL +lWL +xsI +sNa +qGN +qeW +xsI +sNa +qeW +qGN +lWL +lWL +lWL +mYK +lWL +lWL +gpq +aHl +xsI +miM +miM +miM +miM +miM +miM +tBs +miM +tBs +miM +miM +miM +miM +miM +dxS +sbX +dxS +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(122,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +gWu +gWu +jKc +jte +bFi +pMB +gWu +vvO +xSA +miM +rSv +rSv +miM +miM +miM +miM +miM +miM +ufR +ufR +ufR +miM +miM +fmQ +miM +miM +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +aLd +rYB +aUt +kSX +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +miM +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +miM +miM +miM +miM +kvL +kvL +kvL +kvL +miM +miM +miM +lWL +lWL +lWL +mYK +fMq +fMq +nGx +nGx +sNa +who +who +iTk +lWL +who +who +sNa +sNa +upc +bLF +nGx +nGx +lWL +sNa +sNa +aHl +lWL +lWL +sNa +aHl +gPq +miM +miM +miM +miM +miM +miM +lWL +aHl +eZk +eZk +lWL +fMq +lWL +lWL +lWL +aHl +blr +miM +miM +miM +iTk +fzF +qeW +sNa +lWL +jbn +sNa +lWL +jbn +eZk +qeW +qGN +qGN +lWL +nva +sNa +lWL +lWL +cJq +lWL +mYK +owK +miM +miM +pYP +miM +dvN +dgk +tBs +dgk +miM +miM +miM +miM +mlv +gtf +mlv +rBF +mlv +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(123,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +dBV +dBV +iMw +tGN +nOY +cPg +dBV +dBV +dBV +dBV +dBV +bMV +miM +miM +miM +ufR +ufR +ufR +ufR +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gOJ +ujY +nhk +nhk +oBh +oUq +kSX +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gOJ +miM +miM +kvL +kvL +kvL +miM +miM +miM +miM +miM +nGx +lWL +dPQ +lWL +fMq +fMq +nGx +nGx +nGx +lWL +who +who +iTk +aHl +lWL +nGx +bXc +nGx +nGx +uqY +nGx +bLF +nGx +lWL +lWL +sNa +lWL +jbn +lWL +lWL +fMq +miM +miM +miM +miM +miM +jbn +lWL +lWL +iTk +fzF +fMq +qGN +qGN +iTk +fzF +lWL +lWL +lWL +lWL +iTk +iTk +lWL +qeW +lWL +xsI +xsI +lWL +aHl +eZk +eZk +qGN +qGN +qGN +fMq +lWL +qGN +sNa +lWL +lWL +lWL +lWL +qDq +xFL +ljY +owK +rks +oOq +dgk +dgk +oOq +dvN +owK +owK +xFL +mFh +owK +rBF +rBF +mlv +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(124,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +dBV +dBV +sFi +sFi +lid +dBV +soo +dBV +dBV +sFi +dBV +ufR +ufR +ufR +ufR +ufR +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gOJ +fQG +fQG +ujY +ujY +fQG +nhk +oUq +kSX +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +miM +kvL +kvL +miM +miM +miM +miM +miM +miM +nGx +nGx +lWL +lWL +lWL +mYK +nGx +nGx +nGx +lWL +lWL +qfd +qfd +lWL +lWL +nGx +nGx +uqY +uqY +uqY +tWG +nGx +nGx +lWL +sNa +lWL +bLF +nGx +lWL +iTk +cJq +lWL +eZk +kUv +eZk +qGN +udS +iTk +lNN +lWL +qGN +iTk +iTk +iyF +iTk +iTk +lWL +lWL +iTk +lWL +cJq +lWL +aHl +lWL +lWL +lWL +qGN +qGN +mYK +lWL +xsI +lWL +qGN +ydD +qGN +qeW +qeW +lWL +qGN +sNa +sNa +lWL +cJq +aNk +ljY +jeC +sqc +oOq +dsE +xCf +dvN +xCf +dvN +owK +qTY +mlv +owK +rpZ +rBF +wJq +mlv +sIC +miM +miM +miM +miM +miM +miM +miM +miM +"} +(125,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +onB +kvL +kvL +kvL +rOc +hCe +ufR +onB +ufR +ufR +ufR +ufR +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gOJ +ujY +nhk +fQG +nhk +aoh +aoh +oBh +osc +tpH +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +miM +miM +miM +miM +miM +miM +gOJ +nGx +nGx +nGx +aHl +fMq +nGx +nGx +nGx +bXc +lWL +nGx +nGx +lWL +iTk +lWL +nGx +nGx +nGx +nGx +tWG +bLF +nGx +fKz +lWL +sNa +nGx +nGx +lWL +lWL +lWL +iyF +lWL +eZk +sNa +lNN +iTk +lWL +ctB +sNa +sNa +jbn +lWL +ctB +sNa +lWL +ycX +lWL +sNa +sNa +sNa +lWL +mYK +lWL +lWL +lWL +sOV +xsI +qGN +jbn +xsI +eZk +qeW +lWL +qGN +qGN +lWL +aHl +lWL +qGN +hfz +qGN +sNa +lWL +tfz +ljY +mlv +dvN +owK +ryS +pYP +ryS +dvN +mlv +mlv +mlv +mlv +mlv +owK +rBF +owK +ljY +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(126,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +ufR +ufR +ufR +kvL +kvL +kvL +kvL +ufR +kvL +ufR +nai +nai +rOc +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +xDV +gpG +gpG +gOJ +ujY +jCs +bcE +cll +gTF +fQG +nhk +oBh +hgI +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +oLd +gOJ +gOJ +miM +gOJ +gOJ +oLd +gOJ +gOJ +anu +nGx +nGx +nGx +nGx +nGx +nGx +nGx +nGx +lWL +lWL +nGx +lWL +iTk +lWL +lWL +uGb +nGx +aHl +bLF +nKe +who +fKz +lWL +lWL +nGx +bLF +lWL +lWL +lWL +iTk +iTk +lWL +iTk +iTk +qGN +lWL +ctB +ctB +sNa +qGN +qGN +ctB +sNa +sNa +qGN +qGN +qGN +lWL +lWL +iTk +aHl +lWL +qeW +lWL +xsI +qGN +eZk +xsI +xsI +qeW +qeW +qGN +qGN +qGN +sNa +lWL +qGN +lWL +lWL +lWL +sNa +lWL +owK +owK +dvN +ryS +guZ +rBF +owK +dvN +dvN +mlv +oXX +owK +owK +oXX +mlv +ryS +mlv +mlv +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(127,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +onB +ufR +ufR +kvL +rOc +kvL +kvL +kvL +ufR +nai +nai +aFD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gOJ +fQG +nhk +hDZ +tTx +wuN +mzI +fQG +aoh +osc +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +gOJ +gOJ +tTi +gOJ +miM +miM +jhj +oBh +gus +nGx +nGx +nGx +nGx +qfd +sNa +sNa +lWL +who +lWL +nGx +nGx +nGx +bXc +sNa +hWY +sNa +wld +bXc +hWY +sNa +nGx +lWL +hWY +lWL +nGx +lWL +lWL +lWL +axq +eZk +sNa +sNa +sNa +lWL +lWL +aHl +ctB +sNa +ctB +qGN +qGN +qGN +sNa +sNa +lWL +qGN +qGN +lWL +iTk +iTk +lWL +qeW +eZk +qGN +lWL +lWL +lWL +lWL +lWL +lWL +lWL +lWL +lWL +hJO +qeW +qeW +lWL +sNa +eve +lWL +lWL +owK +owK +dvN +mlv +pYP +spN +mZT +dvN +dzn +ryS +owK +owK +ryS +owK +mlv +mlv +mlv +mlv +ryS +dgk +miM +miM +miM +miM +miM +miM +miM +"} +(128,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +ufR +kvL +kvL +kvL +ufR +nai +kvL +ufR +ufR +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +fQG +mCb +sNM +gVy +jCs +jCs +jEV +jCs +hPE +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +gOJ +gOJ +gpG +gOJ +oLd +xeZ +miM +miM +miM +oBh +bNX +gus +nGx +nGx +nGx +uGb +nGx +nGx +nGx +nGx +lWL +who +lWL +lWL +lWL +nGx +nGx +kmw +lWL +who +lWL +bLF +aHl +nGx +gOJ +fQG +kEE +chq +tpH +fQG +nhk +aoh +aoh +jhj +dVh +aks +aks +fQG +fQG +oBh +fQG +veX +lWL +lWL +lWL +lWL +jbn +lWL +lWL +lWL +lWL +lWL +lWL +qGN +lWL +qeW +qeW +lWL +eZk +eky +qGN +qGN +lWL +lWL +oZh +lWL +oZh +lWL +lWL +lWL +oZh +rqY +oZh +lWL +owK +oOq +dvN +dvN +dvN +oOq +owK +owK +sIC +mlv +mlv +mlv +owK +mlv +mlv +mFh +xFL +wJq +dvN +dgk +ohw +tNq +miM +miM +miM +miM +miM +"} +(129,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kvL +kvL +kvL +nai +nai +mOh +nai +nai +mOh +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +xDV +gpG +gpG +gpG +gOJ +nhk +nhk +feB +hDZ +neX +qim +neX +fQG +fQG +nhk +gpG +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +gpG +gOJ +gpG +gOJ +gpG +gpG +gpG +oBh +miM +miM +oBh +gOJ +nGx +nGx +gus +nGx +nGx +lWL +lWL +lWL +nGx +lWL +qfd +sNa +sNa +iyF +qfd +nGx +nGx +nGx +lWL +sNa +nGx +sNa +lWL +tpH +fQG +fQG +fQG +gOJ +fQG +fQG +fQG +oBh +fQG +oBh +dVh +dVh +oBh +oBh +iaj +oBh +fQG +lWL +lWL +mYK +lWL +qGN +lWL +fMq +lWL +fMq +lWL +lWL +qGN +lWL +lWL +lWL +qGN +qGN +qGN +lWL +lWL +iTk +iTk +lWL +lWL +aHl +lWL +sNa +lWL +qeW +lWL +lWL +kqc +dvN +dsE +dvN +dvN +owK +xFL +owK +mlv +mlv +mlv +owK +mlv +mlv +mlv +mlv +owK +mlv +owK +dvN +dgk +gfa +tNq +miM +miM +miM +miM +miM +"} +(130,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +nai +nai +nai +nai +rOc +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +ujY +jCs +jCs +cll +pRZ +jCs +aoh +gOJ +fQG +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +gOJ +gpG +gOJ +gOJ +tpH +oBh +oBh +oBh +gOJ +gus +gus +nGx +nGx +lWL +qfd +sNa +sNa +lWL +nGx +nGx +lWL +sNa +lWL +nGx +lWL +sNa +nGx +nGx +nGx +nGx +nGx +nGx +tpH +gOJ +fQG +gOJ +fQG +fQG +fQG +oBh +oBh +jhj +qpu +oBh +oBh +oBh +qpu +oBh +eKq +fQG +lWL +lWL +lWL +rKf +qGN +lWL +lWL +fMq +lWL +ePR +qGN +lWL +fMq +oZh +lWL +lWL +lWL +lWL +sNa +sNa +sNa +lWL +mYK +qGN +qGN +hfz +sNa +bLF +qeW +qeW +sNa +nGx +dvN +dvN +dvN +owK +owK +owK +mlv +mlv +owK +owK +mlv +mlv +mlv +mlv +jsY +owK +dvN +dvN +dgk +puK +dgk +gfa +ohw +tNq +miM +miM +miM +"} +(131,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aFD +miM +cCb +miM +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +fQG +ujY +vVD +dVh +aoh +jCs +jCs +neX +jCs +gOJ +gpG +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gpG +gOJ +gpG +gOJ +gOJ +xeZ +oBh +qTC +oBh +oBh +gus +nGx +nGx +nGx +qfd +sNa +nGx +sNa +sNa +lWL +nGx +nGx +nGx +lWL +sNa +bLF +nGx +nGx +bLF +nGx +uqY +uqY +nGx +gOJ +gOJ +gOJ +uPH +gOJ +fQG +dLM +mxx +vBz +vBz +vBz +vBz +vBz +mxx +fKP +fQG +dVh +fQG +fQG +aoh +aoh +lWL +lWL +lWL +lWL +aHl +iTk +fBg +qeW +fMq +lWL +lWL +lWL +lWL +lWL +lWL +qGN +qGN +lWL +qGN +qGN +qGN +lWL +lWL +fKz +fKz +nGx +nGx +nGx +nGx +owK +xFL +owK +mFh +owK +mlv +mlv +owK +ljY +mFh +owK +jYl +owK +owK +jYl +oOq +dvN +jYl +jYl +dgk +dgk +ohw +tNq +miM +miM +miM +miM +"} +(132,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +uOZ +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +fQG +aoh +mzI +jCs +fQG +nhk +fQG +gOJ +dVh +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +oBh +nQT +oBh +oBh +gus +nGx +nGx +gus +nGx +nGx +bXc +nGx +nGx +bLF +nGx +lWL +bLF +nGx +nGx +who +who +nGx +nGx +nGx +nGx +uqY +uqY +gpG +gpG +gpG +gpG +frH +gOJ +gOJ +gOJ +gOJ +tpH +gOJ +gOJ +chq +gOJ +dLM +neX +neX +dVh +dVh +dVh +dVh +fMq +lWL +lWL +fMq +uKT +pWK +iTk +iTk +iTk +fMq +qGN +lWL +lWL +lWL +qGN +qGN +qeW +qeW +lWL +lWL +lWL +nGx +nGx +nGx +nGx +nGx +nGx +nGx +qeW +dRW +owK +ryS +owK +owK +ljY +owK +owK +xFL +owK +owK +jYl +owK +dvN +dvN +dvN +oOq +xQt +dgk +usY +gfa +tNq +miM +miM +miM +miM +miM +"} +(133,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +bhA +nhk +ujY +fQG +jCs +fQG +ujY +gOJ +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +gOJ +gpG +gpG +gOJ +gpG +gOJ +gOJ +gOJ +gOJ +heN +gOJ +nGx +nGx +gus +gus +qfd +nGx +uqY +nGx +nGx +nGx +nGx +nGx +nGx +lWL +uGb +nGx +bLF +lWL +who +who +qfd +uqY +uqY +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +gOJ +nCT +fQG +fQG +fQG +fQG +fQG +fQG +fQG +nhk +aHl +tho +ibh +fBg +iTk +lWL +oZt +lWL +lWL +qGN +qeW +eZk +hoX +nGx +nGx +fKz +nGx +nGx +nGx +nGx +lWL +lWL +bLF +lWL +lWL +owK +ryS +ryS +xFL +owK +owK +owK +owK +jYl +jYl +owK +mFh +dvN +xCf +xFL +mFh +miM +dvN +fdG +ohw +dgk +miM +miM +miM +miM +miM +miM +"} +(134,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +dLM +aBV +oBh +fQG +nhk +fQG +gOJ +gOJ +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +gpG +gOJ +gOJ +gpG +gpG +gOJ +gOJ +oBh +oBh +oBh +gus +qIV +gus +gus +uGb +nGx +nGx +nGx +uqY +uqY +uqY +nGx +nGx +lWL +sNa +sNa +sNa +lWL +nGx +who +lWL +uqY +uqY +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +bon +tpH +gOJ +gOJ +gOJ +gOJ +neX +qTn +neX +fQG +fQG +fQG +ujY +qeW +lWL +pWK +tho +pWK +fMq +lWL +fMq +lWL +lWL +qeW +hWY +tWG +kJf +lWL +nGx +nGx +nGx +nGx +lWL +mYK +hux +hux +bHE +hux +jYl +owK +owK +owK +ful +ljY +owK +jYl +jYl +owK +ljY +owK +dvN +mFh +mFh +miM +miM +miM +dvN +miM +miM +miM +miM +miM +miM +miM +miM +"} +(135,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +vbZ +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +jwe +aBV +oBh +ryQ +hPE +gOJ +gOJ +gOJ +oBh +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +gOJ +gpG +xeZ +gOJ +gOJ +oBh +oBh +oBh +oBh +gus +gus +nGx +nGx +nGx +lWL +nGx +bLF +uqY +uqY +nGx +nGx +lWL +lWL +lWL +nGx +lsa +nGx +uqY +uqY +bLF +nGx +uqY +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +gpG +gpG +gpG +gOJ +gOJ +dLM +vBz +fKP +oBh +oBh +fQG +mYK +aHl +aHl +uKT +fMq +lWL +lWL +aHl +lWL +lWL +lWL +wcW +hWY +oSm +nGx +bLF +nGx +nGx +lWL +fMq +lWL +hux +lWL +lWL +hux +owK +ljY +mlv +mlv +owK +owK +owK +jYl +owK +owK +owK +dsE +dvN +jYl +miM +miM +miM +dvN +fdG +miM +miM +miM +miM +miM +miM +miM +miM +"} +(136,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +miM +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gqc +vBz +hPE +gpG +gpG +gpG +gOJ +gOJ +jhj +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +xeZ +tpH +gOJ +gOJ +tpH +gOJ +nGx +nGx +nGx +qfd +sNa +nGx +nGx +nGx +uqY +nGx +nGx +nGx +nGx +bLF +nGx +lWL +lWL +nGx +uqY +uqY +uqY +uqY +uqY +gpG +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +dLM +rIj +oBh +oBh +lWL +lWL +lWL +aHl +fMq +lWL +lWL +mYK +lWL +lWL +lWL +lWL +lWL +nGx +nGx +nGx +lWL +lWL +lWL +xsI +lWL +qGN +qGN +qGN +qGN +mFh +owK +mlv +mlv +mFh +ryS +owK +xFL +owK +dvN +dvN +dvN +dvN +oOq +dsE +dgk +dgk +xCf +ohw +tNq +miM +miM +miM +miM +miM +miM +miM +"} +(137,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +unA +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +aoh +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gpG +gOJ +gpG +gOJ +gOJ +oBh +oBh +oBh +oBh +nGx +nGx +nGx +nGx +lWL +nGx +uGb +nGx +nGx +nGx +nGx +nGx +lWL +lWL +lWL +qfd +lWL +nGx +uqY +nGx +uqY +uqY +lsa +gOJ +gOJ +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +dLM +aBV +xuH +oBh +ujY +fQG +fQG +nhk +fQG +aHl +lWL +lWL +aHl +lWL +lWL +nGx +nGx +nGx +nGx +mYK +aHl +hux +xsI +lWL +lWL +mYK +lWL +lWL +owK +xFL +mlv +mlv +owK +owK +owK +owK +dsE +dvN +dvN +dgk +dgk +usY +dgk +dgk +dgk +dvN +gfa +gfa +tNq +miM +miM +miM +miM +miM +miM +"} +(138,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +otS +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +oBh +oBh +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +gOJ +gOJ +gOJ +gOJ +gOJ +tpH +gOJ +oBh +gus +syB +nGx +nGx +nGx +nGx +lWL +sNa +nGx +lWL +bLF +lWL +who +who +iTk +qfd +qfd +nGx +nGx +nGx +uqY +nGx +uGb +gOJ +fQG +nhk +fQG +gOJ +gOJ +gOJ +gOJ +gOJ +gOJ +tpH +gOJ +tpH +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +tpH +dLM +aBV +oBh +oBh +oBh +ujY +fQG +fQG +lWL +lWL +mYK +lWL +lWL +lWL +nGx +nGx +nGx +lWL +lWL +hux +lWL +lWL +lWL +lWL +lWL +qeW +lWL +xFL +owK +owK +mlv +owK +owK +dvN +dvN +dvN +dgk +dgk +dgk +dgk +dgk +dgk +dvN +tDH +fdG +dgk +gfa +tNq +miM +miM +miM +miM +miM +miM +"} +(139,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mSj +heD +xmQ +miM +miM +miM +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +oBh +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +gpG +gpG +gpG +gOJ +tpH +wQM +oBh +gOJ +gOJ +gus +gus +sNa +nGx +lWL +who +who +sNa +sNa +sNa +nGx +lWL +who +who +lWL +lWL +nGx +nGx +ast +who +who +nGx +sNa +fQG +fQG +fQG +fQG +fQG +ujY +dVh +fQG +fQG +dVh +chq +dVh +tpH +heN +chq +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +dLM +qJo +oBh +oBh +oBh +fQG +fQG +mYK +lWL +lWL +lWL +lWL +nGx +nGx +nGx +lWL +qeW +mYK +hux +lWL +lWL +lWL +qeW +lWL +lWL +lWL +owK +owK +ryS +owK +owK +dvN +dvN +dgk +dgk +dgk +dvN +dvN +tDH +dgk +dgk +dvN +dvN +xQC +gfa +tNq +miM +miM +miM +miM +miM +miM +miM +"} +(140,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +apz +kWD +lPf +nai +aFD +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +gpG +gpG +gOJ +gOJ +gOJ +gOJ +gOJ +oBh +jhj +oBh +gOJ +nGx +nGx +nGx +nGx +nGx +lWL +nGx +nGx +nGx +sNa +lWL +who +who +lWL +lWL +nGx +bLF +lWL +lWL +lWL +nGx +lWL +sNa +fQG +nhk +fQG +fQG +fQG +fQG +fQG +fQG +nhk +ujY +gOJ +heN +gOJ +dVh +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +jwe +eBR +aBV +qpu +fQG +nhk +fQG +fQG +oBh +fQG +gOJ +gOJ +nGx +mYK +fMq +qeW +lWL +aHl +jpO +lWL +lWL +lWL +mYK +fQG +jCs +jYl +owK +ryS +ljY +dvN +dvN +dgk +dgk +dvN +oOq +dvN +dgk +dgk +jYl +mFh +wJq +mlv +ljY +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(141,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +uxL +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gpG +gOJ +gOJ +gOJ +xeZ +oBh +oBh +oBh +oBh +nGx +nGx +nGx +nGx +nGx +nGx +nGx +lWL +sNa +nGx +nGx +nGx +nGx +nGx +nGx +lWL +lWL +sNa +sNa +nGx +jlV +lWL +sNa +fQG +fQG +fQG +ujY +ujY +ujY +fQG +ujY +fQG +fQG +qTn +gOJ +chq +dVh +qTn +dVh +gOJ +gOJ +gpG +gpG +frH +gpG +gpG +gpG +gpG +gOJ +ouu +dLM +vBz +aBV +ujY +fQG +oBh +pJH +hPE +gOJ +gOJ +qGN +qGN +lWL +hux +aHl +lWL +qGN +lWL +lWL +lWL +lWL +fQG +fQG +owK +ljY +owK +dvN +dvN +dgk +dgk +dvN +dvN +dsE +dgk +dgk +jYl +jYl +mlv +mlv +mFh +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(142,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +bsO +xyC +uxL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gpG +gpG +gOJ +gOJ +tpH +oBh +ffP +nGx +nGx +nGx +nGx +nGx +nGx +bLF +nGx +sNa +nGx +nGx +lWL +sNa +sNa +lWL +iTk +lWL +nGx +nGx +lWL +lWL +lWL +lWL +fQG +neX +fQG +fQG +fQG +fQG +uoQ +fQG +fQG +fQG +ujY +fQG +gOJ +chq +dVh +dVh +fQG +gOJ +gOJ +gpG +gOJ +gOJ +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +dLM +fQG +oBh +vpw +hPE +gOJ +gOJ +gOJ +qGN +mYK +hux +hux +lWL +qGN +qGN +qGN +lWL +lWL +xsI +fQG +aKg +owK +owK +dvN +dsE +dgk +dgk +dsE +dvN +dgk +dgk +dgk +owK +mub +mlv +wJq +tfz +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(143,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xyC +kWD +xhO +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +jhj +fQG +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +aLd +voN +kSX +gOJ +gOJ +nGx +nGx +uqY +uqY +nGx +nGx +nGx +nGx +lWL +nGx +nGx +nGx +lWL +lWL +nGx +nGx +nGx +nGx +lWL +aHl +lWL +lWL +lWL +ujY +aks +fQG +fQG +nhk +aoh +aKg +fQG +nhk +fQG +fQG +qTn +qTn +gOJ +fQG +neX +fQG +fQG +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +fQG +ujY +wIY +gOJ +mtz +gOJ +dVh +dVh +hux +lWL +lWL +lWL +fQG +fQG +fQG +neX +neX +fQG +dVh +fQG +owK +ljY +dvN +dgk +dgk +oOq +dvN +dgk +dgk +xGI +oOq +owK +xFL +jYl +mFh +mub +owK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(144,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xyC +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +oBh +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +gpG +gOJ +gpG +gOJ +gOJ +xeZ +bhA +jhj +osc +gOJ +gOJ +nGx +uqY +uqY +nGx +nGx +nGx +bXc +nGx +nGx +nGx +sNa +bLF +nGx +nGx +lWL +lWL +lWL +lWL +lWL +lWL +lWL +lWL +qeW +sNa +lhy +aHl +lWL +lWL +lWL +sNa +sNa +lWL +lWL +lWL +lWL +mYK +nGx +lWL +jCs +fQG +nhk +fQG +dVh +gOJ +gOJ +gpG +gpG +gOJ +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +mtz +rcw +dVh +tpH +dVh +aKg +hux +lWL +xsI +lWL +fQG +fQG +fQG +fQG +dVh +dVh +dVh +qTn +dvN +dvN +dgk +dgk +dvN +dvN +dgk +dgk +jYl +mFh +dvN +dvN +dvN +xFL +jYl +mlv +jYl +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(145,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +wIo +miM +miM +fwy +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +jhj +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gpG +gOJ +ppD +oBh +osc +gOJ +gOJ +uqY +uqY +uqY +nGx +nGx +nGx +uqY +nGx +lWL +sNa +sNa +nGx +aHl +jlV +lWL +lWL +lWL +lWL +qGN +fMq +qGN +lWL +sNa +sNa +nva +lWL +lWL +lWL +lWL +mYK +sNa +vUt +aHl +lWL +aHl +lWL +bLF +lWL +jCs +jCs +aoh +aoh +dVh +dVh +gOJ +gOJ +gpG +gOJ +gpG +gpG +gpG +gpG +ouu +tpH +gOJ +gOJ +dVh +mtz +fQG +fQG +aKg +lWL +lWL +lWL +lWL +fQG +aKg +fQG +nhk +fQG +fQG +gOJ +gOJ +dvN +dgk +dgk +dgk +dgk +dgk +dgk +mFh +jYl +jYl +dvN +oOq +dgk +oOq +jYl +djW +mFh +gfa +tNq +miM +miM +miM +miM +miM +miM +miM +miM +"} +(146,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +pBQ +kWD +kWD +kWD +uxL +kWD +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +oBh +oBh +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +gOJ +aLd +ruK +nyY +wIY +gOJ +gpG +uqY +uqY +uqY +nGx +nGx +uqY +uqY +nGx +lWL +nGx +nGx +lWL +lWL +hux +hux +lWL +iTk +lWL +qGN +lWL +mYK +qGN +qGN +lWL +qGN +fMq +lWL +qeW +qeW +lWL +aHl +sNa +sNa +lWL +lWL +nGx +nGx +qeW +fQG +jCs +dVh +fQG +fQG +dVh +nhk +gOJ +gOJ +bon +gOJ +gpG +gpG +gpG +gOJ +gOJ +gpG +gpG +gOJ +gOJ +qTn +fQG +ujY +fQG +jCs +jCs +jCs +aKg +fQG +fQG +fQG +gOJ +gOJ +gOJ +gpG +dgk +dgk +dsE +dgk +dgk +dgk +dgk +dgk +dgk +dgk +dgk +dvN +dgk +dgk +jVn +tDH +dsE +dgk +gfa +gfa +tNq +miM +miM +miM +miM +miM +miM +"} +(147,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +miM +miM +miM +kWD +tTG +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gpG +gjF +gpG +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +tpH +gOJ +ppD +oBh +aKg +gOJ +gpG +gpG +nGx +nGx +nGx +tWG +nGx +nGx +uqY +nGx +nGx +lWL +lWL +iKa +hux +hux +xsI +lWL +iTk +iTk +qGN +qGN +qGN +qGN +qGN +qGN +qGN +lWL +qeW +qeW +lWL +aHl +lWL +aHl +aHl +qGN +qGN +nGx +nGx +qGN +qGN +hux +fQG +fQG +jCs +fQG +fQG +fQG +gOJ +gOJ +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +gOJ +dVh +fQG +fQG +fQG +fQG +fQG +fQG +gOJ +gOJ +frH +gOJ +gpG +gpG +gpG +aHq +wOm +wOm +kaQ +wOm +cPB +dgk +dgk +dgk +dgk +dgk +dgk +dgk +dgk +dvN +tDH +dvN +usY +gfa +tNq +miM +miM +miM +miM +miM +miM +miM +"} +(148,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nMp +kWD +kWD +miM +vRK +miM +kWD +kWD +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gpG +oBh +gpG +gOJ +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +gOJ +gOJ +gpG +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +pJn +gOJ +tpH +bhA +oBh +aKg +gOJ +gOJ +gOJ +nGx +bLF +lWL +lWL +lWL +nGx +nGx +nGx +nGx +lWL +lWL +hux +hux +qGN +lWL +qGN +lWL +iTk +lWL +qGN +qGN +lWL +qGN +qGN +aHl +mYK +lWL +lWL +lWL +lWL +lWL +lWL +qeW +qGN +hux +lWL +fKz +lWL +lWL +lWL +fQG +fQG +fQG +fQG +aoh +dVh +fQG +gOJ +gOJ +gpG +gOJ +gOJ +gOJ +gpG +gpG +gpG +frH +gOJ +gOJ +gOJ +gOJ +gOJ +dVh +dVh +gOJ +gOJ +gOJ +gOJ +gpG +gpG +gpG +aLd +mqx +asV +fLn +eVr +fLn +sTK +bJi +wOm +tWg +kaQ +lxn +dvN +dvN +owK +owK +dvN +dvN +dgk +dgk +dgk +ohw +miM +miM +miM +miM +miM +miM +miM +"} +(149,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +kWD +mSj +fEk +xAY +kWD +kWD +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gpG +gpG +jCs +chq +gOJ +gpG +gpG +gpG +gpG +gOJ +aLd +kSX +gOJ +aLd +kSX +gOJ +gOJ +gpG +gpG +gpG +gpG +gOJ +tpH +cVt +rYB +sXU +rYB +mqx +ruK +oBh +aoh +gOJ +gOJ +gOJ +nGx +lWL +lWL +qGN +lWL +nGx +nGx +lWL +lWL +qGN +lWL +hux +eZk +eZk +eZk +hux +iyF +lWL +qGN +qGN +hux +hux +aHl +eZk +lWL +hux +hux +eZk +lWL +mYK +xsI +kqc +lWL +qGN +qGN +fMq +nGx +lWL +lWL +lWL +rwz +gOJ +ouu +fQG +aoh +dVh +fQG +fQG +gOJ +gOJ +gOJ +gOJ +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +aLd +ruK +oBh +fLn +fLn +fLn +owK +fLn +fLn +fLn +fLn +fLn +owK +owK +owK +owK +jYl +owK +dsE +usY +dvN +gfa +tNq +miM +miM +miM +miM +miM +miM +miM +"} +(150,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +miM +xyC +mAP +tTG +miM +kWD +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +gOJ +fQG +fQG +gOJ +gOJ +gOJ +gpG +gpG +gOJ +bhA +kgY +aLd +ruK +oUq +mqx +mqx +kSX +gOJ +gOJ +aLd +xHs +sXU +ruK +oBh +oBh +oBh +oBh +oBh +aKg +aoh +gOJ +tpH +gOJ +lWL +lWL +lWL +qGN +lWL +lWL +lWL +qGN +lWL +lWL +hux +hux +xsI +hux +hux +mYK +iTk +lWL +lWL +qGN +eZk +hux +hux +eZk +lWL +hux +mYK +eZk +lWL +lWL +fMq +qGN +qGN +lWL +qGN +eZk +nGx +nGx +lWL +cIA +gOJ +nhk +gOJ +fQG +fQG +dVh +neX +ujY +fQG +fQG +ujY +fQG +gOJ +gOJ +frH +gOJ +gOJ +gOJ +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gpG +gOJ +aLd +rYB +aUt +ruK +qpu +oBh +fLn +fLn +owK +owK +jYl +owK +mFh +vVX +owK +owK +mlv +owK +ljY +cIV +mFh +dvN +dvN +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(151,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +fwy +kWD +kWD +xyC +mng +xyC +kWD +hCM +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +xDV +gpG +gpG +gpG +gpG +gpG +gpG +chq +gOJ +dVh +fQG +jCs +dVh +fQG +gOJ +gOJ +aLd +mqx +ruK +osc +tqm +oBh +oBh +qpu +oBh +oUq +mqx +mqx +mSD +oBh +oBh +oBh +aoh +aKg +jCs +lkE +dVh +neX +jCs +neX +neX +fQG +lWL +lWL +hux +hux +lWL +qGN +qGN +qGN +lWL +hux +hux +hux +hux +qGN +qeW +lWL +iTk +iTk +fMq +qGN +eZk +eZk +hux +eZk +lWL +hux +lWL +eZk +mYK +mYK +lWL +lWL +xsI +qGN +qGN +qGN +qeW +nGx +fMq +uGb +gOJ +gOJ +rwz +fQG +dVh +dVh +fQG +dVh +dVh +dVh +dVh +dVh +fQG +fQG +fQG +gOJ +gOJ +gOJ +tpH +gOJ +gOJ +gOJ +gOJ +gOJ +gOJ +gOJ +fQG +dVh +dVh +oBh +oBh +oBh +fQG +jYl +jYl +owK +owK +jYl +jYl +owK +mFh +owK +mlv +mlv +owK +jYl +owK +mFh +miM +dvN +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(152,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +tTG +orj +orj +orj +orj +orj +orj +kWD +mng +miM +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +xDV +gpG +gpG +gOJ +gOJ +fQG +dVh +fQG +qTn +fQG +fQG +jCs +fQG +aLd +ruK +oBh +nyY +hPE +tqm +oBh +oBh +oBh +fQG +qpu +oBh +oBh +oBh +fQG +aoh +bka +neX +dVh +neX +neX +neX +jCs +neX +neX +aKg +fQG +qGN +lWL +lWL +hux +hux +lWL +lWL +lWL +qGN +hux +xsI +hux +mYK +lWL +qGN +lWL +iTk +lWL +qGN +lWL +lWL +eZk +hux +eZk +eZk +lWL +hux +hux +lWL +mYK +mYK +qeW +fMq +qGN +lWL +qGN +lWL +nGx +hux +lWL +fQG +fQG +gOJ +ouu +fQG +fQG +dVh +dVh +mYK +qeW +lWL +lWL +mYK +eZk +lWL +lWL +lWL +qGN +lWL +lWL +qGN +qGN +qGN +qGN +qGN +lWL +xsI +qGN +lWL +qGN +qGN +qGN +cCl +owK +jLE +jYl +wJq +owK +jYl +jYl +jYl +owK +owK +owK +jYl +jYl +mFh +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(153,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +hhn +xyC +kWD +oTJ +flw +jie +njL +qVY +nok +kWD +kWD +miM +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +kWD +apz +snc +nMp +miM +miM +miM +miM +miM +miM +miM +miM +gpG +gpG +gpG +gOJ +gOJ +nhk +qTn +gzU +qTn +jCs +fQG +bVh +bVh +jCs +fQG +oBh +oBh +nph +chq +jwe +fQG +fQG +fQG +jCs +jCs +jCs +fQG +aKg +fQG +fQG +fQG +bbN +miM +miM +miM +miM +miM +dVh +dVh +rdF +nhk +qGN +hux +hux +lWL +hux +hux +hux +hux +hux +lWL +lWL +hux +lWL +aHl +eZk +fMq +iTk +iTk +qGN +lWL +lWL +aHl +qGN +fMq +hux +hux +xsI +qeW +sNa +hux +itw +kBQ +lWL +lWL +lWL +lWL +lWL +fKz +hux +lWL +qGN +qGN +lWL +lWL +mCz +lWL +qGN +qGN +qGN +qeW +qeW +lWL +lWL +qGN +lWL +lWL +qGN +qGN +mYK +lWL +qGN +qGN +hux +aHl +qGN +xsI +xsI +lLF +fid +lWL +qGN +lWL +lWL +tfz +tfz +owK +mlv +mlv +mFh +cIV +owK +owK +mFh +owK +jeC +owK +mlv +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(154,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +wEc +qkM +wEA +tTG +cgb +jie +cco +kWD +xmQ +cco +flw +hHf +kWD +nMp +miM +miM +miM +miM +miM +bzG +kWD +kWD +kWD +kWD +rmO +dvj +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +fQG +fQG +bIQ +fQG +qTn +qTn +aoh +jCs +fQG +qTn +fQG +bVh +fQG +fQG +fQG +neX +tpH +aKg +qTn +jCs +jCs +fQG +fQG +hsj +fQG +jCs +jCs +jCs +nhk +miM +miM +miM +miM +ujY +qTn +fQG +jCs +jCs +jCs +hux +hux +lWL +nLu +lWL +qGN +lWL +lWL +uEa +qeW +qeW +mYK +lWL +lWL +bHE +lWL +iTk +iTk +qGN +lWL +hux +lWL +qGN +lWL +xsI +hux +eZk +eZk +uhg +hux +cSH +hux +qGN +qGN +ueo +lWL +fMq +nGx +lWL +qGN +qGN +lWL +qGN +qGN +lWL +mYK +qGN +qGN +lWL +mYK +lWL +mYK +qGN +qGN +hux +hux +qGN +lWL +hux +hux +qGN +hux +hux +hux +lWL +aHl +lWL +hux +hux +mSO +miM +miM +miM +ljY +miM +miM +miM +xFL +oKy +tfz +owK +jYl +eCt +jYl +mlv +mlv +mlv +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(155,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +eER +rXc +kWD +qOH +nok +hOx +flw +jie +jie +kWD +uxL +kWD +miM +miM +miM +miM +miM +kWD +kWD +kWD +kWD +kWD +kWD +vSL +kWD +csE +miM +miM +miM +miM +miM +miM +miM +miM +miM +fQG +fQG +nhk +tna +bVh +aKg +qTn +jCs +jCs +fQG +fQG +fQG +bVh +bVh +bVh +fQG +qYg +fQG +fQG +fQG +bVh +bVh +fQG +fQG +dVh +fQG +fQG +jCs +jCs +jCs +fQG +miM +rcw +fQG +fQG +fQG +bbN +fQG +aKg +qeW +cJq +aGR +lWL +lWL +lWL +iTk +lWL +qGN +qGN +qGN +lWL +lWL +mYK +lWL +lWL +iTk +lWL +qGN +mYK +hux +lWL +qGN +lWL +xsI +hux +lWL +hux +lWL +hux +hux +kBQ +qGN +lWL +lWL +lWL +lWL +nGx +lWL +qGN +lWL +lWL +aHl +lWL +lWL +xcy +qGN +hux +hux +hux +hux +lWL +qGN +hux +hux +qGN +qGN +lWL +hux +xsI +qGN +hux +hux +hux +hux +hux +lWL +hux +lWL +eLl +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xFL +mlv +mlv +mlv +mlv +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(156,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +fOv +kWD +kWD +xiE +xiE +xiE +xiE +xiE +xiE +kWD +cqL +kWD +wIo +kWD +kWD +kWD +qQS +kWD +kWD +kWD +kWD +kWD +kWD +kWD +wUi +hnr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +qTn +tna +bVh +vQC +bVh +bVh +qTn +jCs +fQG +dVh +fQG +rdF +jCs +jCs +aKg +chq +aoh +fQG +aKg +fQG +fQG +ofn +jCs +fQG +bVh +hVl +bVh +rdF +jCs +jCs +fQG +fQG +dlv +hVl +bVh +bVh +fQG +aKg +lWL +iTk +iTk +iTk +iTk +lWL +iTk +iTk +lWL +lWL +iTk +iTk +iTk +qGN +nzh +fMq +iTk +lWL +lWL +lWL +lWL +fMq +qGN +qGN +qeW +lWL +lWL +hux +lWL +hux +cSH +itw +qGN +qGN +qeW +nGx +nGx +nGx +lWL +lWL +lWL +hux +hux +lWL +eZk +lWL +hux +hux +eZk +eZk +eZk +lWL +qGN +lWL +qGN +lWL +eZk +lWL +hux +xsI +lWL +lWL +lWL +lWL +qGN +lWL +hux +lWL +hux +hux +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(157,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +kWD +kWD +kWD +kWD +kWD +uxL +kWD +wIo +kWD +kWD +vBY +kWD +kWD +lcp +vhm +wVU +hNb +kWD +snc +kWD +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +bVh +tmC +rMi +bVh +bVh +qTn +fQG +jCs +fQG +jCs +jCs +jCs +fQG +aKg +gOJ +nhk +bka +fQG +jCs +jCs +jCs +ujY +miM +fQG +gzU +fQG +fQG +aKg +dVh +bVh +bVh +fQG +fQG +wQY +fQG +fQG +bbN +lWL +lWL +jbn +lWL +qGN +lWL +lWL +xsI +lWL +qGN +lWL +lWL +lWL +iTk +iTk +iTk +iTk +qGN +lWL +lWL +aHl +hux +qGN +qGN +qeW +lWL +mYK +lWL +mYK +lWL +ltE +hux +lWL +lWL +eZk +lWL +nGx +aHl +lWL +lWL +lWL +eZk +hux +hux +eZk +lWL +hux +mYK +eZk +lWL +bHE +lWL +qGN +qGN +qGN +mYK +lWL +xsI +hux +xsI +aHl +hux +hux +lWL +lWL +lWL +lWL +eZk +cJq +hux +hux +qGN +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(158,1,1) = {" +miM +miM +miM +miM +miM +miM +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +kWD +kWD +kWD +kWD +wIo +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +vSL +snc +kWD +snc +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aKg +bVh +hVl +bVh +bVh +fwu +jCs +jCs +ofn +jCs +fQG +miM +qTn +gOJ +gOJ +jCs +jCs +jCs +jCs +aKg +miM +miM +miM +miM +aKg +jCs +jCs +lkE +aKg +fQG +rdF +fQG +rcw +jCs +jCs +jCs +ofn +lWL +miM +lWL +qGN +eZk +lWL +qeW +qeW +qeW +lWL +lWL +eZk +vgc +lWL +lWL +iTk +iTk +qGN +fMq +lWL +qGN +hux +qGN +qGN +lWL +qeW +qGN +lWL +cJq +mYK +lWL +cVD +lWL +lWL +lWL +lWL +fKz +nGx +lWL +lWL +qGN +eZk +eZk +hux +eZk +lWL +hux +lWL +eZk +lWL +lWL +hux +qGN +lWL +hux +lWL +lWL +cJq +lWL +lWL +cJq +lWL +lWL +fid +hux +lWL +qur +lWL +lWL +lWL +hux +qGN +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(159,1,1) = {" +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +kWD +kWD +miM +miM +miM +miM +miM +tLL +aYE +tLL +miM +kWD +kWD +nFb +klf +kWD +dvj +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +tna +bVh +bVh +bVh +nhk +bka +dVh +jCs +fQG +nhk +miM +miM +miM +chq +rdF +qTn +fQG +miM +miM +miM +miM +miM +miM +miM +fQG +fQG +jCs +jCs +fQG +jCs +jCs +jCs +miM +miM +miM +fQG +fQG +lWL +miM +lWL +lWL +cJq +lWL +lWL +lWL +lWL +lWL +lWL +lWL +lWL +lWL +fMq +lWL +iTk +qGN +qGN +qGN +lWL +lWL +lWL +lWL +ohA +lWL +lWL +lWL +lWL +jbn +lWL +lWL +lWL +mYK +cJq +fMq +mYK +nGx +lWL +qGN +lWL +lWL +eZk +hux +eZk +eZk +lWL +hux +hux +eZk +lWL +lWL +lWL +lWL +lWL +hux +hux +lWL +lWL +lWL +lWL +lWL +lWL +lWL +lWL +mYK +lWL +eLl +lWL +miM +aHl +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(160,1,1) = {" +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +kWD +vSL +kWD +vSL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nhk +aoh +aoh +jCs +fQG +miM +miM +miM +miM +frH +gOJ +qTn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +fQG +fQG +fQG +miM +miM +miM +miM +miM +qTn +miM +miM +mYK +lWL +miM +miM +miM +mYK +lWL +dPQ +lWL +lWL +dPQ +lWL +qeW +mYK +fMq +iTk +lWL +lWL +lWL +qGN +qGN +qGN +lWL +qGN +lWL +cJq +lWL +aHl +miM +miM +miM +miM +lWL +lWL +mYK +lWL +nGx +sNa +qGN +lWL +lWL +aHl +qGN +jbn +hux +hux +xsI +qeW +lWL +lWL +xsI +qGN +lWL +cJq +lWL +mSO +miM +miM +lWL +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(161,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +cqL +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +wIo +miM +apz +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nhk +miM +miM +miM +miM +miM +miM +miM +miM +gOJ +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nhk +miM +miM +miM +miM +miM +fQG +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +mYK +lWL +lWL +lWL +lWL +lWL +lWL +iTk +iTk +lWL +iTk +iTk +fMq +lWL +qGN +qGN +qGN +lWL +aHl +miM +miM +miM +miM +miM +lWL +lWL +lWL +dPQ +nGx +lWL +qGN +qGN +hux +lWL +qGN +lWL +xsI +hux +eZk +eZk +lWL +lWL +lWL +lWL +lWL +mYK +miM +lWL +aHl +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(162,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +bWE +kWD +uxL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +ujY +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mYK +lWL +cVD +ohA +lWL +iTk +iTk +fMq +lWL +lWL +lWL +fMq +fMq +qqF +lWL +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +hWY +hWY +lWL +qGN +hux +lWL +qGN +lWL +xsI +hux +lWL +hux +lWL +lWL +cJq +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(163,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +rXM +uxL +kWD +cEv +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +sNa +sNa +nva +qGN +lWL +lWL +nva +eZk +aHl +lWL +aHl +nva +nva +fMq +miM +miM +miM +miM +miM +miM +miM +miM +eZk +lWL +sNa +nGx +lWL +qGN +lWL +lWL +qGN +qGN +qeW +lWL +lWL +hux +lWL +lWL +lWL +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +jbn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(164,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mYK +aHl +qGN +qGN +lWL +sNa +sNa +sNa +sNa +lWL +qGN +fMq +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +jbn +cJq +nGx +lWL +qGN +aHl +hux +qGN +qGN +qeW +lWL +mYK +lWL +lWL +lWL +hux +hux +lWL +fMq +qGN +jpO +qGN +jbn +miM +miM +miM +miM +miM +miM +miM +qqF +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +mYK +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(165,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +kWD +kWD +xmQ +kWD +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +rqY +iTk +rqY +lWL +sNa +lWL +pKX +sNa +mYK +fMq +fMq +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +fMq +nGx +lWL +qGN +qGN +hux +qGN +qGN +lWL +qeW +qGN +lWL +lWL +cJq +lWL +hux +hux +cCl +fMq +lWL +eZk +fid +hux +qGN +jbn +cCl +miM +miM +fMq +jbn +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +fKU +hux +hux +aHl +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(166,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xQa +kWD +apz +kWD +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aUD +aUD +aUD +aUD +aUD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nRb +nRb +nRb +apC +nRb +nRb +nRb +nRb +lWL +sNa +uim +jdE +qeW +mYK +miM +miM +miM +miM +miM +miM +miM +miM +eZk +lWL +nGx +fKz +lWL +qGN +lWL +lWL +lWL +aHl +lWL +lWL +lWL +lWL +lWL +mYK +fMq +miM +miM +miM +fMq +eZk +aHl +qGN +fMq +miM +qGN +hux +cCl +qGN +miM +miM +miM +miM +miM +miM +miM +miM +lWL +fKU +fKU +fKU +cJq +lWL +fKU +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(167,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +kWD +kWD +nai +vMu +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aUD +omT +aPk +vws +aUD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +dIs +fHD +beC +ckL +lWL +lWL +lWL +nRb +nRb +lWL +aHl +fMq +qeW +lWL +lWL +mYK +miM +miM +miM +miM +miM +miM +lWL +qqF +lWL +nGx +mYK +qGN +lWL +xsI +qGN +lWL +hux +lWL +dPQ +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mYK +fKU +fKU +cJq +xsI +xsI +eZk +fKU +hux +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(168,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +nai +nai +miM +miM +miM +miM +miM +miM +tcb +nai +miM +rOc +rOc +pWt +kWD +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aUD +tey +iFl +vws +aUD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +wae +kvL +kvL +nIc +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +dIs +fHD +cIC +uWc +iTk +iTk +sNa +sNa +lWL +nRb +nRb +aHl +fMq +aHl +lWL +cJq +aHl +fMq +miM +miM +miM +miM +miM +lWL +lWL +lWL +hWY +sNa +lWL +aHl +fMq +qGN +lWL +hux +lWL +lWL +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +fKU +lWL +eZk +hux +xsI +hux +fid +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(169,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +nai +nai +mfj +miM +miM +miM +sbr +sbr +nai +dhE +nai +mYL +mng +kWD +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aUD +aUD +arp +aUD +aUD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kvL +nIc +ufR +kvL +kvL +kvL +miM +miM +miM +miM +miM +drq +nai +drq +miM +drq +drq +sbr +miM +miM +miM +miM +miM +miM +miM +nRb +nRb +sNa +sNa +iTk +iTk +lWL +sNa +lWL +nRb +mYK +lWL +eZk +fMq +lWL +lWL +aHl +mTn +aHl +miM +miM +miM +miM +mYK +lWL +nGx +lWL +lWL +lWL +mYK +qGN +cJq +lWL +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +fKU +enG +eZk +hux +lWL +hux +eZk +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(170,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +miM +sbr +sbr +sbr +sbr +miM +miM +miM +nai +sbr +sbr +miM +sbr +nai +nai +nai +nai +nai +kWD +kWD +nai +nai +miM +miM +miM +miM +sbr +sbr +sbr +qeg +miM +vtE +miM +miM +miM +mBN +dhE +nai +nai +nai +nai +nai +miM +miM +fsa +vEu +arp +lIZ +nXA +arp +arp +arp +bru +lIZ +ccc +miM +miM +miM +miM +miM +miM +miM +rOc +uZv +ufR +ufR +ufR +ufR +nIc +kvL +miM +miM +otS +pKO +drq +miM +drq +miM +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +uhg +xdw +sNa +sNa +sNa +iTk +iTk +sNa +lWL +nRb +lWL +aHl +qeW +qeW +lWL +aHl +cJq +lWL +aHl +miM +miM +miM +miM +lWL +dPQ +bLF +nGx +nGx +lWL +qeW +lWL +mSO +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +fKU +lWL +eZk +mYK +hux +xsI +hux +xsI +hux +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(171,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +miM +sbr +sbr +sbr +sbr +sbr +sbr +miM +nai +sbr +sbr +sbr +sbr +aFD +miM +miM +nai +cIq +kWD +kWD +kWD +nai +miM +miM +miM +miM +sbr +nai +nai +nai +nai +nai +nai +miM +otS +nai +gTN +nai +nai +nai +nai +nai +miM +miM +dMT +plU +arp +arp +pce +arp +arp +arp +mMo +gFX +ccc +miM +miM +miM +sDQ +miM +kWD +kWD +nai +kvL +kvL +kvL +ufR +kvL +kvL +kvL +xQa +drq +nai +miM +miM +miM +drq +drq +drq +drq +drq +miM +miM +miM +miM +miM +miM +okx +eZk +qeW +sNa +sNa +lWL +lWL +iTk +sNa +lWL +nRb +nRb +aHl +aHl +sNa +sNa +lWL +mYK +lWL +mYK +miM +miM +miM +miM +lWL +lWL +fMq +nGx +lWL +hux +ylZ +dPQ +fMq +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mTn +cJq +hux +hux +mTn +lWL +xsI +lWL +fid +hux +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(172,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +nai +miM +miM +miM +kWD +rOc +kWD +kWD +nai +cHB +miM +miM +miM +miM +nai +nai +nai +nai +nai +iOr +tZR +nai +nai +nai +nai +nai +nai +nai +nai +miM +miM +dMT +aPk +pce +mLY +aPk +arp +pce +pce +bru +aPk +ccc +miM +miM +oIE +bNN +oAH +liO +kWD +nai +kvL +kvL +kvL +kvL +kvL +kvL +kvL +miM +miM +miM +miM +miM +miM +nai +miM +miM +miM +nai +miM +miM +miM +miM +miM +okx +jyE +eZk +ctF +iTk +pWK +iTk +iTk +iTk +lWL +lWL +lWL +nRb +sNa +lWL +eZk +lWL +aHl +lWL +lWL +aHl +miM +miM +miM +miM +lWL +hux +mYK +hWY +hux +hux +lWL +hux +miM +miM +miM +eZk +miM +miM +miM +miM +fKU +aHl +miM +miM +miM +miM +miM +miM +miM +miM +mYK +miM +miM +miM +miM +miM +miM +miM +lWL +fKU +fKU +abm +lWL +fKU +lWL +fKU +hux +hux +qeW +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(173,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +nai +nai +miM +nai +xyC +nai +kWD +wCZ +nai +nai +miM +miM +miM +miM +tpa +nai +nai +nai +nai +nai +miM +nai +nai +nai +nai +nai +nai +nai +nai +miM +miM +aPk +arp +aPk +pce +arp +pce +arp +arp +arp +uXd +pce +miM +miM +miM +gYH +miM +kWD +kWD +nai +nIc +kvL +uZv +nIc +kvL +nIc +drq +miM +miM +miM +miM +sbr +drq +drq +miM +miM +miM +drq +miM +miM +miM +miM +lWL +ghQ +eZk +iWz +lWL +iTk +pWK +iTk +lWL +lWL +lWL +sNa +lWL +nRb +lWL +qeW +kVK +lWL +lWL +lWL +dPQ +mTn +miM +miM +miM +miM +lWL +hux +hux +nGx +hux +jpO +fMq +lWL +miM +hux +aHl +hux +fKU +miM +miM +hWY +nGx +tWG +nGx +aHl +fKU +miM +miM +miM +fKU +lWL +qeW +miM +miM +miM +miM +miM +miM +hux +fKU +fKU +lWL +mTn +lWL +hux +hux +hux +nGx +nGx +fKz +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(174,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +nai +nai +nai +tTG +kWD +kWD +kWD +nai +aFD +miM +miM +miM +miM +miM +miM +miM +tpa +miM +miM +miM +miM +dLx +dLx +nai +nai +miM +miM +miM +miM +miM +arp +arp +arp +vYJ +arp +pce +arp +arp +arp +miM +miM +miM +miM +miM +miM +miM +dke +wCZ +nai +nai +aFD +nai +kvL +kvL +kvL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sOd +miM +miM +miM +miM +bSO +hvD +lWL +lWL +lWL +iTk +iTk +iTk +lWL +lWL +lWL +sNa +lWL +nRb +lWL +mTn +sNa +lWL +sNa +lWL +aHl +sNa +miM +miM +miM +miM +lWL +lWL +qqF +fKz +fMq +pcB +lWL +miM +miM +mYK +fKU +cJq +fMq +miM +miM +jIo +miM +miM +nGx +adP +nGx +aHl +lWL +miM +fKU +qeW +fKU +jbn +miM +miM +miM +miM +miM +hux +aix +lWL +lWL +aHl +lWL +hux +nGx +bLF +nGx +qeW +adP +nGx +nGx +miM +miM +miM +miM +miM +miM +miM +kvL +miM +miM +miM +miM +miM +miM +miM +miM +"} +(175,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +nai +nai +rOc +tTG +kWD +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +wIo +miM +miM +miM +miM +miM +arp +arp +arp +bwB +pce +ndV +arp +arp +arp +arp +arp +miM +miM +miM +miM +miM +miM +kWD +kWD +kWD +kWD +miM +miM +miM +miM +miM +miM +miM +sbr +kWD +kWD +miM +miM +miM +miM +miM +eqh +miM +miM +miM +bqo +njd +bSO +iTk +ygn +iTk +iTk +iTk +iTk +lWL +lWL +lWL +lWL +lWL +nRb +wHR +qeW +sNa +lWL +sNa +lWL +mYK +mTn +mTn +miM +miM +miM +miM +fMq +eZk +nGx +fHO +lWL +mTn +miM +fMq +mYK +lWL +fMq +fKz +miM +bLF +jbn +miM +miM +fKU +fKU +nGx +nGx +fKU +mYK +fKU +uTk +qeW +qeW +qeW +qeW +qeW +miM +miM +lWL +fKU +lWL +nGx +nGx +nGx +nGx +nGx +lWL +lWL +mTn +lWL +lWL +adP +uIX +qnx +miM +miM +miM +miM +miM +nIc +miM +miM +miM +miM +miM +miM +miM +miM +"} +(176,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +wMY +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +suM +wIo +kWD +kWD +kWD +kWD +kWD +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +uxL +dhE +ifh +miM +miM +miM +tJi +sMs +arp +arp +arp +arp +arp +arp +pce +miM +arp +miM +miM +miM +miM +miM +miM +cCb +miM +miM +jVL +miM +miM +miM +miM +miM +miM +miM +miM +miM +qQS +miM +miM +miM +miM +miM +kWD +miM +miM +njd +btQ +uAH +lWL +vlT +iTk +pWK +iTk +iTk +iTk +lWL +cBY +nGx +cBY +lWL +nRb +lWL +kVK +qeW +lWL +lWL +lWL +lWL +lWL +aHl +miM +miM +miM +miM +qeW +fKU +nGx +mTn +ipM +nGx +nGx +aix +lWL +lWL +nGx +mYK +fKz +hWY +miM +miM +miM +aHl +eZk +fKU +adP +nGx +fKU +lWL +fKU +fKU +qeW +qur +qeW +qeW +miM +lWL +lWL +lWL +nGx +nGx +lWL +fKU +fKU +fKU +fKU +fKU +lWL +fKU +fKU +lWL +nGx +guT +uKb +miM +miM +miM +kvL +kvL +miM +miM +miM +miM +miM +miM +miM +miM +"} +(177,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +nai +nai +miM +miM +miM +miM +miM +wCZ +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +nMp +ras +kWD +miM +miM +miM +miM +miM +miM +nXO +miM +rOc +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +hNO +kWD +nai +nai +miM +miM +miM +tJi +tJi +pce +aPk +yeN +gFf +jlN +hws +kHh +miM +arp +miM +miM +miM +miM +miM +miM +miM +miM +miM +tTG +miM +miM +miM +miM +miM +wae +nai +miM +miM +kWD +kWD +miM +miM +miM +kWD +xDc +miM +miM +bSO +xjp +bSO +lWL +ejI +vlT +iTk +iTk +iTk +iTk +lWL +lWL +nGx +lWL +sNa +nRb +eZk +sNa +lWL +mTn +lWL +aHl +cJq +lWL +mTn +miM +miM +miM +miM +miM +lWL +fHO +xsI +fMq +eZk +hWY +nGx +mYK +nGx +nGx +jIo +jpO +miM +miM +miM +miM +miM +aHl +eZk +lWL +bLF +nGx +nGx +lWL +fKU +lWL +qeW +qeW +qeW +jbn +aHl +cJq +nGx +nGx +jbn +eZk +mTn +lWL +hux +qeW +eZk +lWL +aHl +mTn +xsI +lWL +adP +nGx +tbb +psW +xPg +kvL +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(178,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +nai +nai +nai +nai +nMp +kWD +tTG +oDZ +ogU +sbr +sbr +sbr +mCj +apz +wCZ +qgv +kWD +kWD +uxL +kWD +miM +miM +miM +fwy +miM +kWD +kWD +wwU +nai +rOc +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +xyC +kWD +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +wrK +miM +miM +xQa +cRx +nai +miM +miM +miM +miM +wIo +miM +rOc +nai +nai +mYL +nai +nai +nai +miM +kWD +kWD +miM +miM +kWD +kWD +kWD +miM +miM +njd +njd +cFz +cFz +cFz +iTk +iTk +iTk +iTk +iTk +iTk +cBY +nGx +cBY +sNa +nRb +sNa +sNa +sNa +kVK +sNa +sNa +aHl +aHl +miM +miM +miM +miM +miM +fKU +pcB +nGx +hux +hux +fKU +fKU +fKU +hux +fKU +gDx +aHl +miM +miM +miM +miM +miM +miM +miM +lWL +fKU +fKU +lWL +fKz +nGx +nGx +fKU +aHl +xsI +aix +fKU +nGx +nGx +nGx +lWL +lWL +eZk +lWL +eZk +eZk +eZk +eZk +eZk +xsI +fKU +xsI +hux +weC +wCz +gge +miM +nIc +kvL +kvL +miM +miM +miM +miM +miM +miM +miM +miM +"} +(179,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +tTG +wCZ +apz +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +mRn +miM +miM +miM +miM +miM +nai +nai +kWD +kWD +kWD +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +uxL +mRn +kWD +ecP +nai +nai +nai +miM +miM +miM +dhE +xQa +miM +miM +rOc +miM +xQa +xQa +dhE +xOV +nai +nai +aFD +kWD +nai +nai +nai +nai +miM +kWD +nai +nai +aFD +kWD +kWD +kWD +kWD +kWD +nMp +gwC +kWD +miM +miM +kWD +cEE +uxL +xyC +miM +lWL +bSO +cFz +cnk +iTk +iTk +iTk +iTk +oAq +ejI +iTk +lWL +nGx +lWL +lWL +nRb +kVK +lWL +sNa +lWL +lWL +lWL +mTn +mTn +miM +miM +miM +miM +miM +lWL +aHl +nGx +mTn +aHl +eZk +mYK +fid +hux +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +fKU +fKU +cJq +lWL +aHl +nGx +nGx +nGx +nGx +nGx +nGx +nGx +qqi +fKU +lWL +lWL +xsI +lWL +eZk +eZk +lWL +fKU +fKU +eZk +xsI +fKU +fKU +lWL +lWL +dZH +syB +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(180,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +nai +nai +kWD +kWD +kWD +wwU +iZN +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +kWD +vhX +gTN +rOc +miM +miM +nai +nai +nai +nai +miM +nai +nai +nai +aFD +nai +qQS +nai +nai +nai +kWD +nai +nai +nai +nai +nMp +kWD +kWD +uxL +kWD +kWD +kWD +kWD +kWD +suk +cqL +tTG +uxL +kWD +lsG +kWD +xDc +vPU +xyC +uxL +kZX +fzF +iTk +iTk +iTk +iTk +iTk +iTk +iTk +iTk +rLI +cBY +nGx +cBY +lWL +nRb +lWL +lWL +lWL +lWL +cJq +mYK +mTn +lWL +nai +miM +miM +miM +miM +mTn +hux +fHO +miM +miM +xsI +hux +hux +eZk +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +fKU +fKU +eZk +lWL +lWL +nGx +upc +bLF +nGx +nGx +qqi +hyb +lWL +hux +mSO +cJq +fKU +qeW +hux +mTn +eZk +fKU +eZk +eZk +xsI +fKU +lWL +enG +lWL +ttY +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(181,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +rOc +aFD +rOc +nai +nai +rOc +nai +miM +nai +vMu +apz +kWD +kWD +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +uxL +nai +nai +nai +nai +nai +nai +nai +rOc +nai +nry +nai +nai +nai +nai +nai +kWD +kWD +kWD +uxL +kWD +kWD +kWD +kWD +suk +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +nai +kWD +kWD +kWD +kWD +miM +miM +kWD +cEE +uxL +xyC +miM +miM +lRl +lWL +iTk +iTk +iTk +cBY +lWL +cBY +wWP +cBY +nGx +nGx +nGx +lWL +nRb +aHl +lWL +mYK +lWL +miM +miM +miM +miM +jMb +nai +miM +miM +miM +mSO +fid +nGx +miM +miM +miM +jbn +mYK +eZk +miM +miM +miM +mTn +miM +miM +miM +miM +miM +miM +lWL +fKU +fKU +eZk +fKU +fKU +twZ +mTB +gEY +nGx +weC +xVT +gus +lWL +hux +lWL +fKU +lWL +fKU +mTn +mTn +aix +lWL +fKU +lWL +fKU +lWL +eZk +eZk +fKU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(182,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +drq +miM +mfj +miM +miM +nai +miM +nai +xQa +nai +kWD +kWD +kWD +nry +rOc +nai +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +nai +aFD +nai +nai +qQS +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +tMk +nai +aFD +nai +nai +nai +miM +kWD +kWD +miM +miM +kWD +kWD +kWD +miM +miM +miM +fzE +sNa +cJq +lWL +lWL +nGx +nGx +adP +nGx +nGx +adP +nGx +cBY +nRb +nRb +lWL +lWL +lWL +lWL +mTn +miM +miM +miM +nai +nai +nai +nai +miM +miM +lWL +nGx +lWL +miM +miM +miM +miM +miM +miM +miM +mTn +fKU +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +eZk +lWL +aix +lWL +syB +mzp +diI +tas +syB +lWL +lWL +hux +qeW +mTn +xsI +uXf +gIo +uXf +hKK +uXf +pzZ +uXf +wKg +xsI +eZk +lWL +fKU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(183,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +miM +miM +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +drq +miM +tcb +miM +miM +miM +miM +miM +miM +miM +miM +kWD +jTv +kWD +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +nai +nai +kWD +kWD +kWD +kWD +kWD +kWD +tTG +kWD +kWD +kWD +kWD +kWD +kWD +abv +abv +abv +muE +aFD +nai +nai +nai +drq +nbQ +nai +jEf +miM +miM +miM +nai +miM +miM +miM +miM +kWD +sbr +miM +miM +kWD +xhO +miM +miM +miM +miM +lWL +lWL +sNa +lNN +cBY +lWL +cBY +lWL +cBY +nGx +cBY +lWL +nRb +lWL +aHl +lWL +aHl +cVD +aHl +miM +miM +miM +nai +miM +miM +mTn +lWL +lWL +xsI +nGx +mSO +miM +miM +miM +miM +miM +miM +miM +mYK +aix +miM +miM +miM +miM +miM +miM +miM +miM +miM +mTn +lWL +xsI +lWL +gus +wBe +mzp +gge +cfi +ylZ +hux +hux +qeW +lWL +uXf +kfu +kfu +kfu +dLI +kfu +kfu +kfu +uXf +xsI +hux +hux +lWL +aHl +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(184,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +drq +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +uxL +nai +aFD +nai +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +tTG +kWD +kWD +miM +miM +miM +nai +cRx +miM +miM +miM +miM +miM +kWD +mYL +miM +miM +miM +nai +muE +miM +miM +miM +wIo +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +uxL +tTG +miM +miM +miM +miM +aHl +sNa +lWL +sNa +lWL +miM +miM +miM +nRb +nRb +nRb +nRb +lWL +dPQ +mTn +sNa +sNa +mTn +miM +miM +nai +nai +miM +miM +lWL +mTn +hux +ukm +nGx +fKU +miM +miM +miM +miM +miM +miM +miM +fKU +fKU +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +xsI +xsI +hux +hux +gus +gus +gus +gus +lWL +hux +lWL +lWL +alw +uXf +kfu +mIR +kfu +uXf +kfu +bXF +kfu +uXf +lWL +hux +fKU +fKU +fKU +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(185,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +sbr +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +sbr +sbr +sbr +sbr +owA +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +kWD +nai +nai +dhE +nai +miM +miM +miM +miM +miM +nai +kWD +kWD +kWD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +wrK +miM +miM +miM +miM +miM +rOc +miM +miM +miM +pce +lIZ +pce +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +miM +miM +miM +miM +miM +aHl +qeW +miM +miM +miM +miM +miM +miM +aHl +lWL +cVD +sNa +sNa +miM +miM +miM +miM +miM +miM +nai +miM +miM +miM +xsI +cJq +hux +nGx +bLF +hux +miM +miM +miM +miM +miM +miM +miM +miM +fKU +mTn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +hux +fKU +lWL +aHl +hux +hux +lWL +lWL +bjA +nGx +lWL +wKg +ugL +iad +kfu +dpm +kfu +aVe +aVq +hga +hux +aHl +fKU +fKU +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(186,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +rOc +rOc +miM +miM +miM +nai +nai +nai +nai +miM +miM +miM +miM +aFD +nbB +kWD +kWD +kWD +kWD +nai +tTG +kWD +kWD +miM +eUq +kWD +kWD +cqL +nai +nai +miM +miM +arp +arp +lIZ +tmv +nai +arp +pce +arp +arp +miM +qDP +xAS +miM +miM +miM +miM +miM +miM +miM +miM +arp +cIb +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +ctB +miM +miM +miM +miM +miM +miM +miM +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +rOc +miM +miM +aHl +lWL +aHl +wWP +fHO +gJT +hux +miM +miM +miM +miM +miM +miM +miM +lWL +mTn +dPQ +miM +miM +miM +miM +miM +fKU +miM +miM +miM +miM +miM +lWL +aix +fKU +lWL +qeW +hux +hux +hWY +tWG +vSu +fid +egD +kfu +iad +kfu +aaN +kfu +vCt +hvX +hWY +nGx +cJq +fKU +pli +aix +fKU +mTn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(187,1,1) = {" +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +nai +nai +nai +nai +rOc +sbr +sbr +nai +miM +miM +miM +miM +miM +nai +nai +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +kWD +nai +nai +rOc +miM +miM +ecz +qDP +arp +mNu +arp +arp +miM +miM +miM +miM +mNu +arp +miM +miM +miM +miM +vvz +arp +pce +nai +arp +aWy +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +rOc +miM +miM +miM +miM +miM +klA +nGx +jbn +hux +hMy +miM +miM +miM +miM +miM +miM +miM +mTn +fKU +hux +mTn +miM +miM +miM +lWL +fKU +mYK +fKU +lWL +lWL +qeW +lWL +fKU +qeW +uTk +lWL +lWL +teN +hWY +oSm +hux +wKg +kfu +iad +kfu +drb +kfu +aVe +wNS +rLA +jIo +fKU +lWL +lWL +lWL +lWL +mTn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(188,1,1) = {" +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +nai +nai +miM +miM +miM +miM +miM +abv +nai +kWD +kWD +kWD +kWD +kWD +suk +oQY +uxL +kWD +nai +nai +nai +nai +miM +miM +pce +pce +vEu +ktu +arp +pce +jMj +arp +gGu +arp +kRa +hht +miM +miM +miM +miM +bbp +poV +arp +pce +sQQ +euu +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aFD +miM +miM +miM +miM +miM +fKz +fKz +fKU +hMy +eZk +eZk +fKU +miM +miM +miM +miM +miM +lWL +lWL +mYK +fKU +fKU +aHl +lWL +fKU +fKU +lWL +cJq +fKU +qeW +qeW +lWL +fKU +lWL +mYK +mTn +mTn +lWL +lWL +lWL +ctB +fRH +kfu +nZd +tcP +xye +dOI +iad +tOB +nGx +hux +lWL +fKU +lWL +aHl +jbn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(189,1,1) = {" +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +nai +miM +miM +miM +miM +miM +rJp +nai +nai +kWD +tTG +uCt +kWD +kWD +kWD +kWD +nai +nai +nai +miM +nai +nai +miM +arp +arp +arp +qDP +arp +ecz +qDP +arp +mNu +arp +arp +nai +miM +miM +miM +miM +nib +pce +pce +pce +pce +liw +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +miM +sbr +miM +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +rOc +miM +miM +miM +jps +nGx +bLF +fKU +qur +dZu +fKU +miM +miM +miM +miM +lWL +fKU +fKU +fKU +fKU +lWL +hux +enG +eZk +lWL +qeW +qeW +eZk +lWL +qeW +lWL +fKU +aix +lWL +miM +miM +miM +miM +aHl +miM +miM +miM +kfu +iad +iad +iad +aVe +iad +kfu +hux +fKU +lWL +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(190,1,1) = {" +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +rOc +nai +nai +miM +miM +miM +miM +miM +miM +miM +kWD +kWD +kWD +kWD +miM +miM +rOc +nai +miM +miM +miM +rOc +miM +arp +arp +nai +pce +arp +arp +arp +pce +arp +hIW +arp +arp +miM +miM +miM +miM +miM +aOn +arp +miM +arp +qeb +miM +miM +miM +miM +miM +miM +sbr +sbr +miM +sbr +sbr +miM +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +miM +miM +miM +fKz +fKz +miM +lWL +lWL +lWL +miM +miM +miM +miM +mTn +lWL +fKU +mYK +eZk +hux +fKU +eZk +eZk +lWL +aHl +lWL +qeW +hux +eZk +eZk +lWL +fKU +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +ffL +kfu +qph +rHn +etJ +kfu +ffL +hux +fKU +eZk +cJq +mTn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(191,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +arp +arp +arp +ydq +dDX +pce +arp +dDX +dDX +arp +pce +arp +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +miM +sbr +miM +miM +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +miM +miM +miM +miM +miM +miM +miM +xsI +mYK +miM +miM +miM +miM +mTn +fKU +fKU +aix +eZk +mTn +aix +lWL +mTn +lWL +uTk +qeW +hux +hux +fKU +lWL +lWL +fKU +fKU +miM +miM +miM +miM +miM +miM +miM +miM +aHl +dsp +ffL +ffL +dxA +ffL +ffL +dsp +hux +lWL +lWL +aHl +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(192,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nUx +dDX +miM +miM +miM +dDX +arp +miM +miM +miM +miM +arp +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +miM +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +drq +drq +rOc +miM +miM +rOc +miM +miM +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mYK +mTn +lWL +fKU +fKU +lWL +eZk +fKU +fKU +lWL +qeW +qeW +mYK +qeW +lWL +lWL +aix +fKU +fKU +aix +lWL +miM +miM +miM +miM +miM +miM +miM +miM +hux +hKK +dsp +kfu +kWa +kfu +dsp +lWL +eZk +lWL +mTn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(193,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +dDX +miM +miM +arp +miM +dDX +dDX +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +drq +drq +uIE +rOc +rOc +aFD +rOc +aFD +nai +aFD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aHl +fKU +cJq +fKU +fKU +mTn +miM +miM +miM +miM +miM +miM +mTn +mTn +fKU +fKU +lWL +mTn +miM +miM +miM +miM +miM +miM +miM +miM +fKU +lWL +wKg +kfu +kfu +kfu +dLI +lWL +eZk +eZk +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(194,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +mfj +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +ydq +arp +arp +pce +arp +arp +pce +pce +arp +dDX +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +aFD +rOc +rOc +rOc +drq +drq +drq +drq +drq +rOc +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +mTn +mYK +miM +miM +miM +miM +miM +miM +miM +miM +miM +lWL +lWL +lWL +mYK +miM +miM +miM +miM +miM +miM +miM +miM +lWL +aix +fKU +dLI +dLI +dLI +wKg +cJq +lWL +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(195,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +arp +arp +pce +arp +arp +pce +miM +pce +arp +pce +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +miM +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +mfj +nai +nai +lVQ +miM +rOc +aFD +drq +drq +drq +drq +drq +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mTn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mTn +mTn +fKU +fKU +fKU +lWL +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(196,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +nai +mfj +nai +nai +miM +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +dDX +pce +miM +miM +arp +arp +miM +miM +miM +dDX +dDX +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +xQa +eUP +miM +miM +miM +miM +miM +miM +drq +drq +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +mYK +mTn +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(197,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +nai +rOc +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +nai +aUD +sbr +sbr +sbr +sbr +aUD +miM +miM +miM +miM +miM +miM +miM +miM +miM +arp +dDX +miM +dDX +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +rOc +nai +nai +miM +miM +miM +miM +miM +miM +miM +drq +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(198,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +vOh +mog +mog +mog +mog +vOh +nai +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +pce +pce +pce +pce +sbr +arp +pce +nai +nai +rOc +nai +miM +miM +miM +miM +miM +ydq +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +drq +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(199,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +mog +tBJ +xmJ +kWD +xKX +eSa +nai +nai +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +aUD +sbr +arp +pce +pce +aUD +sbr +sbr +sbr +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +sbr +miM +miM +miM +miM +miM +miM +aUD +aUD +aaw +aUD +nai +abv +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(200,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +mog +bse +bse +etK +bEz +mog +miM +nai +nai +nai +nai +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +nai +sbr +sbr +sbr +sbr +sbr +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +aUD +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +aUD +pce +pce +aUD +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(201,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +nMr +mog +vOh +vOh +mog +mog +miM +miM +miM +miM +nai +mfj +nai +nai +nai +nai +nai +nai +sbr +sbr +sbr +sbr +miM +miM +sbr +sbr +sbr +miM +miM +xQa +nai +sbr +sbr +sbr +sbr +xQa +nai +nai +pce +aUD +sbr +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +pce +arp +abv +nai +rOc +xQa +pce +pce +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +aUD +arp +pce +aUD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(202,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +nai +nai +nai +nai +nai +miM +miM +miM +miM +miM +miM +miM +miM +nai +sbr +sbr +sbr +sbr +sbr +sbr +sbr +pce +pce +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +pce +pce +arp +aUD +miM +sbr +sbr +sbr +aUD +pce +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +aUD +arp +aUD +aUD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(203,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +rOc +sbr +sbr +nai +miM +miM +miM +miM +miM +miM +miM +miM +nai +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +pce +arp +aUD +sbr +sbr +sbr +sbr +sbr +arp +pce +arp +sbr +sbr +miM +miM +sbr +sbr +sbr +sbr +arp +pce +aUD +sbr +sbr +sbr +sbr +xQa +nai +nai +nai +miM +miM +miM +nai +nai +abv +pce +nai +pce +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(204,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +miM +miM +miM +miM +sbr +sbr +sbr +sbr +nai +miM +miM +miM +miM +miM +miM +miM +nai +nai +sbr +sbr +miM +sbr +sbr +sbr +sbr +sbr +aUD +nai +rOc +nai +nai +xQa +nai +nai +arp +sbr +aUD +sbr +sbr +miM +sbr +sbr +sbr +sbr +sbr +sbr +arp +arp +xQa +nai +nai +nai +nai +miM +miM +nai +nai +rOc +nai +nai +miM +miM +nai +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(205,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +nai +nai +miM +miM +nai +mfj +rOc +nai +nai +sbr +sbr +miM +miM +miM +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +aUD +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +xQa +nai +nai +rOc +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(206,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +sbr +sbr +sbr +sbr +mfj +nai +miM +nai +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(207,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +nai +nai +nai +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(208,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(209,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(210,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(211,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +sbr +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(212,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(213,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(214,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} +(215,1,1) = {" +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +miM +"} diff --git a/_maps/map_files220/RandomZLevels/wildwest.dmm b/_maps/map_files220/RandomZLevels/wildwest.dmm new file mode 100644 index 000000000000..42012146025a --- /dev/null +++ b/_maps/map_files220/RandomZLevels/wildwest.dmm @@ -0,0 +1,26356 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/effect/landmark/damageturf, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"ab" = ( +/obj/structure/closet/crate/can, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"ae" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"ai" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"al" = ( +/obj/structure/curtain/medical, +/obj/effect/mine/dnascramble, +/obj/item/retractor{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/wildwest/wildwest_mines) +"an" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 4 + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"ap" = ( +/obj/effect/mine/dnascramble, +/obj/item/stack/sheet/mineral/sandstone, +/obj/effect/decal/cleanable/blood/tracks, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"ar" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"as" = ( +/obj/item/trash/tastybread, +/obj/item/trash/chips, +/obj/item/trash/can, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mob_spawn/human/corpse/miner, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"az" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"aC" = ( +/obj/machinery/washing_machine, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "barber" + }, +/area/awaymission/wildwest/wildwest_mines) +"aD" = ( +/obj/machinery/power/port_gen/pacman, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"aG" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"aJ" = ( +/obj/structure/grille/broken, +/obj/item/shard, +/obj/item/shard{ + icon_state = "small"; + pixel_x = 10; + pixel_y = 9 + }, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"aK" = ( +/obj/item/seeds/carrot, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"aL" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroid9" + }, +/area/awaymission/wildwest/wildwest_mines) +"aS" = ( +/obj/item/gun/energy/kinetic_accelerator, +/turf/simulated/floor/plating/ironsand{ + icon_state = "ironsand4" + }, +/area/awaymission/wildwest/wildwest_mines) +"aV" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"aZ" = ( +/turf/simulated/floor{ + icon_state = "cultdamage4" + }, +/area/awaymission/wildwest/wildwest_vault) +"bc" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"bd" = ( +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/food/snacks/mint, +/obj/item/kitchen/utensil/fork, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"bh" = ( +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/green, +/area/awaymission/wildwest/wildwest_mines) +"bq" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"bu" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/space) +"bw" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"bB" = ( +/obj/machinery/light/small/directional/south, +/mob/living/simple_animal/hostile/syndicate/melee/autogib{ + name = "Syndicate Operative" + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"bH" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"bJ" = ( +/obj/structure/chair/stool/bar, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"bP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/assembly/igniter, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"bR" = ( +/obj/item/stack/rods, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"bW" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"bY" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/landmark/damageturf, +/obj/effect/landmark/burnturf, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"cd" = ( +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"ch" = ( +/obj/machinery/economy/vending/cigarette/free, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"cj" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/stack/rods, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"cm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"cp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/curtain/medical, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"cq" = ( +/obj/effect/step_trigger/sound_effect{ + happens_once = 1; + sound = "modular_ss220/aesthetics_sounds/sound/creepy/many_whisper2.ogg"; + triggerer_only = 1 + }, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"ct" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"cw" = ( +/obj/effect/mine/dnascramble, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"cz" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"cC" = ( +/obj/structure/chair/comfy/shuttle, +/obj/machinery/light/directional/north, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"cK" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "ww_window" + }, +/turf/simulated/wall/indestructible/fakeglass, +/area/awaymission/wildwest/wildwest_refine) +"cM" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/largecrate, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"cN" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/carpet/green, +/area/awaymission/wildwest/wildwest_mines) +"cQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"cS" = ( +/obj/structure/cult/pylon, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/wildwest/wildwest_vault) +"cT" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 8 + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"cV" = ( +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroid2" + }, +/area/awaymission/wildwest/wildwest_mines) +"db" = ( +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroid12" + }, +/area/awaymission/wildwest/wildwest_mines) +"dc" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"de" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"dk" = ( +/obj/structure/girder, +/obj/item/stack/sheet/mineral/sandstone, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"dn" = ( +/obj/effect/mine/gas/plasma, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"ds" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"dt" = ( +/obj/effect/decal/cleanable/blood/writing, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"dC" = ( +/obj/structure/shuttle/engine/router, +/obj/effect/landmark/damageturf, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"dG" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"dI" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"dL" = ( +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"dM" = ( +/obj/structure/table/holotable/wood, +/obj/item/fan, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"dN" = ( +/obj/structure/table/holotable/wood, +/obj/item/book/random, +/obj/item/clothing/glasses/regular{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"dS" = ( +/obj/structure/girder/displaced, +/obj/item/stack/sheet/plasteel, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"dY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/hemostat{ + pixel_x = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/awaymission/wildwest/wildwest_mines) +"eb" = ( +/obj/structure/table, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/machinery/door_control/shutter{ + id = "ww_window"; + pixel_x = -9 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"ec" = ( +/obj/item/stack/sheet/cardboard, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"ee" = ( +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroid5" + }, +/area/awaymission/wildwest/wildwest_mines) +"eh" = ( +/turf/simulated/floor/plating/ironsand{ + icon_state = "ironsand9" + }, +/area/awaymission/wildwest/wildwest_mines) +"em" = ( +/turf/simulated/mineral/ancient, +/area/awaymission/wildwest/wildwest_mines) +"en" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/carpet/purple, +/area/awaymission/wildwest/wildwest_mines) +"er" = ( +/obj/effect/mine/dnascramble, +/obj/item/stack/sheet/mineral/sandstone, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"et" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/awaymission/wildwest/wildwest_refine) +"ey" = ( +/mob/living/simple_animal/hostile/syndicate/ranged, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"eB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"eH" = ( +/obj/structure/table/holotable/wood, +/obj/item/kitchen/utensil/spoon, +/obj/item/kitchen/utensil/fork{ + pixel_x = 6 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"eK" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"eL" = ( +/obj/structure/table, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"eN" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"eP" = ( +/obj/structure/sink/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "barber" + }, +/area/awaymission/wildwest/wildwest_mines) +"eT" = ( +/obj/effect/step_trigger/message{ + message = "Древние циклопические стены, ужасающие петроглифы и сладковатый запах затхлости... Стоит скорее повернуть назад, пока этот проклятый зов окончательно не захватил ваш разум!" + }, +/obj/effect/step_trigger/sound_effect{ + happens_once = 1; + sound = "modular_ss220/aesthetics_sounds/sound/creepy/many_whisper2.ogg"; + triggerer_only = 1 + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"eX" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"eZ" = ( +/obj/item/broken_bottle, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"fd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/constructable_frame, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/item/stock_parts/matter_bin, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"ff" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"fm" = ( +/obj/structure/closet/cabinet, +/obj/item/stack/spacecash/c200, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"fr" = ( +/mob/living/simple_animal/hostile/creature, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_mines) +"ft" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"fu" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"fw" = ( +/obj/machinery/door/window{ + dir = 8 + }, +/obj/effect/landmark/awaystart, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"fx" = ( +/obj/machinery/gateway/centeraway{ + calibrated = 0 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/wildwest/wildwest_vault) +"fy" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"fz" = ( +/obj/item/shard, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"fB" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/carpet/orange, +/area/awaymission/wildwest/wildwest_mines) +"fD" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"fM" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroid5" + }, +/area/awaymission/wildwest/wildwest_mines) +"fP" = ( +/obj/structure/flora/ash/tall_shroom, +/mob/living/simple_animal/hostile/syndicate/ranged, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"fQ" = ( +/obj/structure/table_frame, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"fT" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"fV" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"fZ" = ( +/obj/structure/girder/displaced, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"ge" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"gk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"go" = ( +/obj/structure/reagent_dispensers/fueltank/chem{ + pixel_y = -30 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"gq" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"gs" = ( +/obj/item/flag/cult, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"gu" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"gz" = ( +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_mines) +"gB" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"gE" = ( +/obj/effect/turf_decal/caution{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellowcorners" + }, +/area/awaymission/wildwest/wildwest_refine) +"gI" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"gK" = ( +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"gM" = ( +/turf/simulated/floor/plating/ironsand{ + icon_state = "ironsand12" + }, +/area/awaymission/wildwest/wildwest_mines) +"gN" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"gO" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 5 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile/cracked, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"gQ" = ( +/obj/structure/table, +/obj/item/analyzer, +/obj/item/analyzer{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"gX" = ( +/obj/structure/marker_beacon/dock_marker, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"hd" = ( +/obj/effect/turf_decal/bot, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"hg" = ( +/obj/effect/turf_decal/box, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"hi" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"hk" = ( +/turf/simulated/wall/mineral/sandstone, +/area/awaymission/wildwest/wildwest_mines) +"hl" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"hp" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"hs" = ( +/obj/structure/closet/cabinet, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"hx" = ( +/obj/structure/table/holotable/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/flashlight/lamp{ + pixel_x = 9; + pixel_y = 6 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"hB" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"hI" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"hM" = ( +/turf/simulated/floor/plating/ironsand{ + icon_state = "ironsand3" + }, +/area/awaymission/wildwest/wildwest_mines) +"hN" = ( +/obj/structure/table, +/obj/item/megaphone, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/item/reagent_containers/food/drinks/coffee, +/obj/item/folder/yellow{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"hR" = ( +/obj/structure/closet{ + icon_state = "mining" + }, +/obj/item/storage/belt/mining, +/obj/item/clothing/shoes/workboots/mining, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"hU" = ( +/obj/structure/curtain/black, +/obj/effect/mine/dnascramble, +/turf/simulated/floor/carpet/purple, +/area/awaymission/wildwest/wildwest_mines) +"hW" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet{ + icon_state = "syndicate" + }, +/obj/item/storage/belt/military, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"hY" = ( +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"ib" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"ic" = ( +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/bot_red, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"it" = ( +/turf/simulated/wall/mineral/plastitanium/nodiagonal, +/area/awaymission/wildwest/wildwest_refine) +"iu" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 9 + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"iy" = ( +/obj/machinery/door_control/shutter/north{ + id = "ww_door_ext" + }, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"iB" = ( +/obj/structure/closet, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"iD" = ( +/obj/structure/marker_beacon/dock_marker, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"iE" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"iG" = ( +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"iI" = ( +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"iJ" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"iL" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/awaymission/wildwest/wildwest_refine) +"iS" = ( +/turf/simulated/wall/indestructible/necropolis, +/area/awaymission/wildwest/wildwest_vault) +"iT" = ( +/obj/effect/turf_decal/bot_red, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"iW" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"iY" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"iZ" = ( +/obj/effect/step_trigger/message{ + message = "Вы ловите себя на мысли, что ваши ноги начали двигаться в такт хаотичному ритму зова!" + }, +/obj/effect/step_trigger/sound_effect{ + happens_once = 1; + sound = "modular_ss220/aesthetics_sounds/sound/creepy/many_whisper2.ogg"; + triggerer_only = 1 + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"jb" = ( +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroid10" + }, +/area/awaymission/wildwest/wildwest_mines) +"jc" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"je" = ( +/obj/item/stack/sheet/plasteel, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/awaymission/wildwest/wildwest_refine) +"jg" = ( +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"ji" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"jj" = ( +/obj/item/stack/tile/plasteel, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"jl" = ( +/obj/effect/mine/dnascramble, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"js" = ( +/turf/simulated/floor{ + icon_state = "necro3" + }, +/area/awaymission/wildwest/wildwest_vault) +"jy" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/clothing/head/welding{ + layer = 8 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"jB" = ( +/obj/machinery/mass_driver{ + dir = 4; + id_tag = "toxinsdriver" + }, +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 8 + }, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"jC" = ( +/turf/simulated/wall/mineral/plastitanium, +/area/awaymission/wildwest/wildwest_refine) +"jM" = ( +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"jP" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"jR" = ( +/obj/structure/table, +/obj/item/t_scanner, +/obj/item/wrench, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"jV" = ( +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"jW" = ( +/turf/simulated/floor/carpet/green, +/area/awaymission/wildwest/wildwest_mines) +"jX" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"kf" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"kg" = ( +/obj/structure/table/holotable/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/deck/cards/tiny, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"ki" = ( +/obj/item/stack/tile/wood, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"kk" = ( +/obj/machinery/power/port_gen/pacman, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"kn" = ( +/obj/structure/table, +/obj/item/trash/tray, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"kt" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"ku" = ( +/obj/item/cultivator/rake, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"kx" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/carpet/orange, +/area/awaymission/wildwest/wildwest_mines) +"kA" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"kE" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"kJ" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"kL" = ( +/turf/simulated/wall/indestructible/opsglass, +/area/awaymission/wildwest/wildwest_refine) +"kO" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"kQ" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroid7" + }, +/area/awaymission/wildwest/wildwest_mines) +"kR" = ( +/obj/structure/flora/rock, +/mob/living/simple_animal/hostile/syndicate/ranged/orion{ + name = "Syndicate Operative" + }, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"kS" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"kT" = ( +/obj/structure/closet/cabinet, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/green, +/area/awaymission/wildwest/wildwest_mines) +"kV" = ( +/obj/effect/mine/dnascramble, +/obj/structure/sign/poster/contraband/random/north, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroid9" + }, +/area/awaymission/wildwest/wildwest_mines) +"ld" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/mine/dnascramble, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"lg" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/cardboard, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"lh" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"ll" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5; + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8; + pixel_y = 1 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"ln" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"lo" = ( +/turf/simulated/floor/carpet/purple, +/area/awaymission/wildwest/wildwest_mines) +"lp" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroid2" + }, +/area/awaymission/wildwest/wildwest_mines) +"lr" = ( +/obj/structure/computerframe{ + dir = 1 + }, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"ls" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"lt" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 9 + }, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_mines) +"lv" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 5 + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"lw" = ( +/mob/living/simple_animal/hostile/faithless{ + wander = 0 + }, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"lD" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 5 + }, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_mines) +"lF" = ( +/obj/machinery/optable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/item/circular_saw, +/obj/item/cautery, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/awaymission/wildwest/wildwest_mines) +"lJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"lL" = ( +/obj/structure/fans/tiny, +/obj/effect/decal/warning_stripes/south, +/obj/machinery/door/poddoor/multi_tile/three_tile_ver{ + id_tag = "ww_pod" + }, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"lM" = ( +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"lN" = ( +/obj/effect/turf_decal/caution/stand_clear, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"lR" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/carpet/green, +/area/awaymission/wildwest/wildwest_mines) +"lX" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_y = 9 + }, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"lY" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"md" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"mg" = ( +/turf/simulated/floor/plating/airless, +/area/space) +"mm" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/landmark/damageturf, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"mn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/awaymission/wildwest/wildwest_mines) +"mr" = ( +/obj/structure/marker_beacon/dock_marker, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"mw" = ( +/obj/structure/table/holotable/wood, +/obj/item/seeds/corn, +/obj/item/seeds/corn{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/seeds/corn{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"my" = ( +/obj/structure/chair/comfy{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"mz" = ( +/obj/structure/chair/comfy/shuttle, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"mJ" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/delivery, +/obj/machinery/mineral/mint, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"mL" = ( +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 1 + }, +/obj/item/flag/syndi, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"mM" = ( +/obj/effect/mine/dnascramble, +/obj/item/storage/firstaid/brute/empty, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"mS" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"mU" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"mW" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"nf" = ( +/mob/living/simple_animal/hostile/syndicate/ranged, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"nh" = ( +/obj/structure/table/holotable/wood, +/obj/item/ashtray/glass, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 6 + }, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"ni" = ( +/obj/structure/closet{ + icon_state = "syndicate" + }, +/obj/item/clothing/mask/balaclava, +/obj/machinery/light/directional/north, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"nn" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"nt" = ( +/obj/structure/computerframe, +/obj/item/shard{ + icon_state = "small"; + pixel_x = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"nA" = ( +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/awaymission/wildwest/wildwest_refine) +"nC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/awaymission/wildwest/wildwest_refine) +"nE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"nF" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 5 + }, +/obj/structure/stone_tile/slab/cracked{ + dir = 9 + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"nK" = ( +/turf/simulated/mineral/ancient, +/area/awaymission/wildwest/wildwest_vault) +"nL" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"nQ" = ( +/obj/structure/barricade/sandbags, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"nT" = ( +/mob/living/simple_animal/hostile/faithless{ + wander = 0 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "bcircuitoff" + }, +/area/awaymission/wildwest/wildwest_vault) +"nV" = ( +/turf/simulated/floor/carpet/royalblack, +/area/awaymission/wildwest/wildwest_vault) +"nW" = ( +/obj/item/stack/rods, +/turf/space, +/area/space) +"nX" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/largecrate, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"oe" = ( +/obj/machinery/hydroponics/soil, +/obj/structure/flora/corn_stalk{ + anchored = 1; + pixel_y = 15 + }, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"oi" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"oj" = ( +/obj/item/stack/rods{ + amount = 4 + }, +/turf/space, +/area/space) +"ok" = ( +/obj/item/storage/bag/trash{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/storage/bag/trash{ + pixel_x = -7 + }, +/obj/item/storage/bag/trash{ + pixel_x = -2 + }, +/obj/item/storage/bag/trash{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"om" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/tile/wood, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"on" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"oy" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"oC" = ( +/obj/structure/table, +/obj/effect/decal/warning_stripes/northwest, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/machinery/door_control/shutter{ + id = "ww_pod"; + pixel_x = 7; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"oF" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"oH" = ( +/obj/effect/step_trigger/sound_effect{ + happens_once = 1; + sound = "sound/hallucinations/i_see_you1.ogg"; + triggerer_only = 1 + }, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"oK" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/turf/simulated/floor/carpet/orange, +/area/awaymission/wildwest/wildwest_mines) +"oL" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"oO" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"oP" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor{ + icon_state = "necro1" + }, +/area/awaymission/wildwest/wildwest_vault) +"oR" = ( +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/soda, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = -7 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"pa" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"pb" = ( +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"pg" = ( +/obj/structure/closet{ + icon_state = "syndicate" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"pj" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"ps" = ( +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/glass/rag, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/food/drinks/drinkingglass/soda{ + pixel_x = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/soda{ + pixel_x = 11; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"pF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"pG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"pH" = ( +/obj/structure/mineral_door/wood, +/obj/structure/barricade/wooden/crude, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"pK" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/door_control/shutter/south{ + id = "ww_hang1" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"pL" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"pO" = ( +/obj/effect/landmark/burnturf, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"pQ" = ( +/obj/machinery/computer{ + dir = 8; + icon_keyboard = "syndie_key"; + icon_screen = "syndinavigation" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"pR" = ( +/obj/item/kirbyplants, +/obj/effect/mine/dnascramble, +/turf/simulated/floor/carpet/green, +/area/awaymission/wildwest/wildwest_mines) +"pS" = ( +/obj/structure/curtain/medical, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/wildwest/wildwest_mines) +"qb" = ( +/obj/structure/closet/walllocker/emerglocker/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"qe" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"qi" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"qn" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/curtain/medical, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"qq" = ( +/obj/structure/computerframe{ + dir = 8 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_y = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"qw" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/corn, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"qz" = ( +/obj/structure/closet{ + icon_state = "mining" + }, +/obj/item/mining_scanner, +/obj/item/clothing/under/plasmaman/mining, +/obj/item/clothing/suit/jacket/miningbomber, +/obj/item/storage/backpack/industrial, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"qE" = ( +/obj/structure/girder/reinforced, +/obj/item/stack/sheet/plasteel, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"qH" = ( +/obj/effect/turf_decal/delivery/white, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"qJ" = ( +/obj/machinery/door/window{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"qM" = ( +/obj/machinery/economy/vending/cola/free, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"qN" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"qO" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"qR" = ( +/obj/item/trash/tastybread{ + pixel_y = 12 + }, +/obj/item/trash/raisins, +/obj/item/circuitboard/biogenerator, +/obj/item/stack/rods, +/obj/item/broken_bottle, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"qW" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"qZ" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"ri" = ( +/obj/effect/step_trigger/sound_effect{ + happens_once = 1; + sound = "sound/hallucinations/behind_you1.ogg"; + triggerer_only = 1 + }, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"rl" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/black, +/obj/item/storage/box/lights/mixed, +/obj/item/crowbar/engineering, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"rn" = ( +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"rp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"rs" = ( +/obj/effect/gibspawner, +/turf/simulated/floor{ + icon_state = "necro1" + }, +/area/awaymission/wildwest/wildwest_vault) +"rt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"rw" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"rx" = ( +/obj/machinery/constructable_frame, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"rA" = ( +/obj/structure/railing, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"rF" = ( +/obj/effect/mine/dnascramble, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "barber" + }, +/area/awaymission/wildwest/wildwest_mines) +"rM" = ( +/obj/effect/decal/cleanable/glass, +/obj/structure/grille/broken, +/obj/item/stack/rods, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"rN" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/simulated/floor/carpet/green, +/area/awaymission/wildwest/wildwest_mines) +"rR" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility{ + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"rU" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"sa" = ( +/obj/item/shard{ + icon_state = "small"; + pixel_x = 10 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"sc" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"sg" = ( +/obj/structure/table/glass, +/obj/item/clothing/accessory/stethoscope, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"sq" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"sr" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"sw" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"sy" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/simulated/floor/carpet/orange, +/area/awaymission/wildwest/wildwest_mines) +"sz" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"sD" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/stone_tile/slab/cracked{ + dir = 5 + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"sE" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"sF" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + icon_state = "burst_l" + }, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"sG" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"sH" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/head/soft, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"sZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"th" = ( +/obj/effect/step_trigger/sound_effect{ + happens_once = 1; + sound = "sound/hallucinations/over_here1.ogg"; + triggerer_only = 1 + }, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"to" = ( +/obj/effect/mine/dnascramble, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"tp" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"tr" = ( +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"tv" = ( +/turf/simulated/wall/indestructible/rock/mineral, +/area/awaymission/wildwest/wildwest_mines) +"ty" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet{ + icon_state = "syndicate" + }, +/obj/item/gun/projectile/automatic/pistol, +/obj/item/ammo_box/magazine/m10mm, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"tz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"tB" = ( +/obj/machinery/economy/vending/snack/free, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"tH" = ( +/obj/item/broken_bottle, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"tM" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"tP" = ( +/obj/structure/table/holotable/wood, +/obj/item/book/random, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"tQ" = ( +/obj/structure/curtain/black, +/obj/effect/mine/gas/plasma, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"tW" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"tX" = ( +/obj/machinery/light/small/directional/east, +/mob/living/simple_animal/hostile/syndicate/melee, +/turf/simulated/floor/carpet/green, +/area/awaymission/wildwest/wildwest_mines) +"tZ" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/wildwest/wildwest_vault) +"uc" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"ud" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/clothing/suit/hooded/cultrobes, +/obj/item/trash/candle{ + pixel_x = 9; + pixel_y = 1 + }, +/obj/item/clothing/suit/hooded/cultrobes/cult_shield, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"uk" = ( +/mob/living/simple_animal/hostile/syndicate/ranged, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"ul" = ( +/obj/structure/rack, +/obj/item/flashlight/seclite, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"um" = ( +/turf/simulated/floor{ + icon_state = "necro1" + }, +/area/awaymission/wildwest/wildwest_vault) +"ur" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"ut" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor{ + icon_state = "necro2" + }, +/area/awaymission/wildwest/wildwest_vault) +"uv" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/wildwest/wildwest_mines) +"uw" = ( +/obj/effect/mine/dnascramble, +/obj/item/gun/energy/kinetic_accelerator, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"uy" = ( +/obj/structure/closet{ + icon_state = "mining" + }, +/obj/item/mining_scanner, +/obj/item/clothing/suit/jacket/miningbomber, +/obj/item/clothing/shoes/workboots/mining, +/obj/item/storage/backpack/industrial, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"uC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + initialize_directions = 10 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"uF" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"uN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"uO" = ( +/obj/effect/turf_decal/box, +/obj/structure/mecha_wreckage/ripley, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"uR" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/wall/mineral/plastitanium, +/area/awaymission/wildwest/wildwest_refine) +"uS" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"uT" = ( +/obj/item/bikehorn/rubberducky, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"vc" = ( +/obj/structure/curtain/medical, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"vi" = ( +/mob/living/simple_animal/hostile/syndicate/ranged/orion{ + name = "Syndicate Operative" + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"vk" = ( +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"vq" = ( +/obj/effect/gibspawner, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"vr" = ( +/turf/simulated/floor/plating/asteroid/airless, +/area/awaymission/wildwest/wildwest_mines) +"vu" = ( +/obj/item/broken_device, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"vz" = ( +/obj/structure/table/glass, +/obj/item/storage/box/syringes, +/obj/item/storage/belt/medical, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"vA" = ( +/mob/living/simple_animal/hostile/illusion, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"vD" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"vE" = ( +/obj/structure/table/holotable/wood, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"vF" = ( +/obj/machinery/constructable_frame, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"vJ" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/carpet/orange, +/area/awaymission/wildwest/wildwest_mines) +"vL" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/snacks/syndicake, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"wh" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"wi" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/turf/simulated/wall/mineral/sandstone, +/area/awaymission/wildwest/wildwest_mines) +"wk" = ( +/obj/item/reagent_containers/food/drinks/oilcan, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"wp" = ( +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"ws" = ( +/obj/structure/sink/puddle, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"wz" = ( +/obj/structure/closet/cabinet, +/obj/item/stack/spacecash/c50, +/turf/simulated/floor/carpet/purple, +/area/awaymission/wildwest/wildwest_mines) +"wA" = ( +/obj/machinery/gateway, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/wildwest/wildwest_vault) +"wB" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/syndicate/melee/autogib{ + name = "Syndicate Operative" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"wD" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"wE" = ( +/obj/structure/table/holotable/wood, +/obj/item/seeds/eggplant, +/obj/item/seeds/garlic{ + pixel_x = 3 + }, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"wF" = ( +/obj/structure/curtain/medical, +/obj/effect/mine/dnascramble, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"wK" = ( +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"wR" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"wU" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"wX" = ( +/obj/structure/barricade/sandbags, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"xa" = ( +/obj/effect/decal/cleanable/ants, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"xb" = ( +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"xc" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"xd" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"xf" = ( +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"xj" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"xk" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/carpet/cyan, +/area/awaymission/wildwest/wildwest_mines) +"xm" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/carpet/cyan, +/area/awaymission/wildwest/wildwest_mines) +"xo" = ( +/obj/structure/closet/cabinet, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/green, +/area/awaymission/wildwest/wildwest_mines) +"xp" = ( +/obj/structure/girder/displaced, +/turf/space, +/area/space) +"xq" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/structure/marker_beacon/dock_marker, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"xr" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"xw" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/item/hand_labeler{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"xy" = ( +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroid9" + }, +/area/awaymission/wildwest/wildwest_mines) +"xB" = ( +/obj/effect/landmark/damageturf, +/obj/item/stack/tile/plasteel, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"xE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidplating" + }, +/area/awaymission/wildwest/wildwest_mines) +"xI" = ( +/turf/simulated/wall/indestructible/cult, +/area/awaymission/wildwest/wildwest_vault) +"xL" = ( +/obj/item/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"xM" = ( +/obj/machinery/door/airlock/vault{ + locked = 1 + }, +/turf/simulated/floor{ + icon_state = "necro1" + }, +/area/awaymission/wildwest/wildwest_vault) +"xT" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"yi" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"yt" = ( +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroid4" + }, +/area/awaymission/wildwest/wildwest_mines) +"yH" = ( +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/food/drinks/cans/beer, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"yK" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"yP" = ( +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/soda{ + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"yS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/FixOVein, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/wildwest/wildwest_mines) +"yT" = ( +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"yU" = ( +/turf/simulated/floor/carpet/cyan, +/area/awaymission/wildwest/wildwest_mines) +"za" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/awaymission/wildwest/wildwest_refine) +"zd" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"zn" = ( +/obj/structure/table/reinforced, +/obj/item/toy/figure/crew/syndie, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"zt" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"zu" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"zC" = ( +/obj/effect/landmark/awaystart, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"zD" = ( +/obj/structure/table, +/obj/item/clothing/head/welding{ + layer = 8 + }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"zG" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"zL" = ( +/obj/effect/step_trigger/sound_effect{ + happens_once = 1; + sound = "modular_ss220/aesthetics_sounds/sound/creepy/many_whisper1.ogg"; + triggerer_only = 1 + }, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"zO" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/orange, +/area/awaymission/wildwest/wildwest_mines) +"zS" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"zU" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"zV" = ( +/obj/effect/decal/cleanable/ants, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"zY" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/simulated/floor/carpet/purple, +/area/awaymission/wildwest/wildwest_mines) +"Aa" = ( +/obj/structure/table/holotable/wood, +/obj/item/clothing/glasses/monocle, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"Ab" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/delivery, +/obj/structure/largecrate, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Ap" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"As" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "ww_hang2" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"Au" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Az" = ( +/obj/structure/bed/roller, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"AD" = ( +/obj/effect/rune/narsie{ + used = 1 + }, +/obj/structure/fluff/divine/conduit{ + icon_state = "convertaltar-red" + }, +/obj/item/kitchen/knife/ritual, +/obj/item/organ/internal/heart, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"AG" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"AI" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"AJ" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"AK" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 5 + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"AM" = ( +/obj/effect/mob_spawn/human/corpse/skeleton, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"AQ" = ( +/obj/item/trash/chips, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"AS" = ( +/obj/machinery/atmospherics/portable/canister/air{ + filled = 0.1 + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"AT" = ( +/obj/structure/table/holotable/wood, +/obj/machinery/chem_dispenser/soda{ + pixel_y = 8 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"AU" = ( +/obj/effect/step_trigger/sound_effect{ + happens_once = 1; + sound = "sound/hallucinations/turn_around1.ogg"; + triggerer_only = 1 + }, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"AV" = ( +/obj/effect/step_trigger/sound_effect{ + happens_once = 1; + sound = "modular_ss220/aesthetics_sounds/sound/creepy/scary_whisper1.ogg"; + triggerer_only = 1 + }, +/obj/effect/step_trigger/message{ + message = "Этот камень как будто не на своем месте." + }, +/obj/effect/decal/cleanable/blood/writing{ + dir = 8 + }, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_mines) +"AX" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"AY" = ( +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"AZ" = ( +/turf/simulated/floor{ + icon_state = "cultdamage6" + }, +/area/awaymission/wildwest/wildwest_vault) +"Bb" = ( +/turf/simulated/floor{ + icon_state = "cultdamage3" + }, +/area/awaymission/wildwest/wildwest_vault) +"Bd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall/mineral/sandstone, +/area/awaymission/wildwest/wildwest_mines) +"Be" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Bf" = ( +/obj/structure/table/holotable/wood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"Bj" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 10 + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"Bm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Bo" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Bp" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/portable/canister, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"Br" = ( +/obj/structure/table/holotable/wood, +/obj/item/kitchen/utensil/fork{ + pixel_x = 6 + }, +/obj/item/kitchen/utensil/spoon, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Bt" = ( +/obj/structure/cult/pylon, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_mines) +"BD" = ( +/obj/structure/closet/secure_closet/medical3, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/awaymission/wildwest/wildwest_mines) +"BH" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"BJ" = ( +/turf/simulated/floor/bluegrid{ + icon_state = "bcircuitoff" + }, +/area/awaymission/wildwest/wildwest_vault) +"BW" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/wildwest/wildwest_vault) +"Cb" = ( +/obj/machinery/washing_machine, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "barber" + }, +/area/awaymission/wildwest/wildwest_mines) +"Cm" = ( +/obj/effect/step_trigger/sound_effect{ + happens_once = 1; + sound = "modular_ss220/aesthetics_sounds/sound/creepy/many_whisper2.ogg"; + triggerer_only = 1 + }, +/turf/simulated/floor{ + icon_state = "cultdamage" + }, +/area/awaymission/wildwest/wildwest_vault) +"Cw" = ( +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/soda{ + pixel_x = 11 + }, +/obj/structure/sign/poster/official/random/south, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Cx" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/wildwest/wildwest_mines) +"CB" = ( +/obj/structure/closet, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"CD" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"CE" = ( +/obj/machinery/door/airlock/vault{ + locked = 1 + }, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vaultdoors) +"CF" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/space) +"CG" = ( +/turf/simulated/floor/carpet/orange, +/area/awaymission/wildwest/wildwest_mines) +"CW" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"CZ" = ( +/obj/structure/table/holotable/wood, +/obj/item/desk_bell{ + anchored = 1 + }, +/obj/machinery/door/window, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Da" = ( +/obj/structure/grille/broken, +/obj/item/shard{ + icon_state = "small"; + pixel_x = 10; + pixel_y = 9 + }, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"De" = ( +/turf/simulated/floor{ + icon_state = "cultdamage" + }, +/area/awaymission/wildwest/wildwest_mines) +"Di" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Dj" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/door_control/shutter/north{ + id = "ww_hang1" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Do" = ( +/obj/structure/sign/poster/contraband/random/south, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"Du" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"Dv" = ( +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Dw" = ( +/turf/simulated/floor/plating/ironsand{ + icon_state = "ironsand4" + }, +/area/awaymission/wildwest/wildwest_mines) +"Dy" = ( +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"DA" = ( +/obj/structure/table/holotable/wood, +/obj/item/ashtray/glass{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"DB" = ( +/mob/living/simple_animal/hostile/syndicate/ranged, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"DF" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/crate/trashcart, +/obj/item/fireaxe, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"DG" = ( +/obj/structure/curtain/black, +/obj/effect/mine/dnascramble, +/turf/simulated/floor/carpet/cyan, +/area/awaymission/wildwest/wildwest_mines) +"DI" = ( +/obj/structure/chair/comfy/black, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"DL" = ( +/obj/structure/table/holotable/wood, +/obj/item/lighter/zippo, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/obj/item/storage/fancy/cigarettes/cigpack_uplift, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"DO" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"DQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"DT" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidplating" + }, +/area/awaymission/wildwest/wildwest_mines) +"DU" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"DW" = ( +/obj/item/stack/tile/wood, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"DY" = ( +/obj/item/stack/sheet/plasteel, +/turf/space, +/area/space) +"Eb" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"Ee" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"Eg" = ( +/obj/structure/barricade/sandbags, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Eq" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/crate/engineering, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Er" = ( +/obj/structure/chair/comfy{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Eu" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"Ez" = ( +/obj/structure/closet{ + icon_state = "mining" + }, +/obj/item/clothing/under/plasmaman/mining, +/obj/item/clothing/suit/space/hardsuit/mining, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"ED" = ( +/obj/structure/mineral_door/wood, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"EG" = ( +/obj/effect/mob_spawn/human/corpse/miner, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"EH" = ( +/mob/living/simple_animal/hostile/creature, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"EI" = ( +/obj/structure/stone_tile/surrounding/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/slab/cracked{ + dir = 5 + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"EL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "barber" + }, +/area/awaymission/wildwest/wildwest_mines) +"ER" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"ES" = ( +/obj/machinery/door/poddoor/shutters{ + id_tag = "ww_window" + }, +/turf/simulated/wall/indestructible/fakeglass, +/area/awaymission/wildwest/wildwest_refine) +"ET" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/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" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/awaymission/wildwest/wildwest_mines) +"EX" = ( +/obj/item/chair/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"EY" = ( +/obj/structure/railing/corner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Fb" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Ff" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"Fn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Fp" = ( +/obj/structure/table, +/obj/effect/decal/warning_stripes/southwest, +/obj/item/storage/toolbox/electrical{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"Fs" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Ft" = ( +/obj/item/trash/chips{ + pixel_x = 12 + }, +/obj/item/trash/cheesie, +/obj/item/circuitboard/aiupload_broken, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"FB" = ( +/obj/machinery/constructable_frame, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"FH" = ( +/obj/structure/table/holotable/wood, +/obj/machinery/kitchen_machine/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"FI" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/space) +"FL" = ( +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/glass/beaker/waterbottle, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"FS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"FU" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Gb" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"Gc" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"Gf" = ( +/obj/structure/girder, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"Go" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/ore_box, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"Gs" = ( +/obj/structure/table/holotable/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/dice/d6, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"Gt" = ( +/obj/structure/computerframe{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Gv" = ( +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/purple, +/area/awaymission/wildwest/wildwest_mines) +"Gy" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"Gz" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"GC" = ( +/turf/simulated/floor/plating/ironsand{ + icon_state = "ironsand6" + }, +/area/awaymission/wildwest/wildwest_mines) +"GF" = ( +/obj/structure/table, +/obj/item/kitchen/knife, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"GG" = ( +/obj/structure/rack, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/rack, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"GI" = ( +/obj/effect/mine/gas/plasma, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/closet/cardboard, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"GK" = ( +/obj/item/stack/sheet/mineral/sandstone, +/obj/effect/mine/dnascramble, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"GM" = ( +/obj/machinery/economy/vending/coffee/free, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"GP" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"GQ" = ( +/obj/item/kirbyplants, +/obj/effect/mine/dnascramble, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"GS" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/mine/dnascramble, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Hg" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/tastybread, +/obj/item/trash/tastybread, +/obj/item/trash/tastybread, +/obj/item/trash/tastybread, +/obj/item/trash/chips, +/obj/item/trash/chips, +/obj/item/trash/can, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"Hh" = ( +/obj/structure/table/holotable/wood, +/obj/machinery/chem_dispenser/beer{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Hj" = ( +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/food/snacks/mint, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Hm" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Hn" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"Hu" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/purple, +/area/awaymission/wildwest/wildwest_mines) +"Hw" = ( +/obj/structure/marker_beacon/dock_marker, +/turf/simulated/floor/plating/airless, +/area/space) +"Hx" = ( +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"HE" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/wildwest/wildwest_vault) +"HF" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/obj/structure/bed/roller, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"HG" = ( +/obj/effect/mine/dnascramble, +/obj/item/trash/chips, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"HI" = ( +/obj/structure/bookcase/random, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"HJ" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"HS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/mob/living/simple_animal/hostile/syndicate/ranged/orion{ + name = "Syndicate Operative" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"HT" = ( +/mob/living/simple_animal/hostile/syndicate/melee/autogib{ + name = "Syndicate Operative" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "barber" + }, +/area/awaymission/wildwest/wildwest_mines) +"HU" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/carpet/purple, +/area/awaymission/wildwest/wildwest_mines) +"Ie" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Ih" = ( +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"Ii" = ( +/obj/structure/curtain/black, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/green, +/area/awaymission/wildwest/wildwest_mines) +"Im" = ( +/obj/machinery/door_control/shutter/west, +/obj/structure/door_assembly/door_assembly_ext, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"In" = ( +/turf/simulated/floor{ + icon_state = "cultdamage" + }, +/area/awaymission/wildwest/wildwest_vault) +"Ip" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/north, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"Ir" = ( +/obj/effect/decal/warning_stripes/north, +/obj/item/stack/rods{ + amount = 4 + }, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"Ix" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/whetstone/cult, +/obj/item/trash/candle{ + pixel_y = 12 + }, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"Iy" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 9 + }, +/obj/structure/stone_tile/cracked, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"IB" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"IF" = ( +/obj/structure/marker_beacon/dock_marker, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/space) +"IH" = ( +/obj/structure/shuttle/engine/router, +/obj/structure/shuttle/engine/router, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"IL" = ( +/obj/structure/flora/rock/pile, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"IN" = ( +/obj/effect/turf_decal/bot_red, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"IS" = ( +/obj/structure/closet{ + icon_state = "syndicate" + }, +/obj/item/storage/backpack/duffel/syndie, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"IU" = ( +/obj/machinery/hydroponics/soil, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"IX" = ( +/obj/structure/closet/cabinet, +/obj/item/stack/spacecash/c100, +/turf/simulated/floor/carpet/orange, +/area/awaymission/wildwest/wildwest_mines) +"Jf" = ( +/obj/effect/decal/cleanable/shreds, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Jp" = ( +/turf/simulated/floor{ + icon_state = "cultdamage3" + }, +/area/awaymission/wildwest/wildwest_mines) +"Jt" = ( +/obj/structure/sink/directional/east, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Ju" = ( +/obj/item/shard{ + icon_state = "small" + }, +/turf/space, +/area/space) +"JI" = ( +/obj/structure/stone_tile/surrounding/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"JK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/wildwest/wildwest_mines) +"JN" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"JO" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/ore_box, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"JQ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"JR" = ( +/obj/structure/stone_tile/slab, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"JS" = ( +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"JU" = ( +/obj/structure/marker_beacon/dock_marker, +/turf/space, +/area/space) +"JV" = ( +/obj/machinery/light/small/directional/west, +/mob/living/simple_animal/hostile/syndicate/ranged, +/turf/simulated/floor/carpet/purple, +/area/awaymission/wildwest/wildwest_mines) +"Kb" = ( +/obj/structure/closet/cabinet, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Kk" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Kr" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Ku" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"KA" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/awaymission/wildwest/wildwest_mines) +"KJ" = ( +/obj/structure/window/plasmareinforced{ + color = "#FF0000" + }, +/obj/item/flag/syndi, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"KK" = ( +/obj/structure/barricade/sandbags, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"KL" = ( +/obj/effect/mine/dnascramble, +/obj/item/clothing/suit/jacket/miningbomber, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"KN" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"KO" = ( +/obj/structure/table/holotable/wood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"KR" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/wildwest/wildwest_refine) +"KV" = ( +/obj/effect/gibspawner, +/turf/simulated/floor{ + icon_state = "necro2" + }, +/area/awaymission/wildwest/wildwest_vault) +"KZ" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Lc" = ( +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"Lp" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"Lr" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_mines) +"Lv" = ( +/turf/space, +/area/space) +"LE" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"LG" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"LO" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/space) +"LP" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/turf/simulated/floor/carpet/cyan, +/area/awaymission/wildwest/wildwest_mines) +"LS" = ( +/obj/item/trash/tapetrash, +/obj/item/trash/raisins{ + pixel_y = 18 + }, +/obj/item/trash/raisins{ + pixel_x = -17; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"LT" = ( +/obj/structure/marker_beacon/dock_marker, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/space) +"LU" = ( +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroid8" + }, +/area/awaymission/wildwest/wildwest_mines) +"LV" = ( +/obj/effect/gateway, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"Mc" = ( +/obj/structure/closet/cabinet, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/spacecash/c50, +/turf/simulated/floor/carpet/orange, +/area/awaymission/wildwest/wildwest_mines) +"Md" = ( +/obj/machinery/computer{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Me" = ( +/obj/structure/table, +/obj/effect/decal/warning_stripes/west, +/obj/item/clothing/glasses/welding, +/obj/item/weldingtool, +/obj/item/storage/belt/utility, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"Mf" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"Mh" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/effect/landmark/damageturf, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"Mi" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Mk" = ( +/obj/effect/decal/cleanable/blood/old, +/mob/living/simple_animal/hostile/syndicate/ranged, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Mq" = ( +/obj/structure/falsewall/rock_ancient, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_mines) +"Mu" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/carpet/orange, +/area/awaymission/wildwest/wildwest_mines) +"Mv" = ( +/obj/structure/shuttle/engine/router, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"MD" = ( +/obj/structure/computerframe{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/awaymission/wildwest/wildwest_mines) +"MF" = ( +/obj/structure/curtain/black, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"MG" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"MI" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"MJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/dock_marker, +/turf/space, +/area/space) +"MK" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"MM" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/wall/mineral/plastitanium, +/area/awaymission/wildwest/wildwest_refine) +"MO" = ( +/mob/living/simple_animal/hostile/syndicate/melee, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/wildwest/wildwest_mines) +"MP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"Nd" = ( +/obj/item/chair/wood, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Ne" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/carpet/orange, +/area/awaymission/wildwest/wildwest_mines) +"Nf" = ( +/obj/effect/gibspawner, +/turf/simulated/floor{ + icon_state = "necro3" + }, +/area/awaymission/wildwest/wildwest_vault) +"Nh" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/wildwest/wildwest_vault) +"Ni" = ( +/obj/machinery/wish_granter_dark, +/turf/simulated/floor{ + icon_state = "necro3" + }, +/area/awaymission/wildwest/wildwest_vault) +"Nj" = ( +/obj/structure/table/glass, +/obj/item/handheld_defibrillator, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Nk" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "ww_window" + }, +/turf/simulated/wall/indestructible/fakeglass, +/area/awaymission/wildwest/wildwest_refine) +"Nq" = ( +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"Ns" = ( +/obj/structure/rack, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowfull" + }, +/area/awaymission/wildwest/wildwest_refine) +"Nt" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Nw" = ( +/obj/structure/fans/tiny, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"Nz" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/wildwest/wildwest_vault) +"NB" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"NC" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/turf/simulated/floor/carpet/purple, +/area/awaymission/wildwest/wildwest_mines) +"NH" = ( +/obj/structure/sign/poster/official/random/south, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"NJ" = ( +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/wildwest/wildwest_vault) +"NP" = ( +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"NR" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"NU" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"NY" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/gibspawner, +/turf/simulated/floor{ + icon_state = "necro1" + }, +/area/awaymission/wildwest/wildwest_vault) +"Od" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"Oh" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/wall/mineral/sandstone, +/area/awaymission/wildwest/wildwest_mines) +"Oi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mob_spawn/human/corpse/miner, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"Os" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"Ov" = ( +/obj/effect/step_trigger/message{ + message = "Вы ощущаете странный зловещий зов, что доносится из глубин пещеры..." + }, +/obj/effect/step_trigger/sound_effect{ + happens_once = 1; + sound = "modular_ss220/aesthetics_sounds/sound/creepy/many_whisper2.ogg"; + triggerer_only = 1 + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"Ow" = ( +/obj/structure/rack, +/obj/item/cultivator/rake, +/obj/item/shovel/spade, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"OF" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "ww_hang1" + }, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"OL" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "ww_hang2" + }, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"ON" = ( +/obj/effect/landmark/damageturf, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"OS" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/south, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"OT" = ( +/obj/structure/table_frame/wood, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"OV" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"OY" = ( +/obj/structure/chair/wood, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"OZ" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"Ph" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/ore_box, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Pl" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Pn" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Pt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Pz" = ( +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/food/snacks/mint, +/obj/item/kitchen/utensil/spoon, +/obj/item/kitchen/utensil/fork{ + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"PC" = ( +/obj/machinery/economy/slot_machine, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"PG" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"PK" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"PL" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"PM" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/cardboard, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"PO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"PT" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/wildwest/wildwest_vault) +"PU" = ( +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"PW" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Qc" = ( +/obj/machinery/iv_drip{ + pixel_y = -14 + }, +/obj/machinery/iv_drip{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Qe" = ( +/obj/structure/cult/pylon, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"Qj" = ( +/obj/structure/shuttle/engine/large{ + dir = 8 + }, +/turf/space, +/area/space) +"Ql" = ( +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/orange, +/area/awaymission/wildwest/wildwest_mines) +"Qn" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Qo" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"Qs" = ( +/obj/item/stack/tile/wood, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Qu" = ( +/obj/item/trash/spentcasing, +/obj/item/trash/sosjerky{ + pixel_x = 11 + }, +/obj/item/trash/can, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash, +/mob/living/simple_animal/hostile/syndicate/ranged/space/autogib, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidplating" + }, +/area/awaymission/wildwest/wildwest_mines) +"Qy" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/largecrate, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Qz" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"QB" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"QG" = ( +/obj/machinery/constructable_frame, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"QH" = ( +/turf/simulated/floor{ + icon_state = "cultdamage7" + }, +/area/awaymission/wildwest/wildwest_vault) +"QL" = ( +/obj/structure/table/glass, +/obj/item/bonesetter{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/bonegel{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/scalpel, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/awaymission/wildwest/wildwest_mines) +"QQ" = ( +/obj/effect/landmark/damageturf, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"QU" = ( +/obj/structure/closet/cabinet, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/purple, +/area/awaymission/wildwest/wildwest_mines) +"QW" = ( +/turf/simulated/wall/mineral/plastitanium/interior, +/area/awaymission/wildwest/wildwest_refine) +"QY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Re" = ( +/obj/machinery/photocopier, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Rm" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"Rs" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuitoff" + }, +/area/awaymission/wildwest/wildwest_vault) +"Rx" = ( +/obj/structure/table/holotable/wood, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"RA" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"RL" = ( +/obj/structure/fans/tiny, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"RO" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"RQ" = ( +/obj/structure/closet/crate/can, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"RY" = ( +/obj/structure/closet{ + icon_state = "syndicate" + }, +/obj/item/clothing/under/syndicate/tacticool, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"Sa" = ( +/obj/structure/chair/comfy/black, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"Sb" = ( +/obj/effect/mine/dnascramble, +/obj/item/stack/sheet/mineral/sandstone, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroid9" + }, +/area/awaymission/wildwest/wildwest_mines) +"Sf" = ( +/obj/machinery/computer{ + dir = 4; + icon_keyboard = "syndie_key"; + icon_screen = "syndinavigation" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"Sn" = ( +/obj/structure/closet{ + icon_state = "mining" + }, +/obj/item/mining_voucher, +/obj/item/clothing/under/plasmaman/mining, +/obj/item/clothing/shoes/workboots/mining, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Sq" = ( +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = -7 + }, +/obj/item/reagent_containers/food/drinks/cans/beer, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Sr" = ( +/mob/living/simple_animal/hostile/syndicate/ranged, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"Sw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"SD" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"SL" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"SO" = ( +/obj/effect/step_trigger/sound_effect{ + happens_once = 1; + sound = "sound/hallucinations/im_here1.ogg"; + triggerer_only = 1 + }, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"SR" = ( +/obj/structure/mineral_door/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"SU" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/closet/crate, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Tc" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"Tg" = ( +/obj/effect/mine/dnascramble, +/obj/structure/flora/rock, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"Ti" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"Tk" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Tl" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/o2{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Tm" = ( +/obj/item/chair/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"To" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"Tx" = ( +/obj/effect/mine/gas/plasma, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"TA" = ( +/obj/machinery/atmospherics/portable/canister/air{ + filled = 0.1 + }, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"TG" = ( +/obj/effect/decal/warning_stripes/north, +/obj/effect/landmark/damageturf, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"TH" = ( +/turf/simulated/floor{ + icon_state = "cultdamage2" + }, +/area/awaymission/wildwest/wildwest_vault) +"TI" = ( +/obj/item/stack/rods, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"TL" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/carpet/green, +/area/awaymission/wildwest/wildwest_mines) +"TN" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"TO" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"TQ" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"TS" = ( +/obj/machinery/mineral/ore_redemption, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_mines) +"TX" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/can, +/obj/item/trash/can, +/obj/item/trash/can, +/obj/item/trash/can, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"TZ" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"Ua" = ( +/obj/structure/closet{ + icon_state = "mining" + }, +/obj/item/clothing/under/plasmaman/mining, +/obj/item/clothing/shoes/workboots/mining, +/obj/item/storage/backpack/industrial, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Uf" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/turf/simulated/floor/carpet/green, +/area/awaymission/wildwest/wildwest_mines) +"Ui" = ( +/obj/structure/rack, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Uj" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Uk" = ( +/obj/structure/sink/directional/east, +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = -28 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Uq" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 16; + pixel_y = -10 + }, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"Ur" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"Uz" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"UB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mob_spawn/human/corpse/miner, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidplating" + }, +/area/awaymission/wildwest/wildwest_mines) +"UD" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "ww_hang2" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"UH" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/syndicate/ranged, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"UN" = ( +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 4 + }, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/fans/tiny/invisible, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"UV" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/awaymission/wildwest/wildwest_refine) +"UW" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"UX" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/poster/contraband/random/south, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"UZ" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/awaymission/wildwest/wildwest_refine) +"Vi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"Vj" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"Vv" = ( +/turf/simulated/floor{ + icon_state = "necro2" + }, +/area/awaymission/wildwest/wildwest_vault) +"VF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"VG" = ( +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/food/snacks/mint, +/obj/item/kitchen/utensil/fork, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"VJ" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"VO" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/awaymission/wildwest/wildwest_refine) +"VP" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"VT" = ( +/obj/structure/curtain/black, +/obj/effect/mine/dnascramble, +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"VU" = ( +/obj/structure/sign/poster/contraband/random/north, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"VV" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"VW" = ( +/obj/structure/table/holotable/wood, +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/soda{ + pixel_x = 6 + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"VZ" = ( +/obj/effect/mine/dnascramble, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroid2" + }, +/area/awaymission/wildwest/wildwest_mines) +"Wa" = ( +/obj/item/kirbyplants/dead, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/carpet/green, +/area/awaymission/wildwest/wildwest_mines) +"Wc" = ( +/obj/structure/disposalpipe/broken, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidplating" + }, +/area/awaymission/wildwest/wildwest_mines) +"Wk" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "150" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"Wq" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"Ws" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"WH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"WI" = ( +/turf/simulated/floor/plating/ironsand{ + icon_state = "ironsand13" + }, +/area/awaymission/wildwest/wildwest_mines) +"WJ" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) +"WK" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 8 + }, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_mines) +"WL" = ( +/obj/item/chair/wood{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/poster/official/random/east, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"WM" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"WS" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"WY" = ( +/obj/machinery/light/small/directional/north, +/obj/item/stack/tile/wood, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"Xe" = ( +/obj/structure/flora/rock/pile, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"Xn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Xr" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"Xt" = ( +/obj/effect/mine/dnascramble, +/obj/effect/mob_spawn/human/corpse/miner, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Xz" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"XE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/green, +/area/awaymission/wildwest/wildwest_mines) +"XF" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"XI" = ( +/obj/structure/computerframe{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"XN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"XQ" = ( +/obj/structure/fluff/divine/conduit{ + icon_state = "sacrificealtar-red" + }, +/obj/item/book_of_babel, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/awaymission/wildwest/wildwest_vault) +"XR" = ( +/mob/living/simple_animal/hostile/syndicate/ranged, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"XS" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"Yc" = ( +/obj/item/stack/sheet/plasteel, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"Ye" = ( +/obj/structure/table/holotable/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/spacecash/c200, +/obj/item/stack/spacecash/c50, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"Yh" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile/slab/cracked{ + dir = 9 + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"Yi" = ( +/obj/machinery/atmospherics/binary/valve{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"Ym" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"YB" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/mob_spawn/human/corpse/miner, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"YC" = ( +/turf/simulated/floor/carpet, +/area/awaymission/wildwest/wildwest_mines) +"YH" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"YI" = ( +/mob/living/simple_animal/hostile/syndicate/ranged/orion{ + name = "Syndicate Operative" + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"YJ" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/green, +/area/awaymission/wildwest/wildwest_mines) +"YK" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/sign/poster/contraband/random/north, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"YM" = ( +/obj/effect/mine/dnascramble, +/obj/effect/decal/cleanable/generic, +/obj/effect/mob_spawn/human/corpse/miner, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"YQ" = ( +/obj/structure/table_frame, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 16; + pixel_y = -10 + }, +/obj/item/shard, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/awaymission/wildwest/wildwest_mines) +"YT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"YW" = ( +/turf/simulated/floor/plating/ironsand{ + icon_state = "ironsand7" + }, +/area/awaymission/wildwest/wildwest_mines) +"YY" = ( +/obj/effect/turf_decal/arrows, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"Za" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"Zi" = ( +/mob/living/simple_animal/hostile/syndicate/melee/autogib{ + name = "Syndicate Operative" + }, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Zj" = ( +/obj/item/stack/rods, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/broken_bottle, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor" + }, +/area/awaymission/wildwest/wildwest_mines) +"Zk" = ( +/obj/structure/table_frame/wood, +/obj/structure/table_frame/wood, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Zm" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Zn" = ( +/obj/structure/healingfountain, +/turf/simulated/floor{ + icon_state = "necro1" + }, +/area/awaymission/wildwest/wildwest_vault) +"Zp" = ( +/obj/structure/table/holotable/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"Zq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "medium"; + pixel_y = 9 + }, +/obj/structure/grille/broken, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_mines) +"Zr" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/turf/simulated/floor, +/area/awaymission/wildwest/wildwest_refine) +"Zu" = ( +/obj/effect/decal/cleanable/blood/writing{ + dir = 1 + }, +/turf/simulated/floor/plating/ironsand, +/area/awaymission/wildwest/wildwest_mines) +"ZG" = ( +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"ZK" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/simulated/floor/plating/asteroid, +/area/awaymission/wildwest/wildwest_mines) +"ZL" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/carpet/red, +/area/awaymission/wildwest/wildwest_mines) +"ZO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair/comfy/shuttle, +/turf/simulated/floor/mineral/plastitanium/red, +/area/awaymission/wildwest/wildwest_refine) +"ZQ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/awaymission/wildwest/wildwest_refine) +"ZU" = ( +/obj/structure/mineral_door/wood, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/awaymission/wildwest/wildwest_mines) +"ZV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/awaymission/wildwest/wildwest_refine) +"ZW" = ( +/obj/structure/window/plasmareinforced{ + color = "#FF0000"; + dir = 4 + }, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plating/airless, +/area/awaymission/wildwest/wildwest_refine) + +(1,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(2,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(3,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(4,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(5,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(6,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(7,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(8,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(9,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(10,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(11,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +JU +nW +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Rm +Lv +Lv +MJ +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(12,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +MJ +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(13,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +JU +Lv +Lv +Lv +xp +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(14,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +DY +Lv +Rm +mg +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Rm +Lv +Lv +Lv +Lv +LO +LO +LO +Lv +Lv +Lv +Lv +nW +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(15,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +vr +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +nW +Lv +Lv +Lv +Lv +Lv +Lv +Qj +Lv +Lv +Lv +nW +Lv +Lv +DY +Lv +Lv +Lv +Lv +Lv +Rm +Lv +Lv +LO +LO +Hw +mg +Hw +LO +LO +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(16,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +em +vr +Lv +Lv +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Rm +Rm +Ju +Lv +Lv +jC +it +FI +mg +mg +FI +it +jC +Lv +Lv +mg +Rm +Lv +Lv +Lv +Lv +Lv +Rm +Rm +Lv +LT +mg +kL +kL +kL +mg +IF +Lv +Lv +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(17,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +em +em +em +em +em +em +Lv +Lv +Lv +vr +vr +vr +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +vr +em +Lv +Lv +DY +Rm +Lv +jC +it +UN +ZW +ZW +ZW +it +jC +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Rm +Lv +zt +QW +kL +Sf +kL +QW +QB +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(18,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +vr +vr +vr +vr +em +em +em +vr +vr +vr +vr +em +vr +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +vr +em +em +em +oj +xp +Rm +Lv +jC +Ip +Eu +Eu +Eu +Eu +OS +jC +Lv +Rm +DY +Lv +LO +LO +LO +Lv +Lv +Lv +Rm +Lv +zt +QW +vL +Eb +zn +QW +QB +Lv +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(19,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +vr +em +em +em +em +em +vr +em +em +em +em +em +em +vr +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +vr +em +Lv +Lv +Lv +Lv +vr +em +em +em +em +em +Lv +MJ +Lv +jC +Lc +Lc +Lc +Lc +Lc +LE +jC +Lv +MJ +Lv +nW +bu +mg +CF +Lv +Lv +MJ +Rm +Lv +zt +QW +zU +Lc +nL +QW +QB +Lv +Rm +MJ +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(20,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +Lv +Lv +Lv +Lv +vr +em +em +em +em +em +em +Rm +Lv +jC +Lc +Lc +Lc +Lc +Lc +LE +jC +Lv +Rm +Lv +Lv +bu +mg +CF +Lv +Lv +Lv +Rm +Lv +zt +QW +ZO +fw +FS +QW +QB +Lv +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(21,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +KR +KR +jC +Lc +Eb +Eb +Eb +Lc +LE +jC +KR +Nk +Nk +KR +Nw +RL +lL +KR +KR +KR +Rm +PU +bq +jC +mz +zC +Lc +Wk +bw +kS +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(22,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +tv +tv +tv +tv +tv +tv +tv +tv +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +KR +Mh +jC +qJ +jC +ty +Od +qJ +hW +jC +QQ +xB +xr +wk +ds +Nq +iW +Za +Za +KR +mr +bq +dL +jC +mz +zC +LE +QW +dL +bw +xq +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(23,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +tv +tv +tv +tv +em +em +em +em +em +em +tv +tv +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +em +em +em +KR +TG +jC +LG +jC +ni +Sr +Lc +Lc +Wk +ar +fZ +VO +je +hl +pF +YY +VO +et +KR +zt +it +QW +jC +mz +Lc +LE +QW +QW +it +QB +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(24,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +tv +em +em +em +em +em +em +em +em +em +em +tv +tv +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +em +em +em +em +KR +TG +xb +pQ +jC +RY +Lc +pg +IS +it +iG +fu +UV +nC +pF +eK +pF +UV +VO +KR +zt +QW +cz +mL +Lc +Lc +Lc +KJ +cz +QW +QB +Rm +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(25,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +em +em +tv +tv +em +em +em +em +em +em +em +em +em +em +em +em +tv +tv +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +KR +TG +xb +xb +jC +it +jB +it +it +it +iW +ON +jj +ji +iG +iG +iG +hY +go +KR +zt +jC +sF +jC +mz +zC +LE +QW +sF +jC +QB +Lv +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(26,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +tv +em +em +em +em +em +em +wp +em +em +em +em +em +em +em +em +tv +tv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +KR +TG +iG +kA +jC +jC +Mv +jC +jC +iG +iG +iG +VO +ZV +Zr +iG +YY +nC +UV +KR +zt +sF +dL +jC +cC +zC +mU +QW +dL +sF +QB +Lv +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(27,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +tv +em +em +em +em +em +em +em +wp +wp +em +em +em +em +em +em +em +em +tv +tv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +KR +ds +iG +ar +jC +jC +Mv +jC +jC +iG +iW +bR +iG +nA +kJ +kJ +kJ +UZ +za +KR +zt +dL +dL +jC +mz +zC +LE +jC +dL +dL +QB +Lv +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(28,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +tv +tv +em +em +em +em +em +em +em +em +em +wp +wp +wp +wp +wp +wp +em +em +em +em +tv +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +tv +tv +tv +tv +em +em +em +em +em +em +em +em +em +KR +TQ +qE +iG +jC +it +Mv +it +jC +iG +dS +iG +pO +Dv +oC +Me +Fp +nn +vD +KR +zt +dL +dL +it +jC +az +jC +it +dL +dL +QB +Rm +MJ +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(29,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +tv +em +em +wp +wp +wp +em +em +em +em +wp +wp +em +em +em +em +wp +wp +wp +em +em +tv +tv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +tv +tv +em +em +em +em +em +em +em +em +em +em +em +em +KR +Ir +iG +iG +uR +iG +Mv +iG +MM +ar +iW +Za +bc +Za +iL +gE +iL +PO +fV +KR +iD +dL +dL +dL +KR +iy +KR +dL +WJ +Hn +gX +Lv +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(30,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +tv +em +wp +em +em +em +wp +wp +wp +EH +wp +wp +em +em +em +em +wp +wp +wp +wp +em +em +em +tv +em +em +em +em +em +em +em +em +em +em +em +em +em +tv +tv +em +em +em +em +em +em +em +em +em +em +em +em +em +KR +ds +iG +Yc +iG +iG +Mv +ar +ar +pO +bH +qe +YB +NU +iG +iG +iG +qe +Gc +KR +KR +KR +KR +KR +KR +iG +KR +WJ +Ee +Rm +Lv +Lv +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(31,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +tv +em +em +wp +wp +em +em +em +em +em +wp +em +em +em +em +em +em +em +wp +em +em +em +em +em +tv +em +em +em +em +em +em +em +em +em +em +em +em +tv +tv +em +em +em +em +Qu +qR +em +em +em +em +em +em +em +em +KR +ds +iG +iG +iG +Mv +Mv +Mv +ar +ar +KN +rw +iG +AI +rw +AI +aV +UH +iW +KR +Tc +iG +PL +TA +KR +iG +KR +QB +Rm +Rm +Rm +Rm +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(32,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +tv +em +em +em +wp +wp +wp +em +em +em +em +wp +wp +em +em +em +em +em +em +em +em +em +em +em +em +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +em +em +em +em +em +as +LS +ok +em +em +em +em +em +em +em +KR +ds +iG +iG +dC +Mv +iG +IH +dC +kA +iW +Za +hg +Za +Za +Za +ds +pF +iJ +KR +KR +KR +hi +KR +KR +iG +KR +KR +KR +KR +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(33,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +tv +em +wp +em +em +wp +em +wp +wp +wp +em +em +em +wp +wp +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +AQ +Ft +Zj +Sw +Cx +Cx +Cx +Cx +Cx +Cx +Cx +KR +tr +rw +rw +Mv +mm +iE +bY +Mv +rw +aa +fQ +qq +hN +sH +sH +ds +iG +iW +KR +MI +Za +Za +Za +Im +Za +xT +jP +BH +KR +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(34,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +em +tv +tv +em +EH +wp +wp +wp +gz +em +em +em +wp +em +em +em +wp +wp +wp +dt +YH +Bj +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +eZ +UB +MP +MP +ZK +hk +hB +qW +tH +wK +cw +KR +KR +KR +KR +qE +KR +KR +KR +KR +KR +KR +KR +KR +KR +KR +KR +As +OL +UD +KR +MI +Za +PO +PO +PO +Za +nt +Za +MK +KR +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(35,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +em +em +em +wp +wp +lt +gz +wp +em +em +wp +wp +wp +dt +wp +em +wp +em +em +an +em +em +em +wp +wp +wp +em +em +wp +wp +wp +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +rx +Oi +xE +DT +ED +dn +ap +Zm +sq +sq +VP +wK +wK +wK +TI +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +KR +Za +Pl +Za +Pn +Za +Za +PO +lJ +Za +Za +eb +jP +Ap +cK +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(36,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +em +em +em +em +YH +WK +Gy +lv +wp +Zu +wp +em +em +em +em +em +wp +em +em +an +em +em +em +em +wp +wp +em +em +wp +wp +wp +wp +em +em +em +em +em +em +em +em +em +em +hk +hk +hk +em +Wc +DQ +Hg +hk +hk +hk +xy +aL +Sb +xy +JS +wK +TI +wK +wK +wK +wK +wK +wK +hB +wK +wK +wK +wK +wK +KR +Za +wD +Za +MG +Za +Za +tM +Za +Za +EY +Mi +Za +Mi +cK +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(37,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +tv +em +em +em +em +em +AV +YH +wp +em +em +em +em +em +em +wp +wp +wp +em +em +an +YH +em +wp +wp +wp +gM +wp +wp +YI +em +em +wp +Du +wp +wp +em +em +em +em +em +em +em +hk +UX +hk +em +Xr +vu +TX +hk +JN +hk +kV +xy +xy +mW +to +oy +wi +hk +hk +hk +dk +hk +hk +hk +hk +wK +wK +wK +wK +KR +kf +Za +PO +Za +WM +Za +PO +Za +Za +rA +uF +Za +iB +KR +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(38,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +em +em +em +wp +em +Mq +em +em +em +em +em +em +em +em +wp +em +em +em +em +em +Ov +em +wp +wp +GC +wp +wp +wp +wp +wp +wp +wK +wK +Du +em +em +em +em +wK +hk +hk +hk +hk +ED +hk +hk +hk +hk +hk +hk +ED +hk +hk +Oh +Oh +Os +JS +wK +hk +kk +aD +QG +JS +gB +jc +AS +hk +wK +wK +wK +db +KR +dc +dc +PO +dc +sw +dc +dc +PO +dc +aG +xw +Za +CB +KR +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(39,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +em +gz +em +iu +dt +gz +wp +em +em +em +em +em +em +em +wp +wp +wp +em +em +em +wp +em +wp +wp +wp +wp +wp +wU +wp +wp +wp +wK +wK +wp +wp +wK +em +wK +wK +hk +YC +dI +tQ +JS +ln +hk +Cb +eP +hk +ln +JS +Ql +kx +Ne +hk +VZ +JS +wK +hk +Jf +JS +JS +JS +UW +DW +hI +hk +ee +wK +wK +wK +KR +Ab +Ie +Za +Qz +gN +Ie +Uj +Bo +gN +Qy +KR +KR +KR +KR +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(40,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +tv +em +gz +gz +cT +wp +gz +wp +em +em +em +em +em +em +em +em +em +wp +em +em +WS +an +WS +wp +wp +gM +wp +wp +wp +wp +wp +gM +wK +wK +wp +wK +wK +wK +wK +wK +hk +de +hp +hk +JS +Pt +hk +aC +HT +hk +JS +Pt +hk +Mu +sy +hk +wK +JS +wK +hk +WY +XR +JS +kO +ec +Jf +rR +hk +wK +wK +wK +hB +KR +Uj +Ie +oL +Qz +Qz +Ie +Ie +wD +gN +gN +cK +Lv +Rm +Rm +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(41,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +tv +tv +em +em +em +em +EG +WS +wp +em +em +em +em +em +em +em +em +em +em +em +em +em +wp +SD +wp +aS +wp +wp +wp +wp +wp +wp +wp +wp +wp +wK +wK +wK +wK +wK +wK +wK +hk +hk +hk +hk +JS +Pt +hk +aC +EL +hk +kO +Pt +hk +hk +hk +hk +Wq +CW +wK +hk +sG +cd +JS +Qs +JS +JS +rl +hk +wK +wK +wK +wK +KR +Uj +Ie +Za +ZQ +Qz +Ie +Ie +PO +gN +nX +cK +Lv +Lv +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(42,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +tv +em +em +em +em +em +em +em +em +wp +wp +wp +em +em +em +em +em +em +em +em +em +em +em +wp +Dw +WS +wp +wp +wp +wp +wp +wp +wp +wp +IL +wK +wK +wK +wK +wK +wK +wK +wK +hk +lo +en +MF +Pt +JS +hk +aC +rF +hk +Xn +cd +hU +JV +lo +hk +wK +JS +wK +hk +kE +jg +lX +JS +Xz +jy +sz +hk +wK +kQ +wK +wK +KR +mJ +Ie +Za +gN +Qz +Ie +Ie +PO +gN +nX +cK +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(43,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +tv +tv +em +em +em +em +em +em +em +em +em +em +em +wp +wp +wp +wp +wp +gz +em +em +em +em +em +em +wp +Dw +wp +wp +wp +wp +wp +wp +wp +wp +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +hk +zY +HU +hk +Pt +JS +hk +hk +ED +hk +jl +ki +hk +wz +NC +hk +wK +JS +wK +hk +hk +hk +hk +ED +hk +hk +hk +hk +wK +wK +wK +wK +KR +nX +ZQ +oL +gN +gN +Qz +Qz +wD +gN +gN +cK +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(44,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +em +wp +em +em +em +em +em +em +em +em +em +em +em +wp +em +wp +em +gz +gz +em +em +em +em +em +wp +wp +wp +wp +wp +wp +wp +wp +wK +wK +wK +JS +JS +VP +JS +kO +hB +JS +JS +Gb +hk +hk +hk +hk +Pt +JS +JS +lY +JS +JS +Pt +Pt +hk +hk +hk +hk +wK +JS +LU +Ku +wK +wK +wK +JS +wK +xy +wK +Ku +wK +wK +wK +wK +KR +ur +gN +Za +nX +Qz +Qz +Qz +PO +ZQ +Kk +KR +KR +KR +KR +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(45,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +tv +em +wp +wp +em +em +em +em +em +em +em +em +em +em +wp +em +wp +em +em +gz +wp +em +em +em +em +wp +YI +wp +hM +wp +WI +wp +wK +wK +wK +wK +JS +JS +JS +JS +JS +GI +VP +JS +wK +hk +YC +pL +MF +Pt +JS +Ih +iY +iY +Ih +PW +Pt +Hx +Vj +md +hk +wK +JS +wK +wK +wK +wK +wK +JS +wK +JS +JS +kO +JS +JS +JS +JS +OF +Za +Za +Za +Be +Be +dc +Be +Za +Za +Za +qH +lg +PM +KR +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(46,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +tv +em +gz +gz +wp +em +em +em +em +em +em +em +em +em +em +wp +wp +wp +em +em +em +wp +em +em +em +em +wp +wp +wU +wp +wp +wp +wp +wK +wK +wK +wK +JS +JS +wK +wK +wK +wK +VP +JS +wK +hk +Uz +hs +hk +Pt +VP +Sa +Gs +NP +XS +Pt +Pt +hk +zu +uS +hk +wK +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +HG +JS +JS +JS +OF +lN +Za +PO +PO +Za +Za +PO +Za +Za +PO +qH +qH +Eq +KR +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(47,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +em +EH +gz +em +wp +gz +em +em +em +wp +wp +wp +wp +em +em +em +em +em +em +em +em +wp +em +em +em +em +em +em +wp +wp +wp +wp +wp +wK +wK +wK +wK +JS +KL +wK +wK +wK +db +JS +JS +wK +hk +hk +hk +hk +Pt +JS +Sa +kg +Ye +VF +Pt +Qs +hk +hk +hk +hk +wK +er +ey +JS +VP +JS +JS +JS +JS +JS +JS +JS +JS +kO +JS +JS +OF +lN +Za +PO +Za +Za +Za +PO +Za +PO +PO +qH +qH +Fs +KR +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(48,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +em +wp +em +em +gz +gz +wp +wp +wp +wp +em +em +em +em +em +em +em +em +em +wp +wp +em +em +em +em +em +em +wp +wp +wp +wp +wp +wK +hB +wK +wK +JS +Eg +wX +wX +wK +cV +JS +JS +wK +hk +ge +JS +kO +Pt +JS +Ih +Ur +SL +cd +tz +Pt +Pt +sZ +ch +hk +wK +JS +JS +wK +wK +wK +wK +JS +wK +VP +PG +JQ +JS +JS +JS +JS +OF +Za +lJ +PO +PO +PO +Za +PO +PO +Za +uk +Za +Za +Ap +cK +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(49,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +em +em +em +tv +em +em +wp +em +em +em +em +wp +em +em +wp +wp +iZ +wp +wp +wp +wp +wp +gz +gz +gz +em +em +em +em +em +em +YW +wp +wp +wp +wp +wp +wK +wK +wK +wK +to +JS +wK +wX +wK +wK +JS +JS +wK +hk +ge +Pt +rU +JS +Qn +GS +md +md +dG +JS +Pt +Pt +Pt +rp +hk +wK +JS +JS +wK +gq +wK +wK +JS +wK +OZ +Wq +cj +wK +wK +fM +wK +KR +Dj +Au +Au +Au +Za +PO +ul +Ns +Ns +Za +Za +Za +Ap +cK +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(50,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +em +em +em +tv +tv +em +gz +gz +em +em +em +em +em +em +em +em +em +em +em +em +em +em +gz +em +em +em +em +em +em +em +wp +wp +wp +wp +wp +wp +wK +wK +wK +wK +gq +JS +JS +wK +wX +wK +wK +JS +JS +wK +hk +hk +hk +hk +WH +Da +hk +ED +ED +hk +WH +WH +hk +hk +hk +hk +wK +JS +JS +wK +hk +hk +hk +ED +hk +hk +Zq +WH +WH +CZ +hk +wK +KR +gN +gN +gN +gN +Za +KR +ES +ES +ES +KR +Eq +qH +qH +KR +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(51,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +tv +em +wp +gz +em +em +em +em +em +em +em +wp +wp +wp +em +em +em +gz +gz +em +em +em +em +em +em +em +eh +wK +wK +wK +wK +wK +wK +wK +hk +hk +hk +ZU +ED +hk +hk +hk +Lp +JS +JS +wK +Ku +wK +wK +wK +TI +wK +wK +JS +VP +wK +wK +wK +wK +wK +wK +wK +wK +JS +JS +wK +hk +qi +pG +pG +sr +GQ +Md +Gt +XI +pK +hk +wK +KR +gN +JO +JO +gN +Za +KR +Lv +Rm +Rm +KR +PM +qH +Fs +KR +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(52,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +tv +em +gz +gz +em +em +em +em +em +em +em +em +wp +wp +gz +gz +gz +em +em +em +em +em +em +em +em +em +wK +wK +wK +wK +wK +wK +wK +hk +Sn +ln +JS +Hm +ln +Ui +hk +wK +JS +kO +JS +JS +JS +JS +JS +JS +JS +JS +JS +YM +JS +VP +JS +JS +JS +JS +JS +JS +JS +JS +wK +hk +Mf +pa +ae +pG +VF +YC +gu +VF +pG +hk +wK +KR +JO +JO +Ph +gN +Za +KR +Lv +Rm +Rm +KR +qH +SU +Fs +KR +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(53,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +tv +em +wp +wp +em +em +em +em +em +em +em +em +em +em +em +EH +em +em +em +em +em +em +em +em +em +em +wK +wK +wK +wK +wK +wK +wK +hk +qz +JS +cd +VP +JS +JS +Gf +wK +JS +JS +JS +JS +JS +JS +vi +JS +JS +JS +kO +JS +kO +VP +JS +JS +VP +JS +JS +JS +JS +JS +wK +hk +xc +pa +pG +YC +YC +YC +YC +VF +AJ +hk +wK +KR +KR +KR +KR +KR +KR +KR +Lv +Lv +Rm +KR +KR +KR +KR +KR +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(54,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +tv +em +gz +gz +wp +em +em +em +em +em +em +em +em +em +wp +em +em +em +em +em +em +em +em +em +wK +IL +wK +wK +wK +wK +wK +wK +hk +Ez +JS +uw +cd +JS +Ui +hk +wK +JS +JS +wK +gq +wK +wK +wK +wK +wK +wK +JS +JS +wK +vk +Uq +IL +wK +wK +Tg +wK +JS +JS +yt +hk +pj +pG +pG +Kr +Re +iI +hx +zS +zS +hk +Tx +Cx +em +em +tv +em +vr +vr +Lv +Lv +Lv +Lv +Lv +Lv +Rm +Lv +Rm +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(55,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +tv +tv +em +em +gz +gz +wp +wp +wp +em +em +em +em +em +gz +gz +gz +wp +wp +em +em +em +em +wK +wK +wK +wK +wK +wK +hB +wK +wK +hk +uy +JS +JS +cd +cd +JS +hk +wX +Eg +JS +wK +hk +hk +hk +hk +WH +WH +hk +ED +ED +hk +aJ +yi +hk +hk +hk +hk +Lp +JS +JS +wK +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +wK +Cx +em +em +tv +em +vr +vr +vr +vr +vr +vr +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(56,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +tv +em +em +em +em +em +em +wp +wp +wp +em +em +em +em +wp +em +em +wp +em +em +em +em +wK +XF +wK +em +em +wK +wK +wK +wK +hk +Ua +JS +JS +JS +cd +Ui +hk +wK +Eg +JS +wK +hk +jW +YJ +Ii +JS +JS +ln +kO +cd +ln +cd +QY +VT +dI +YC +hk +wK +JS +JS +JS +ED +JS +xj +JS +JS +Ih +Ih +Vj +cQ +hk +wK +wK +Cx +em +em +tv +em +em +em +em +vr +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(57,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +tv +em +em +em +em +em +em +wp +wp +gz +gz +em +em +em +wp +em +em +wp +em +em +em +em +em +em +wK +wK +em +wK +wK +wK +wK +hk +hR +JS +JS +JS +JS +Ui +hk +wK +Eg +JS +wK +hk +Uf +kT +hk +JS +Pt +qb +Pt +JS +ai +Qs +Pt +hk +hp +de +hk +wK +JS +JS +wK +hk +JS +Pt +JS +VF +Vi +Qo +iY +Ih +hk +wK +wK +Cx +em +em +tv +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(58,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +tv +em +em +em +gz +gz +em +gz +gz +em +wp +wp +em +em +wp +em +wp +gz +em +em +em +em +em +em +em +tp +em +em +wK +wK +wK +hk +uc +JS +JS +kO +JS +Ym +hk +wK +JS +JS +wK +hk +hk +hk +hk +xf +Pt +hk +hk +hk +hk +JS +Pt +hk +hk +hk +hk +wX +nQ +to +wK +hk +Wa +XE +pR +Pt +DI +dM +tP +tW +hk +wK +Cx +Cx +em +em +tv +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(59,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +em +xI +xI +gz +gz +em +em +em +em +gz +wp +em +em +em +em +wp +em +em +em +em +em +em +em +em +wK +wK +em +wK +wK +wK +hk +Go +gI +eB +JS +VP +JS +hk +wK +JS +JS +wK +hk +lo +en +hU +JS +Pt +hk +Mu +oK +hk +Pt +Pt +bh +lR +jW +hk +mW +kO +JS +wK +hk +HI +XE +HI +om +DI +Bf +FL +tW +hk +wK +Cx +Cx +em +em +tv +tv +em +em +em +em +em +em +vr +vr +Lv +Lv +Lv +Lv +Lv +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(60,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +tv +xI +xI +jX +EI +eT +wp +wp +gz +gz +gz +em +em +em +em +wp +wp +em +em +em +em +em +em +em +em +em +wK +wK +wK +Tx +wK +hk +DO +gI +eB +JS +JS +JS +ED +JS +JS +JS +wK +hk +Hu +QU +hk +cd +Pt +Ql +vJ +CG +hk +Pt +JS +Bd +xo +rN +hk +wK +VP +Eg +wX +hk +HI +XE +HI +Pt +DI +dN +nh +tW +hk +wK +wK +wK +em +em +em +tv +em +em +em +em +em +vr +vr +Lv +Lv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(61,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +tv +em +xI +Iy +sD +nF +em +em +em +em +em +em +em +em +em +em +wp +em +em +em +wp +em +em +em +em +em +em +ZK +wK +wK +wK +Do +hk +eX +Ti +eB +JS +sc +JS +ED +JS +JS +JS +wK +hk +hk +hk +hk +JS +Pt +hk +hk +KZ +hk +jl +kO +hk +hk +hk +hk +wK +JS +JS +wK +hk +HI +XE +HI +Pt +DI +Bf +Aa +tW +hk +wK +wK +wK +em +em +em +tv +tv +em +em +em +em +vr +Lv +Lv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(62,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +tv +xI +Jp +jX +AK +sD +JR +gz +em +em +em +em +em +em +em +em +em +fr +em +em +em +wp +em +em +em +em +em +em +em +wK +wK +wK +wK +hk +gI +Ti +wB +AX +rn +lr +hk +Lp +JS +JS +wK +hk +CG +zO +Ql +JS +JS +hk +fm +ft +hk +Pt +Pt +Gv +en +lo +hk +wK +to +JS +wK +hk +HI +jW +HI +Pt +Ih +SL +SL +Ih +hk +wK +wK +wK +tp +em +em +em +tv +em +em +em +em +em +Lv +Lv +em +vr +Lv +Lv +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(63,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +tv +tv +em +xI +Bt +gz +Yh +JR +JI +Bt +xI +em +em +em +em +em +em +em +em +em +em +em +wp +wp +em +em +em +em +em +em +em +wK +wp +wK +wK +hk +eB +AX +eB +AX +eB +uO +hk +wK +to +kO +wK +hk +sy +Mc +hk +XR +JS +MF +VJ +YC +hk +JS +JS +hk +HU +zY +hk +wX +Eg +JS +wK +hk +HI +tX +HI +Xz +Ih +Ih +ZL +NH +hk +wK +wK +wK +wK +wK +em +em +tv +tv +em +em +em +em +em +Lv +Lv +Lv +Lv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(64,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +em +em +xI +gz +gz +gz +gO +De +gz +xI +em +em +em +em +em +em +em +em +em +em +wp +wp +wp +wp +wp +em +em +em +em +em +wp +wp +wK +wK +hk +bP +eB +ib +AX +eB +AX +hk +wK +JS +JS +wK +hk +hk +Bd +hk +JS +JS +hk +hk +hk +hk +JS +JS +hk +hk +hk +hk +mW +VP +VP +Xe +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +em +em +wK +wK +XF +em +em +em +tv +em +em +em +em +em +em +Lv +Lv +Lv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(65,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +em +xI +xI +Bt +lD +Bt +xI +xI +xI +tv +tv +em +em +em +em +em +em +em +em +em +wp +em +em +wp +wp +em +wp +wp +wp +wp +wp +IL +wK +hk +IN +FB +hd +sE +gI +cM +hk +wK +JS +JS +wK +hk +CG +kx +Ql +JS +JS +hk +TL +Uf +hk +ki +JS +DG +xk +yU +hk +wK +JS +JS +wK +wK +wK +wK +LU +wK +yt +wK +wK +wK +hB +em +XF +wK +wK +em +em +em +em +tv +tv +em +em +em +em +vr +Lv +Lv +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(66,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +em +em +em +xI +xI +Lr +xI +xI +em +tv +em +tv +tv +tv +tv +em +em +em +em +em +em +wp +em +em +wp +wp +wp +wp +em +em +wp +wp +wK +wK +hk +cm +eB +AX +eB +gI +DU +hk +wK +JS +VP +wK +hk +fB +IX +hk +ER +JS +bh +cN +jW +hk +cd +ER +hk +xm +LP +hk +mW +JS +kO +JS +JS +JS +JS +JS +JS +wK +wK +wK +em +em +em +wK +wK +em +em +em +em +em +em +tv +em +em +em +em +vr +Lv +Lv +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(67,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +tv +xI +xI +xI +xI +CE +xI +xI +xI +xI +em +em +em +em +tv +tv +em +em +em +em +wp +wp +wp +wp +wp +em +em +em +em +em +wK +wp +wK +wK +hk +ic +fd +wR +AX +Ti +DU +hk +wK +JS +JS +wK +hk +hk +hk +hk +hk +ED +hk +hk +hk +hk +ED +hk +hk +hk +hk +hk +Lp +JS +JS +JS +JS +mM +JS +kO +JS +mW +wK +wK +kR +em +em +wK +wK +em +em +em +em +em +em +tv +em +em +em +em +em +Lv +Lv +Lv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(68,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +xI +Qe +pb +pb +AU +xI +pb +pb +xI +em +em +em +em +em +em +tv +em +em +em +wp +wp +wp +em +em +em +em +em +em +em +wK +wK +wK +wK +hk +eB +AX +AX +eB +Ti +cM +hk +wK +Eg +JS +wK +hk +DF +vF +hk +Uk +QY +Jt +JS +XN +cd +Dy +XN +Dy +hk +wK +wK +wK +JS +JS +wK +wK +wK +JS +wK +wK +wK +wK +wK +wK +wK +em +wK +wK +wK +em +em +em +em +em +tv +em +em +em +em +em +em +Lv +Lv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(69,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +em +em +tv +em +xI +xI +xI +pb +pb +xI +pb +pb +xI +xI +xI +xI +xI +em +em +tv +tv +em +em +wp +em +wp +em +em +em +em +em +em +em +wK +wK +wK +wK +hk +iT +TS +kt +bW +xd +Ti +hk +GK +Eg +JS +wK +hk +JS +AM +hk +Pt +Pt +bB +hk +zG +XN +XN +uT +oF +hk +wK +wK +wK +JS +JS +lp +hk +hk +ED +hk +hk +hk +hk +hk +hk +hk +hk +hk +wK +wK +em +em +em +em +em +tv +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(70,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +em +em +tv +em +em +em +xI +pb +pb +xI +Qe +pb +pb +pb +pb +pb +xI +em +em +em +tv +em +em +wp +wp +wp +em +em +em +em +em +em +em +em +wK +wK +wK +hk +hk +hk +hk +hk +hk +hk +hk +KK +Eg +JS +wK +hk +VU +JS +hk +ED +hk +ED +hk +XN +XN +XN +Dy +XN +hk +wK +wK +wK +JS +JS +wK +hk +HF +Pt +Bm +Pt +my +Er +my +IB +pS +BD +hk +hk +wK +em +em +em +em +em +tv +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(71,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +em +em +tv +em +em +em +xI +xI +pb +xI +pb +pb +pb +xI +xI +pb +xI +em +em +em +tv +tv +em +em +em +em +em +em +em +em +em +em +em +em +wK +wK +wK +wK +wK +wK +wK +hB +wK +wK +ee +wK +JS +JS +wK +hk +Kb +kO +hk +ld +Bd +YK +hk +Ff +on +on +on +Ff +hk +wK +wK +wK +JS +JS +wK +hk +Az +Pt +Pt +Pt +lM +Zp +KO +JS +pS +dY +KA +hk +wK +wK +em +em +em +em +tv +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(72,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +tv +em +em +em +em +xI +pb +xI +xI +xI +pb +pb +xI +pb +xI +em +em +em +em +tv +em +em +em +em +em +em +em +em +em +em +em +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +JS +JS +wK +hk +hk +pH +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +wK +IL +wK +JS +JS +wK +hk +Tl +Pt +Fn +Pt +Pt +Pt +Pt +JS +al +MO +QL +hk +wK +wK +em +em +em +em +tv +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(73,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +tv +em +em +em +em +xI +pb +pb +pb +xI +xI +xI +xI +pb +xI +xI +em +em +em +tv +tv +em +em +em +em +em +em +em +Du +em +em +em +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +JS +JS +wK +Ku +wK +wK +wK +IL +wK +wK +wK +wK +wK +wK +wK +wK +nf +wK +wK +wK +JS +JS +wK +hk +Nj +JS +Mk +JS +Pt +Pt +Pt +sc +uv +JK +lF +hk +wK +wK +XF +em +em +em +tv +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(74,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +tv +em +em +em +em +xI +pb +pb +pb +pb +pb +pb +pb +pb +lw +xI +em +em +em +em +tv +tv +em +em +em +em +em +em +wK +wK +fP +wK +IL +wK +wK +wK +wK +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +VP +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +VP +JS +wK +hk +vz +JS +cp +wF +cp +hk +cp +vc +hk +mn +MD +hk +em +tp +wK +em +em +em +tv +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(75,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +em +em +em +em +xI +xI +lw +xI +xI +xI +xI +pb +xI +xI +pb +xI +em +em +em +em +em +tv +em +em +em +em +em +em +IL +ws +em +wK +wK +wK +wK +wK +wK +JS +kO +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +to +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +JS +VP +wK +hk +sg +JS +qn +VP +OV +hk +fD +Pt +hk +ET +YQ +hk +em +em +wK +em +em +em +tv +em +em +em +em +em +vr +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(76,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +em +em +em +em +xI +Qe +pb +pb +pb +pb +xI +pb +xI +pb +pb +xI +em +em +em +em +em +tv +tv +em +em +em +em +em +hB +wK +em +vE +wE +wK +wK +wK +wK +JS +JS +wK +wK +wK +wK +wK +wK +gq +wK +yt +wK +wK +wK +wK +wK +JS +wK +Uq +wK +wK +wK +wK +wK +ee +gq +wK +JS +JS +wK +hk +Qc +JS +qn +fT +TN +hk +eL +Ws +hk +yS +hk +hk +em +em +wK +wK +em +em +tv +em +em +em +em +em +vr +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(77,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +em +em +em +em +xI +xI +xI +pb +xI +pb +xI +pb +xI +pb +xI +xI +em +em +em +em +em +em +tv +em +em +em +em +em +em +em +em +em +mw +wK +wK +ku +wK +JS +JS +wK +wK +wK +wK +wK +wK +hk +hk +rM +WH +hk +hk +hk +hk +ED +hk +rM +WH +hk +WH +WH +hk +hk +hk +wK +JS +JS +Gb +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +wK +em +em +em +wK +em +em +tv +em +em +em +em +vr +vr +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(78,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +Lv +em +em +tv +em +em +xI +xI +xI +Qe +xI +pb +xI +pb +xI +pb +xI +pb +xI +em +em +em +em +em +em +em +em +tv +em +em +em +em +em +em +em +em +wK +qw +yt +oe +wK +JS +JS +wK +hk +hk +hk +hk +hk +hk +FU +fz +Rx +bJ +Gz +qZ +ln +JS +ln +sa +JS +IB +sc +JS +Di +RO +hk +wK +Xt +VP +wK +wK +wK +wK +Tx +hB +wK +wK +wK +wK +wK +wK +wK +wK +em +em +em +wK +em +em +tv +em +em +em +em +em +vr +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(79,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +em +xI +xI +pb +pb +pb +pb +pb +xI +pb +xI +pb +xI +pb +xI +em +em +em +em +em +em +em +em +em +tv +em +em +em +em +em +em +em +wK +IU +wK +IU +wK +JS +JS +wK +hk +ab +HJ +JS +GF +hk +AT +JS +oR +bJ +JS +Pt +Tm +JS +JS +Fb +JS +cd +ki +JS +yH +Br +hk +wK +JS +JS +mW +wK +hk +hk +hk +hk +hk +hk +hk +wK +wK +wK +wK +wK +wK +em +em +wK +em +em +tv +em +em +em +em +vr +vr +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(80,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +xI +pb +pb +xI +xI +xI +xI +xI +pb +xI +pb +xI +pb +xI +em +em +em +em +em +em +em +em +em +tv +tv +tv +tv +em +em +em +Ow +wK +IU +aK +IU +wK +JS +JS +wK +hk +jV +tz +JS +AY +hk +gK +JS +jM +bJ +JS +OY +yP +Pt +QY +VG +EX +Pt +OT +JS +Zk +VW +hk +wK +VP +JS +wK +wK +hk +oi +ct +wh +Pt +yK +hk +wK +wK +wK +wK +wK +wK +em +wK +wK +em +em +tv +em +em +em +em +vr +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(81,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +xI +pb +pb +xI +xI +pb +pb +pb +pb +pb +pb +pb +pb +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +tv +em +em +em +GG +wK +oe +wK +oe +wK +JS +JS +wK +hk +FH +QY +xa +ll +hk +DL +JS +Hh +JS +JS +JS +Nd +JS +JS +VP +JS +Pt +xL +JS +qO +mS +hk +wK +VP +JS +wK +wK +hk +JS +Pt +VF +VF +qN +hk +wK +wK +wK +wK +wK +wK +em +wK +em +em +em +tv +em +em +em +vr +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(82,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +em +xI +xI +pb +pb +xI +pb +xI +xI +pb +pb +xI +xI +xI +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +xI +tv +em +em +em +em +wK +oe +db +IU +wK +JS +JS +wK +hk +ls +Pt +Zi +kn +hk +ps +Qs +ZG +bJ +JS +cd +PK +JS +JS +JS +JS +Pt +JS +JS +AG +RO +hk +wK +JS +kO +wK +wK +hk +ff +Fn +Pt +rt +Bp +hk +wK +wK +wK +wK +wK +wK +wK +wK +em +em +tv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(83,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +em +em +xI +xI +pb +xI +pb +Qe +xI +xI +xI +xI +Bb +pb +pb +pb +pb +pb +xI +xI +xI +xI +pb +xI +xI +pb +xI +tv +em +em +em +em +wK +oe +wK +IU +wK +JS +JS +hB +hk +Nt +Pt +JS +QY +hk +NR +JS +yT +bJ +Qs +Pt +Pz +Nd +JS +DA +eN +Tm +bd +Pt +Hj +Cw +hk +wK +JS +JS +JS +JS +SR +gk +nE +HS +oO +Bp +hk +wK +wK +wK +wK +wK +wK +wK +em +em +tv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(84,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +tv +em +em +em +xI +pb +xI +xI +xI +xI +pb +pb +pb +pb +xI +xI +xI +xI +xI +xI +TH +Qe +xI +pb +xI +pb +pb +xI +em +tv +em +em +em +TZ +wK +wK +wK +wK +JS +JS +wK +hk +JS +zV +RA +VP +hk +JS +Pt +yP +bJ +JS +JS +Pt +JS +JS +zd +JS +Pt +CD +JS +eH +Rx +hk +wK +JS +JS +wK +wK +hk +YT +oO +uN +uC +To +hk +wK +wK +wK +wK +wK +em +em +em +tv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(85,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +tv +em +em +em +xI +pb +pb +pb +pb +pb +pb +xI +xI +xI +xI +pb +lw +xI +lw +xI +pb +pb +xI +pb +xI +Qe +pb +xI +em +tv +em +em +em +em +em +wK +wK +wK +JS +JS +wK +hk +kO +ER +Pt +Pt +ED +JS +VF +tz +JS +kO +JS +JS +JS +Pt +Tm +Pt +Pt +JS +JS +qO +Tk +hk +wK +JS +JS +wK +wK +hk +Yi +Yi +Yi +JS +zD +hk +wK +wK +wK +em +em +em +em +tv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(86,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +tv +em +em +em +xI +lw +xI +xI +xI +xI +xI +xI +pb +pb +pb +pb +pb +xI +pb +xI +pb +pb +pb +pb +xI +xI +xI +xI +em +tv +em +em +em +em +em +wK +wK +wK +JS +JS +wK +hk +hk +hk +hk +hk +hk +VV +JS +Sq +bJ +JS +GM +tB +qM +WL +Rx +JS +PC +PC +PC +ER +RQ +hk +wK +JS +JS +wK +wK +hk +GP +GP +fy +gQ +jR +hk +wK +em +wK +wK +em +em +tv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(87,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +tv +em +em +em +xI +pb +pb +pb +pb +pb +pb +pb +pb +xI +xI +xI +xI +xI +pb +ri +pb +pb +pb +pb +pb +pb +pb +xI +em +em +tv +em +em +em +em +em +wK +wK +JS +JS +wK +wK +wK +wK +wK +wK +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +hk +wK +JS +JS +wK +wK +hk +hk +hk +hk +hk +hk +hk +em +em +wK +em +em +tv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(88,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +em +em +xI +xI +xI +xI +xI +xI +xI +xI +Qe +xI +pb +pb +pb +pb +pb +xI +pb +pb +pb +pb +pb +pb +lw +xI +em +em +tv +em +em +em +em +em +wK +DB +JS +JS +wK +wK +wK +wK +wK +wK +wK +wK +jb +jb +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +JS +JS +wK +wK +wK +em +em +em +em +em +em +em +em +em +em +tv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(89,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +em +em +xI +Qe +SO +pb +pb +pb +pb +xI +xI +xI +pb +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +em +em +tv +em +em +em +em +em +wK +wK +JS +JS +JS +JS +JS +JS +JS +JS +Tg +wK +kO +JS +JS +JS +JS +hB +JS +JS +to +kO +JS +JS +JS +JS +JS +JS +JS +JS +JS +wK +wK +em +em +em +em +em +em +tv +tv +tv +tv +tv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(90,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +em +em +xI +xI +TH +xI +pb +xI +pb +pb +pb +pb +pb +xI +pb +pb +xI +Qe +gs +xI +xI +xI +gs +Qe +xI +em +em +em +tv +tv +em +em +em +em +wK +wK +JS +JS +JS +JS +JS +wK +em +em +wK +JS +JS +JS +to +JS +JS +JS +JS +kO +JS +JS +JS +JS +kO +hB +wK +XR +JS +JS +JS +wK +em +em +em +em +em +em +em +tv +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(91,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +em +em +em +xI +pb +pb +xI +pb +xI +xI +pb +xI +xI +xI +xI +pb +pb +xI +vA +pb +Ix +XQ +ud +pb +vA +xI +em +em +em +em +tv +em +em +em +em +wK +wK +wK +em +em +em +em +em +em +em +wK +wK +wK +wK +wK +wK +jb +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +wK +em +em +em +em +em +em +em +tv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(92,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +em +em +xI +pb +pb +xI +pb +xI +pb +pb +pb +pb +pb +pb +pb +pb +xI +pb +pb +pb +vA +pb +pb +pb +xI +em +em +em +em +tv +tv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +wK +wK +wK +em +wK +em +em +em +wK +wK +em +em +em +em +em +em +em +em +tv +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(93,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +em +em +xI +pb +pb +xI +pb +xI +pb +xI +xI +pb +lw +pb +pb +pb +xI +vq +pb +NB +TO +lh +pb +vq +xI +em +em +em +em +em +tv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +XF +wK +em +em +em +em +em +em +wK +wK +em +em +em +em +em +em +em +em +em +tv +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(94,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +em +em +xI +xI +pb +pb +xI +lw +xI +pb +pb +xI +pb +pb +pb +xI +pb +xI +pb +pb +lh +AD +NB +pb +pb +xI +em +em +em +em +em +tv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +tv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(95,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +em +em +xI +pb +pb +xI +xI +pb +xI +pb +Qe +xI +pb +pb +pb +xI +pb +xI +pb +pb +NB +pb +TO +lh +pb +xI +em +em +em +em +em +em +tv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +tv +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +vr +vr +Lv +Lv +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(96,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +em +xI +pb +xI +xI +xI +pb +xI +xI +xI +xI +pb +xI +xI +xI +pb +xI +vA +pb +pb +pb +pb +pb +vA +xI +em +em +em +em +em +em +tv +tv +em +em +em +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +tv +tv +tv +tv +tv +em +em +tv +tv +tv +tv +tv +em +em +em +em +em +em +em +em +em +em +em +em +vr +vr +vr +vr +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(97,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +em +xI +pb +xI +Qe +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +xI +Qe +pb +pb +lh +vq +pb +Qe +xI +xI +xI +xI +em +em +em +em +tv +tv +tv +tv +tv +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +xI +xI +xI +tv +tv +tv +tv +xI +xI +xI +tv +tv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(98,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +em +em +tv +em +em +xI +pb +xI +pb +pb +pb +pb +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +CE +xI +xI +xI +xI +xI +pb +xI +xI +em +em +em +em +em +xI +xI +xI +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +pb +xI +xI +xI +xI +xI +xI +BJ +xI +xI +tv +tv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(99,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +em +em +em +tv +em +em +xI +pb +xI +pb +xI +xI +pb +pb +pb +xI +xI +Qe +pb +pb +pb +pb +pb +pb +pb +oH +pb +pb +pb +pb +xI +pb +pb +pb +em +em +em +em +em +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +lw +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +BJ +BJ +BJ +xI +xI +tv +tv +em +em +em +em +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(100,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +vr +em +em +tv +em +em +xI +pb +xI +pb +pb +xI +xI +xI +pb +pb +xI +xI +pb +xI +xI +xI +xI +In +xI +xI +xI +pb +xI +pb +xI +pb +xI +pb +pb +em +em +em +xI +xI +pb +pb +pb +pb +pb +pb +Qe +pb +pb +pb +QH +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +Qe +pb +pb +pb +pb +pb +pb +BJ +BJ +BJ +BJ +BJ +BJ +BJ +xI +xI +tv +tv +tv +tv +tv +tv +tv +tv +tv +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(101,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +em +em +em +tv +em +em +xI +pb +xI +xI +pb +pb +pb +xI +xI +pb +pb +xI +pb +xI +pb +Qe +xI +pb +xI +pb +xI +pb +xI +Qe +xI +pb +xI +xI +pb +pb +em +em +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +Qe +pb +pb +pb +LV +pb +pb +BJ +BJ +pb +pb +pb +pb +pb +BJ +BJ +pb +pb +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +xI +xI +xI +xI +xI +xI +em +em +em +tv +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(102,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +em +em +em +tv +em +em +xI +In +pb +xI +xI +xI +pb +pb +xI +xI +pb +pb +pb +xI +pb +pb +xI +pb +xI +pb +xI +pb +xI +xI +xI +pb +pb +xI +Qe +em +em +em +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +BJ +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +BJ +BJ +BJ +nT +BJ +BJ +BJ +BJ +BJ +BJ +xI +NJ +xI +em +em +em +tv +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(103,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +em +em +em +tv +em +em +xI +pb +pb +pb +pb +xI +Qe +pb +pb +xI +xI +xI +xI +xI +pb +xI +xI +pb +xI +pb +xI +pb +xI +pb +pb +pb +xI +xI +xI +em +em +em +xI +pb +pb +pb +lw +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +nT +BJ +BJ +BJ +BJ +xI +BJ +BJ +xI +BJ +xI +xI +xI +xI +NJ +xI +em +em +em +tv +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(104,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +em +xI +pb +pb +pb +pb +xI +xI +pb +pb +pb +xI +pb +pb +pb +pb +lw +pb +pb +xI +pb +xI +pb +xI +pb +pb +xI +xI +pb +pb +Qe +em +em +xI +pb +pb +pb +pb +pb +pb +pb +pb +lw +pb +pb +LV +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +BJ +BJ +BJ +BJ +BJ +BJ +BJ +NJ +NJ +NJ +NJ +xI +em +em +em +tv +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(105,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +em +xI +xI +lw +pb +pb +pb +xI +xI +lw +pb +xI +xI +pb +xI +pb +pb +pb +pb +xI +pb +pb +pb +xI +pb +lw +xI +pb +pb +xI +em +em +xI +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +lw +pb +pb +pb +pb +pb +pb +pb +LV +pb +pb +Bb +pb +pb +pb +pb +pb +pb +BJ +BJ +BJ +xI +BJ +BJ +xI +BJ +xI +xI +xI +xI +NJ +xI +xI +em +em +tv +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(106,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +em +xI +xI +xI +pb +pb +pb +pb +xI +xI +pb +xI +pb +pb +xI +xI +pb +xI +xI +xI +pb +xI +pb +xI +pb +pb +xI +pb +xI +xI +em +em +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +Bb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +lw +pb +pb +pb +pb +pb +pb +pb +LV +pb +pb +pb +BJ +pb +BJ +BJ +pb +BJ +BJ +BJ +BJ +xI +cS +NJ +cS +xI +em +em +tv +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(107,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +tv +em +xI +xI +xI +xI +pb +lw +Qe +xI +xI +pb +xI +xI +pb +xI +Qe +pb +pb +xI +xI +pb +xI +pb +xI +pb +pb +pb +In +xI +xI +xI +xI +pb +pb +pb +pb +pb +pb +LV +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +BJ +pb +pb +pb +pb +pb +BJ +pb +pb +pb +BJ +BJ +BJ +BJ +BJ +xI +xI +NJ +xI +xI +em +em +tv +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(108,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +tv +em +em +em +em +xI +xI +Cm +xI +xI +xI +pb +pb +xI +pb +xI +pb +pb +pb +pb +zL +pb +pb +pb +xI +pb +xI +xI +xI +xI +pb +pb +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +lw +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +BJ +BJ +pb +pb +pb +pb +pb +BJ +BJ +pb +BJ +pb +pb +BJ +BJ +BJ +xI +cS +NJ +cS +xI +em +em +tv +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(109,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +em +em +em +xI +pb +pb +pb +pb +xI +Qe +pb +pb +pb +xI +xI +xI +xI +xI +pb +xI +xI +xI +xI +pb +xI +pb +pb +pb +AZ +pb +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +LV +pb +pb +pb +pb +pb +Qe +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +lw +BJ +xI +xI +xI +xI +NJ +xI +xI +em +em +tv +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(110,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +vr +em +em +tv +em +em +em +xI +xI +pb +pb +pb +xI +xI +xI +xI +pb +xI +In +pb +pb +xI +pb +xI +xI +pb +pb +pb +xI +pb +pb +pb +pb +pb +xI +pb +Qe +pb +pb +Qe +pb +pb +Qe +pb +pb +Qe +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +QH +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +AZ +pb +pb +pb +pb +pb +pb +BJ +pb +BJ +xI +Rs +Nz +PT +NJ +NJ +xI +em +em +tv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(111,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +vr +em +em +tv +em +em +em +em +xI +pb +pb +pb +pb +xI +xI +xI +xI +xI +lw +pb +pb +xI +pb +pb +pb +pb +xI +pb +xI +pb +pb +pb +pb +Qe +xI +pb +nV +nV +nV +nV +nV +nV +nV +nV +nV +nV +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +lw +pb +pb +pb +pb +pb +pb +pb +pb +BJ +xI +Nh +fx +wA +NJ +NJ +xI +em +em +tv +em +em +em +Lv +Lv +Lv +em +Lv +Lv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(112,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +vr +em +em +tv +em +em +em +em +xI +xI +pb +xI +pb +Qe +xI +pb +pb +pb +pb +pb +pb +xI +xI +xI +xI +xI +xI +xI +xI +pb +pb +In +pb +pb +CE +pb +nV +nV +nV +nV +nV +nV +nV +nV +nV +nV +pb +pb +pb +pb +pb +lw +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +Bb +pb +pb +pb +pb +pb +LV +pb +BJ +pb +xI +BW +HE +tZ +NJ +NJ +xI +em +em +tv +em +em +em +Lv +Lv +Lv +em +em +Lv +Lv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(113,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +em +em +em +em +xI +xI +pb +xI +pb +pb +xI +xI +xI +xI +cq +xI +pb +QH +pb +pb +pb +pb +pb +pb +pb +th +pb +pb +pb +pb +CE +SO +nV +nV +nV +nV +nV +nV +nV +nV +nV +nV +pb +pb +pb +pb +pb +pb +pb +Qe +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +BJ +BJ +pb +pb +pb +pb +pb +pb +pb +xI +xI +xI +xI +NJ +xI +xI +em +em +tv +em +em +em +Lv +Lv +Lv +em +em +em +Lv +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(114,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +xI +xI +xI +xI +xI +xI +pb +xI +xI +pb +pb +pb +xI +pb +pb +xI +xI +xI +pb +pb +xI +pb +xI +pb +pb +pb +pb +pb +pb +pb +CE +pb +nV +nV +nV +nV +nV +nV +nV +nV +nV +nV +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +LV +pb +pb +pb +BJ +BJ +pb +pb +pb +pb +pb +pb +pb +pb +BJ +pb +pb +pb +xI +xI +xI +xI +NJ +xI +xI +em +em +tv +em +em +em +Lv +Lv +Lv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(115,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +xI +Qe +pb +pb +pb +pb +pb +pb +xI +xI +xI +pb +xI +pb +pb +pb +pb +xI +xI +pb +xI +Qe +xI +pb +pb +pb +pb +pb +pb +Qe +xI +pb +nV +nV +nV +nV +nV +nV +nV +nV +nV +nV +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +BJ +BJ +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +xI +iS +iS +iS +xM +iS +iS +iS +em +tv +em +em +em +Lv +Lv +Lv +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(116,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +xI +xI +xI +pb +xI +xI +xI +pb +pb +pb +xI +pb +xI +pb +xI +xI +pb +Qe +xI +xI +xI +xI +xI +xI +pb +xI +xI +xI +pb +pb +xI +pb +Qe +pb +pb +Qe +pb +pb +Qe +pb +pb +Qe +pb +lw +pb +pb +pb +pb +LV +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +BJ +pb +pb +Qe +pb +pb +pb +xI +xI +xI +iS +Nf +oP +js +um +js +iS +tv +tv +em +em +em +Lv +Lv +Lv +Lv +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(117,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +em +xI +pb +xI +xI +xI +xI +xI +pb +xI +pb +xI +pb +xI +pb +pb +pb +xI +lw +pb +pb +xI +pb +pb +xI +pb +pb +pb +xI +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +lw +pb +pb +pb +pb +pb +pb +pb +pb +pb +Qe +pb +pb +pb +LV +BJ +BJ +pb +pb +pb +pb +pb +xI +em +em +iS +ut +ut +um +rs +oP +iS +tv +em +em +em +em +Lv +Lv +Lv +Lv +Lv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(118,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +em +em +xI +pb +pb +xI +nK +nK +xI +pb +xI +pb +xI +pb +xI +xI +xI +xI +xI +xI +pb +pb +xI +pb +pb +xI +pb +pb +xI +xI +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +BJ +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +xI +em +em +iS +um +um +um +oP +um +iS +tv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(119,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +tv +em +em +xI +xI +pb +xI +xI +nK +xI +pb +xI +pb +xI +pb +pb +xI +pb +pb +pb +xI +pb +pb +xI +pb +pb +xI +pb +xI +xI +em +xI +pb +pb +pb +pb +pb +lw +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +lw +pb +pb +xI +em +em +iS +KV +um +Ni +um +Vv +iS +tv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(120,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +em +em +em +xI +pb +pb +xI +nK +xI +pb +xI +pb +xI +pb +pb +xI +Qe +pb +pb +xI +xI +pb +xI +xI +xI +xI +xI +xI +em +em +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +AZ +pb +pb +Qe +pb +pb +pb +pb +pb +pb +pb +BJ +BJ +pb +pb +pb +pb +pb +pb +Bb +pb +pb +xI +em +em +iS +um +js +iS +Vv +NY +iS +tv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(121,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +tv +em +em +em +xI +xI +pb +xI +nK +xI +pb +xI +pb +pb +lw +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +xI +xI +em +em +em +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +BJ +pb +pb +pb +pb +pb +pb +pb +pb +xI +em +em +iS +Zn +iS +iS +iS +Zn +iS +tv +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(122,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +tv +em +xI +xI +xI +pb +pb +xI +nK +xI +pb +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +pb +xI +xI +em +em +em +xI +pb +pb +Qe +pb +LV +pb +pb +pb +LV +pb +pb +pb +pb +Qe +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +lw +pb +pb +pb +pb +pb +pb +pb +LV +pb +pb +pb +pb +xI +em +em +iS +iS +iS +iS +iS +iS +iS +tv +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(123,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +xI +pb +pb +pb +xI +xI +nK +xI +pb +xI +pb +xI +aZ +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +xI +em +em +em +em +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +In +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +LV +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +xI +em +em +iS +iS +iS +iS +iS +iS +iS +tv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(124,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +xI +xI +xI +pb +xI +xI +xI +xI +pb +pb +cq +pb +pb +pb +pb +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +em +em +em +em +xI +pb +pb +pb +lw +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +lw +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +Qe +pb +pb +pb +pb +pb +Qe +pb +pb +xI +em +em +em +em +em +em +em +em +tv +tv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(125,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +tv +em +em +xI +Qe +pb +pb +pb +pb +pb +pb +pb +xI +pb +xI +Qe +xI +xI +em +em +em +em +em +em +em +xI +xI +em +em +em +em +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +xI +xI +xI +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +pb +xI +em +em +em +em +em +em +em +tv +tv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(126,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +tv +em +em +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +em +em +em +em +em +em +em +em +em +em +em +em +em +em +xI +pb +pb +pb +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +pb +pb +xI +xI +em +xI +xI +xI +pb +pb +pb +pb +pb +xI +xI +xI +xI +xI +xI +xI +pb +pb +pb +pb +pb +xI +xI +xI +em +em +em +em +em +tv +tv +tv +em +em +em +vr +Lv +Lv +Lv +Lv +Lv +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(127,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +xI +xI +xI +xI +xI +em +em +em +em +em +em +em +em +em +em +xI +xI +xI +xI +em +em +em +em +xI +xI +xI +xI +xI +xI +xI +em +em +em +em +em +xI +xI +xI +xI +xI +xI +xI +em +em +em +em +tv +tv +tv +tv +em +em +em +vr +vr +vr +vr +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(128,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +tv +em +em +em +em +vr +vr +vr +vr +vr +vr +vr +vr +vr +em +Lv +Lv +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(129,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +Lv +vr +vr +vr +vr +vr +vr +vr +vr +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(130,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +vr +vr +vr +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +vr +vr +vr +vr +vr +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(131,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +vr +em +em +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +vr +vr +vr +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(132,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +vr +vr +vr +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +vr +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(133,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +vr +Lv +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(134,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +em +Lv +Lv +Lv +Lv +Lv +em +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +em +Lv +Lv +em +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(135,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(136,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(137,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(138,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(139,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(140,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(141,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(142,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(143,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(144,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(145,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(146,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(147,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(148,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(149,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} +(150,1,1) = {" +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +Lv +"} diff --git a/_maps/map_files220/cyberiad/cyberiad.dmm b/_maps/map_files220/cyberiad/cyberiad.dmm new file mode 100644 index 000000000000..e7a6c6f5e7b5 --- /dev/null +++ b/_maps/map_files220/cyberiad/cyberiad.dmm @@ -0,0 +1,166616 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/space, +/area/space) +"aab" = ( +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"aac" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"aad" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aaf" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"aag" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"aah" = ( +/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" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/ai_slipper, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"aai" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"aau" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"aaQ" = ( +/obj/docking_port/stationary/whiteship{ + dir = 8; + id = "whiteship_cyberiad"; + name = "North of Cyberiad"; + dwidth = 8; + height = 31 + }, +/turf/space, +/area/space) +"aaZ" = ( +/obj/structure/curtain/open/shower{ + anchored = 1 + }, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/fsmaint) +"abd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"abp" = ( +/obj/effect/landmark/spawner/carp, +/turf/space, +/area/space) +"abN" = ( +/turf/simulated/wall/r_wall, +/area/station/security/permabrig) +"abO" = ( +/obj/effect/decal/warning_stripes/eastnorthwest, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/department/security{ + pixel_y = 22 + }, +/obj/item/radio/intercom/custom{ + pixel_y = 36 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"abP" = ( +/obj/machinery/suit_storage_unit/security, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"abY" = ( +/obj/structure/marker_beacon/dock_marker/collision, +/obj/effect/decal/warning_stripes/red, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"aca" = ( +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/range) +"acb" = ( +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/range) +"acc" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"acf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/engineering/gravitygenerator) +"ach" = ( +/obj/structure/target_stake, +/obj/machinery/magnetic_module, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"aci" = ( +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/security/main) +"acj" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"aco" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/range) +"act" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/range) +"acu" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/range) +"acv" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/range) +"acw" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/main) +"acx" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/security/main) +"acy" = ( +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/security/main) +"acB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"acD" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/sink/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/security/main) +"acE" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"acH" = ( +/obj/structure/rack, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/structure/window/reinforced, +/obj/item/grenade/barrier{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"acK" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"acL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"acM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/main) +"acO" = ( +/obj/machinery/magnetic_controller{ + autolink = 1; + name = "Firing Range Control Console"; + path = "w;e;e;w;s;n;n;s" + }, +/turf/simulated/wall, +/area/station/security/range) +"acP" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 4 + }, +/obj/structure/sign/goldenplaque{ + pixel_y = 30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"acR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/junglebush/large, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"acS" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/main) +"acV" = ( +/obj/item/restraints/handcuffs/pinkcuffs, +/turf/simulated/floor/plating, +/area/station/security/main) +"acW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"acX" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/storage/secure/briefcase, +/obj/item/mop, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"adb" = ( +/obj/structure/rack, +/obj/item/storage/lockbox/mindshield, +/obj/item/storage/box/trackimp, +/obj/item/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"adg" = ( +/obj/structure/dispenser/oxygen, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"adh" = ( +/obj/machinery/suit_storage_unit/security, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"adi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"adj" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"adl" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"adm" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/laser/practice, +/obj/machinery/recharger, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plating, +/area/station/security/range) +"ado" = ( +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"adp" = ( +/obj/machinery/door/airlock/bathroom{ + name = "Unisex Restrooms" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"adw" = ( +/obj/structure/table, +/obj/item/ashtray/bronze{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"adz" = ( +/obj/machinery/conveyor/west{ + dir = 10; + id = "garbage" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"adB" = ( +/obj/docking_port/stationary{ + dwidth = 8; + height = 22; + id = "syndicate_nw"; + name = "northwest of station"; + width = 18 + }, +/turf/space, +/area/space) +"adE" = ( +/obj/effect/decal/warning_stripes/red/hollow, +/obj/structure/chair/stool, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"adH" = ( +/obj/machinery/suit_storage_unit/security/hos, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"adI" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/button/windowtint/north{ + id = "hos_room"; + pixel_x = 10 + }, +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"adN" = ( +/obj/structure/table, +/obj/item/instrument/harmonica, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"adP" = ( +/obj/structure/rack, +/obj/structure/rack, +/obj/item/storage/box/rubbershot{ + pixel_y = -3 + }, +/obj/item/storage/box/rubbershot{ + pixel_y = -3 + }, +/obj/item/storage/box/rubbershot{ + pixel_y = -3 + }, +/obj/item/storage/box/beanbag{ + pixel_y = 3 + }, +/obj/item/storage/box/beanbag{ + pixel_y = 3 + }, +/obj/item/storage/box/beanbag{ + pixel_y = 3 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"adQ" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/mask/balaclava, +/obj/effect/decal/warning_stripes/red, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"adX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"adY" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/main) +"adZ" = ( +/obj/structure/sign/directions/engineering, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = -7 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 7 + }, +/turf/simulated/wall, +/area/station/command/office/blueshield) +"aeb" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"aeg" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/security/prisonlockers) +"aej" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"aek" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/clothing/mask/balaclava, +/obj/effect/decal/warning_stripes/red, +/obj/machinery/camera{ + c_tag = "Brig Security Equipment Lockers"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"ael" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/main) +"aem" = ( +/obj/machinery/door/airlock/external{ + id_tag = "laborcamp_home"; + locked = 1; + name = "Labor Camp Airlock" + }, +/obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/turf/simulated/floor/plating, +/area/station/security/brig) +"aev" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/range) +"aex" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"aey" = ( +/obj/machinery/computer/brigcells{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/warden) +"aeA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Brig Restroom"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/security/main) +"aeB" = ( +/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/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"aeC" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mug/hos, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/lighter/zippo/hos, +/obj/effect/spawner/lootdrop/officetoys, +/turf/simulated/floor/carpet, +/area/station/command/office/hos) +"aeD" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/machinery/button/windowtint/east{ + id = "HoS"; + pixel_y = -8; + req_one_access_txt = "58" + }, +/obj/machinery/keycard_auth/east{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"aeE" = ( +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"aeF" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"aeG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"aeH" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/brig) +"aeI" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/brig) +"aeJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"aeP" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/maintenance/apmaint) +"aeR" = ( +/obj/machinery/flasher/portable, +/obj/machinery/camera{ + c_tag = "Brig Secure Armory North" + }, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"aeS" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"aeT" = ( +/obj/machinery/kitchen_machine/oven, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"aeU" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light/directional/west, +/obj/machinery/light_switch/west, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/warden) +"aeV" = ( +/obj/machinery/computer/security{ + dir = 8; + network = list("SS13","Research Outpost","Mining Outpost") + }, +/obj/item/radio/intercom/custom{ + dir = 8; + pixel_x = 36 + }, +/obj/item/radio/intercom/department/security{ + pixel_x = 22; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"afa" = ( +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"afe" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Armory_South"; + location = "Armory_North" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"afk" = ( +/obj/machinery/photocopier, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/warden) +"afl" = ( +/obj/machinery/door_control/shutter/south{ + id = "Secure Gate"; + name = "Brig Lockdown"; + pixel_x = 6; + req_one_access_txt = "2" + }, +/obj/machinery/door_control/shutter/south{ + desc = "A remote control-switch to lock down the prison wing's blast doors"; + id = "Prison Gate"; + name = "Prison Wing Lockdown"; + pixel_x = -6; + req_one_access_txt = "2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/warden) +"afm" = ( +/turf/simulated/wall/r_wall, +/area/station/security/warden) +"afo" = ( +/obj/structure/table, +/obj/item/storage/box/prisoner, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/brig) +"afs" = ( +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "purple" + }, +/area/station/science/hallway) +"afu" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"afx" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/flashbangs, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"afK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/main) +"afM" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + on = 0; + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/stamp/hos, +/obj/item/paper_bin/nanotrasen, +/obj/item/pen/multi, +/turf/simulated/floor/carpet, +/area/station/command/office/hos) +"afO" = ( +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"afT" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"afV" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"afX" = ( +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"agb" = ( +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"agc" = ( +/obj/structure/curtain/open/shower/security{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/item/soap/nanotrasen, +/obj/machinery/shower{ + pixel_y = 20 + }, +/obj/effect/turf_decal/miscellaneous/plumbing{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/security/main) +"agk" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/brig) +"ago" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"agq" = ( +/obj/machinery/camera{ + c_tag = "Brig Main Hall West 2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"agt" = ( +/obj/machinery/door/poddoor/impassable/gamma, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"agO" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"agP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"agS" = ( +/obj/machinery/flasher/portable, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"agT" = ( +/obj/machinery/power/apc/directional/north, +/obj/machinery/camera{ + c_tag = "Brig Main Hall Center" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"agV" = ( +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"agW" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"agZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/multi_tile/security/glass{ + name = "Labor Camp Transfer" + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"ahf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/main) +"ahk" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"ahm" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/sop_security{ + pixel_x = -6 + }, +/obj/item/book/manual/wiki/sop_legal{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/machinery/door_control/normal{ + id = "hosofficedoor"; + name = "Office Door"; + pixel_x = 6; + pixel_y = 15; + req_one_access_txt = "58" + }, +/obj/machinery/door_control/shutter{ + desc = "A remote control-switch to lock down the prison wing's blast doors"; + id = "Prison Gate"; + name = "Prison Wing Lockdown"; + pixel_x = 6; + pixel_y = 6; + req_one_access_txt = "2" + }, +/obj/machinery/door_control/shutter{ + id = "Secure Gate"; + name = "Brig Lockdown"; + pixel_x = 6; + pixel_y = -3; + req_one_access_txt = "2" + }, +/turf/simulated/floor/carpet, +/area/station/command/office/hos) +"ahr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"ahA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ahB" = ( +/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/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"ahD" = ( +/obj/item/radio/intercom/department/security{ + pixel_y = 22 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"ahF" = ( +/turf/space, +/area/shuttle/gamma/station) +"ahG" = ( +/obj/structure/rack/gunrack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/gun/projectile/shotgun/riot{ + pixel_x = 8 + }, +/obj/item/gun/projectile/shotgun/riot{ + pixel_x = 4 + }, +/obj/item/gun/projectile/shotgun/riot, +/obj/item/gun/projectile/shotgun/riot{ + pixel_x = -4 + }, +/obj/item/gun/projectile/shotgun/riot{ + pixel_x = -8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"ahQ" = ( +/obj/machinery/alarm/directional/north, +/obj/machinery/camera{ + c_tag = "Brig Main Hall East 1" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"ahR" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"ahT" = ( +/obj/structure/reagent_dispensers/peppertank/north, +/obj/effect/decal/warning_stripes/eastnorthwest, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"ahU" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/effect/decal/warning_stripes/northeastcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"ahV" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Armory_North"; + location = "Armory_South" + }, +/mob/living/simple_animal/bot/secbot/armsky{ + auto_patrol = 1 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"ahW" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/machinery/power/apc/important/east, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"aic" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"aid" = ( +/obj/machinery/door/firedoor, +/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/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"aif" = ( +/obj/structure/rack, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/seccarts{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"aig" = ( +/turf/simulated/wall/r_wall, +/area/station/aisat/service) +"aih" = ( +/turf/simulated/wall/r_wall, +/area/station/command/office/hos) +"aij" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"aio" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"aip" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/storage/box/tranquilizer, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"aiq" = ( +/obj/structure/rack/gunrack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/gun/energy/laser{ + pixel_x = 8 + }, +/obj/item/gun/energy/laser{ + pixel_x = 4 + }, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser{ + pixel_x = -4 + }, +/obj/item/gun/energy/laser{ + pixel_x = -8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"air" = ( +/obj/machinery/economy/vending/security, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"ait" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"aiv" = ( +/turf/simulated/wall/r_wall, +/area/station/security/armory/secure) +"aiw" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Armory Exterior"; + dir = 1 + }, +/turf/space, +/area/station/security/armory/secure) +"aiz" = ( +/obj/machinery/alarm/directional/west, +/obj/effect/decal/warning_stripes/north, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"aiB" = ( +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/suit/hooded/ablative, +/obj/item/gun/energy/ionrifle, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"aiD" = ( +/obj/machinery/status_display/directional/north, +/obj/machinery/camera{ + c_tag = "Brig Main Hall West 1" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"aiN" = ( +/obj/structure/rack/gunrack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/gun/energy/gun{ + pixel_x = 8 + }, +/obj/item/gun/energy/gun{ + pixel_x = 4 + }, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun{ + pixel_x = -4 + }, +/obj/item/gun/energy/gun{ + pixel_x = -8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"aiO" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/warning_stripes/east, +/obj/machinery/camera{ + c_tag = "Brig Secure Armory East"; + dir = 8 + }, +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"aiU" = ( +/obj/machinery/light_switch/south, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"aiV" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"aiX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"aiY" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"aja" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"ajg" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"ajj" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"ajk" = ( +/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" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"ajn" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/lobby) +"ajp" = ( +/obj/machinery/ai_status_display/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/brig) +"ajq" = ( +/obj/structure/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/suit/armor/bulletproof/sec{ + pixel_x = -3 + }, +/obj/item/clothing/suit/armor/bulletproof/sec, +/obj/item/clothing/suit/armor/bulletproof/sec{ + pixel_x = 3 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_y = 8; + pixel_x = -3 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_y = 8 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_y = 8; + pixel_x = 3 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"ajr" = ( +/obj/structure/rack/gunrack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/gun/energy/disabler{ + pixel_x = 8 + }, +/obj/item/gun/energy/disabler{ + pixel_x = 4 + }, +/obj/item/gun/energy/disabler, +/obj/item/gun/energy/disabler{ + pixel_x = -4 + }, +/obj/item/gun/energy/disabler{ + pixel_x = -8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"ajx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"ajy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"ajJ" = ( +/obj/structure/sign/poster/official/random/north, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"ajK" = ( +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_y = -3; + pixel_x = -3 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"ajN" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"ajP" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"ajT" = ( +/obj/structure/sign/poster/official/random/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"ajU" = ( +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"ajV" = ( +/turf/simulated/floor/carpet, +/area/station/command/office/hos) +"akf" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"aki" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"akl" = ( +/obj/machinery/flasher/portable, +/obj/machinery/status_display/directional/north, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"akm" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/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/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"akt" = ( +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/item/clothing/suit/armor/riot/sec{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot/sec, +/obj/item/clothing/suit/armor/riot/sec{ + pixel_y = -3; + pixel_x = -3 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"aku" = ( +/obj/structure/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"akv" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"akw" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"akx" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/brig) +"akB" = ( +/turf/simulated/wall/r_wall, +/area/station/security/range) +"akC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"akD" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"akF" = ( +/obj/machinery/newscaster/security_unit/north, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"akG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table, +/obj/item/storage/pill_bottle/dice, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"akI" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"akJ" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "HoS" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"akK" = ( +/obj/machinery/alarm/directional/north, +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Head of Security's Office"; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"akL" = ( +/obj/structure/flora/rock/jungle, +/mob/living/simple_animal/lizard{ + name = "Greentext" + }, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"akN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"akQ" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"akW" = ( +/turf/simulated/wall, +/area/station/security/range) +"akY" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"akZ" = ( +/turf/simulated/wall/r_wall, +/area/station/security/prisonlockers) +"alc" = ( +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "IAA" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/turf/simulated/floor/plating, +/area/station/legal/lawoffice) +"ald" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/lawyer/glass{ + name = "Internal Affairs Office" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "IAA" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/iaa, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"ale" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"alf" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"alh" = ( +/obj/structure/table/wood, +/obj/item/stamp/hop{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/stamp/granted{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stamp/denied{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/machinery/newscaster/security_unit/north, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"alk" = ( +/obj/machinery/light/directional/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"aln" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"alo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/brig) +"alp" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/effect/landmark/start/detective, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"alq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/main) +"alr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/machinery/door/airlock/multi_tile/security/glass{ + id_tag = "BrigLeft"; + name = "Brig Foyer Left Entrance" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/brig) +"als" = ( +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/asmaint2) +"alt" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"alu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/main) +"alv" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"alB" = ( +/turf/simulated/floor/plasteel, +/area/station/security/range) +"alD" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/tracker, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxstarboard) +"alG" = ( +/obj/machinery/economy/vending/cigarette/free, +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"alH" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/papershredder, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"alJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"alL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/lobby) +"alM" = ( +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"alN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/brig) +"alP" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"alQ" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"alR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "Brig"; + name = "Prisoner Processing" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/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/mapping_helpers/airlock/polarized{ + id = "Processing" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"alS" = ( +/obj/structure/closet, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"alT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Warden's Office" + }, +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/security/armory, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/warden) +"alV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Warden's Office" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/armory, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/warden) +"alX" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "Secure Armory"; + name = "Secure Armory Shutters" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"alZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/reinforced/normal{ + name = "Secure Armory" + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 1; + name = "Secure Armory" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/armory{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"ama" = ( +/obj/structure/closet, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"amb" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"amc" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"amd" = ( +/obj/structure/chair/stool, +/obj/effect/decal/warning_stripes/red/hollow, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"ame" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + security_level = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"amf" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/mask/balaclava, +/obj/effect/decal/warning_stripes/red, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"amh" = ( +/obj/structure/grille/broken, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"amm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/main) +"amn" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/book/manual/wiki/sop_legal, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"amr" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/landmark/start/head_of_security, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/main) +"ams" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/east, +/obj/effect/turf_decal/caution{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/permabrig) +"amt" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security Requests Console"; + pixel_x = 30 + }, +/obj/machinery/computer/brigcells{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"amv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"amw" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 1; + location = "Security" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/machinery/door/window/classic/reversed, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"amy" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/warden) +"amz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/bed/dogbed, +/mob/living/simple_animal/pet/dog/security/warden, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/warden) +"amA" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 2 + }, +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Brig Warden's Office" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/warden) +"amC" = ( +/obj/structure/closet/secure_closet/warden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/warden) +"amE" = ( +/obj/machinery/computer/prisoner{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/warden) +"amG" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = -8 + }, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = -4 + }, +/obj/item/reagent_containers/spray/pepper, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = 4 + }, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/storage) +"amH" = ( +/obj/structure/rack, +/obj/machinery/recharger/wallcharger{ + pixel_y = 25 + }, +/obj/machinery/recharger/wallcharger{ + pixel_y = 35 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = -8 + }, +/obj/item/assembly/timer{ + pixel_y = -6 + }, +/obj/item/flash, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/storage) +"amI" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/security/storage) +"amJ" = ( +/obj/structure/rack, +/obj/structure/reagent_dispensers/peppertank/north, +/obj/machinery/light/directional/north, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/item/clothing/accessory/holster{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/accessory/holster{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/accessory/holster{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/accessory/holster{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/clothing/accessory/holster, +/obj/item/restraints/handcuffs{ + pixel_y = -4 + }, +/obj/item/restraints/handcuffs, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/storage) +"amK" = ( +/obj/structure/sink/kitchen/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"amL" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"amM" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/main) +"amO" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"amP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/main) +"amQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/main) +"amS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/station/command/office/hos) +"amT" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "HoS" + }, +/obj/machinery/door/airlock/command/hos/glass{ + id_tag = "hosofficedoor"; + name = "Head of Security" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/hos, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"amU" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/tracker, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxport) +"amW" = ( +/obj/effect/landmark/burnturf, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"anb" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/station/command/office/hos) +"and" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/landmark/start/head_of_security, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/station/command/office/hos) +"anf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"ang" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Prison General South"; + dir = 8; + network = list("Prison","SS13") + }, +/obj/machinery/cryopod, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/permabrig) +"anh" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Air to Port" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"ank" = ( +/obj/structure/chair/sofa/bench/right{ + cover_color = "#85130b"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"ann" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxstarboard) +"anp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/engineering/utility) +"anq" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"anu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/permabrig) +"anv" = ( +/turf/simulated/wall, +/area/station/security/armory/secure) +"anA" = ( +/turf/simulated/wall, +/area/station/security/main) +"anD" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/reinforced/normal{ + dir = 8; + name = "Warden's Desk" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/armory{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/security/warden) +"anE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/warden) +"anG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxport) +"anH" = ( +/turf/simulated/wall/r_wall, +/area/station/security/main) +"anJ" = ( +/turf/simulated/floor/plasteel, +/area/station/security/storage) +"anL" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/main) +"anM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"anN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table, +/obj/item/deck/cards, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"anS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/main) +"anT" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/brig) +"anU" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/book/manual/wiki/sop_security, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"anW" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"anX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/lobby) +"anZ" = ( +/obj/structure/table, +/obj/item/camera{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/taperecorder{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"aoa" = ( +/obj/structure/table, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Internal Affairs Office" + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/directional/north, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"aob" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/internal_affairs, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"aoe" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"aog" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"aoh" = ( +/obj/effect/turf_decal/stripes/red/corner{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/brig) +"aok" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/lobby) +"aom" = ( +/obj/machinery/computer/brigcells{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/lobby) +"aop" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/lobby) +"aor" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"aot" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/security/warden) +"aov" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/warden, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/warden) +"aow" = ( +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"aox" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/warden) +"aoz" = ( +/obj/structure/table/reinforced, +/obj/item/radio/security{ + pixel_x = -8 + }, +/obj/item/radio/security{ + pixel_x = -4 + }, +/obj/item/radio/security, +/obj/item/radio/security{ + pixel_x = 4 + }, +/obj/item/radio/security{ + pixel_x = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/storage) +"aoA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"aoB" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/security/storage) +"aoC" = ( +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/security/glass{ + dir = 2; + name = "Equipment Storage" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/storage) +"aoJ" = ( +/turf/simulated/floor/plasteel, +/area/station/security/main) +"aoL" = ( +/obj/structure/table, +/obj/item/taperecorder, +/obj/machinery/light_switch/west, +/obj/item/radio/intercom/department/security{ + pixel_y = 22 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"aoM" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/main) +"aoN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/main) +"aoO" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/lobby) +"aoP" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/main) +"aoR" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"aoS" = ( +/obj/machinery/light/directional/east, +/obj/machinery/computer/card/minor/hos{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"aoU" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/item/bedsheet/red{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 1" + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"aoW" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"aoX" = ( +/obj/structure/bed/mattress, +/obj/machinery/camera{ + c_tag = "Brig Cell 3" + }, +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_y = 28 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"aoY" = ( +/turf/simulated/floor/plasteel{ + icon_state = "rampbottom" + }, +/area/station/security/prison/cell_block/A) +"apa" = ( +/obj/structure/table, +/obj/item/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "Camera"; + pictures_left = 30 + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"apc" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/newscaster/security_unit/east, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"apd" = ( +/obj/structure/closet, +/obj/machinery/alarm/directional/west, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"ape" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/requests_console{ + department = "Warden"; + departmentType = 7; + name = "Warden's Requests Console"; + pixel_y = -32 + }, +/obj/item/radio/intercom/department/security{ + pixel_x = -22; + dir = 4 + }, +/obj/item/radio/intercom/custom{ + dir = 4; + pixel_x = -36 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/warden) +"apf" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/warden) +"apg" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/sop_legal, +/obj/item/paper/armory, +/obj/item/clipboard, +/obj/item/stamp/warden, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/warden) +"aph" = ( +/obj/machinery/papershredder, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/warden) +"api" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/megaphone, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/warden) +"apj" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/warden) +"apk" = ( +/obj/machinery/computer/security{ + dir = 8; + network = list("SS13","Research Outpost","Mining Outpost") + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/warden) +"apn" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxstarboard) +"apo" = ( +/obj/structure/grille/broken, +/turf/space, +/area/space/nearstation) +"app" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/solar{ + name = "Port Solar Array" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/engineering/solar/auxstarboard) +"apq" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + name = "Port Solar Array" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/engineering/solar/auxstarboard) +"aps" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"apu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"apy" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 8; + req_one_access_txt = "63" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/doors{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"apz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/cyan, +/area/station/security/prison/cell_block/A) +"apA" = ( +/obj/machinery/economy/vending/wallmed/directional/west, +/obj/structure/table/reinforced, +/obj/item/stack/medical/bruise_pack/advanced, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Brig Security Equipment South"; + dir = 4 + }, +/obj/item/crowbar/red, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/storage) +"apB" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/storage) +"apE" = ( +/obj/machinery/disposal, +/obj/machinery/alarm/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/storage) +"apG" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"apH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"apI" = ( +/obj/machinery/light/directional/south, +/obj/item/flag/sec, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"apJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"apK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"apM" = ( +/obj/machinery/camera{ + c_tag = "Brig Briefing Room" + }, +/obj/item/radio/intercom/department/security{ + pixel_y = 22 + }, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"apO" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"apQ" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "HoS" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"apS" = ( +/turf/simulated/wall, +/area/station/security/storage) +"apT" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"apU" = ( +/obj/structure/table/wood, +/obj/machinery/power/apc/directional/south, +/obj/machinery/camera{ + c_tag = "Brig Head of Security's Office"; + dir = 1 + }, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/cartridge/detective, +/obj/item/megaphone, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"apV" = ( +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_x = -3 + }, +/obj/item/radio/security{ + pixel_x = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"apW" = ( +/obj/machinery/disposal, +/obj/machinery/light_switch/south, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"apY" = ( +/obj/structure/bed, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"apZ" = ( +/obj/item/storage/secure/safe{ + pixel_y = 30 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aqb" = ( +/obj/item/storage/secure/safe{ + pixel_y = 30 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aqc" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/fore) +"aqd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"aqn" = ( +/obj/item/flag/sec, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aqq" = ( +/obj/item/soap, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aqr" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aqu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"aqv" = ( +/turf/simulated/wall, +/area/station/security/warden) +"aqx" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/warden) +"aqy" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/machinery/door/airlock/multi_tile/security/glass{ + name = "Equipment Storage" + }, +/turf/simulated/floor/plasteel, +/area/station/security/storage) +"aqE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"aqF" = ( +/obj/machinery/monkey_recycler, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/xenobiology) +"aqG" = ( +/turf/simulated/wall, +/area/station/command/office/hos) +"aqH" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/airlock/command/hos{ + name = "Head of Security" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/hos, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"aqI" = ( +/turf/simulated/wall/r_wall, +/area/station/security/brig) +"aqP" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aqQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/meter, +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"aqR" = ( +/obj/structure/closet/bombclosetsecurity, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"aqS" = ( +/obj/machinery/computer/security{ + dir = 4; + network = list("Prison") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"aqU" = ( +/obj/structure/chair/comfy/red{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/cyan, +/area/station/security/prison/cell_block/A) +"aqV" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "IAA" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/turf/simulated/floor/plating, +/area/station/legal/lawoffice) +"aqW" = ( +/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" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"aqX" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"aqY" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"aqZ" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxstarboard) +"ara" = ( +/obj/structure/table, +/obj/item/folder{ + pixel_x = -4 + }, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/folder/blue{ + pixel_x = 5 + }, +/obj/item/folder/yellow{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stamp/law, +/obj/item/pen/multi, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"arb" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxport) +"arj" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/lobby) +"ark" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/lobby) +"arl" = ( +/obj/machinery/computer/security{ + dir = 4; + network = list("SS13","Research Outpost","Mining Outpost") + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/lobby) +"arn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"arp" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/lobby) +"ars" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/brig) +"ary" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/processing) +"arA" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/brig) +"arC" = ( +/obj/item/radio/intercom/department/security{ + pixel_y = 22 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"arD" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"arE" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light_switch/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/processing) +"arF" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/processing) +"arH" = ( +/obj/item/mop, +/obj/item/reagent_containers/glass/bottle/ammonia, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"arK" = ( +/obj/machinery/power/apc/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"arL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxport) +"arM" = ( +/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/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxport) +"arN" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxport) +"arQ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/security/evidence) +"arR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall, +/area/station/maintenance/fore) +"arS" = ( +/obj/item/toy/pet_rock, +/obj/machinery/door_control/bolt_control/east{ + id = "secmaintdorm1" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"arT" = ( +/obj/item/toy/plushie/deer, +/obj/machinery/door_control/bolt_control/east{ + id = "secmaintdorm2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"arU" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxport) +"arX" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + name = "Port Auxiliary Solar Array" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/engineering/solar/auxport) +"asb" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxport) +"asc" = ( +/obj/effect/spawner/random_barrier/obstruction, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"asf" = ( +/obj/effect/spawner/random_barrier/possibly_welded_airlock, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"asg" = ( +/obj/item/bikehorn/rubberducky, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/locked/prison{ + name = "Prison Intercom (General)"; + pixel_y = 22 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"asi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/permabrig) +"asj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/sofa/bench/right{ + cover_color = "#85130b"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/permabrig) +"asl" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/permabrig) +"asr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/permabrig) +"ass" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/security/armory, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"asu" = ( +/obj/item/melee/baseball_bat, +/obj/structure/table, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"asy" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"asz" = ( +/obj/machinery/light/small/directional/east, +/obj/item/storage/bag/trash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"asD" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "IAA" + }, +/turf/simulated/floor/plating, +/area/station/legal/lawoffice) +"asF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"asI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"asJ" = ( +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/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/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"asL" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxport) +"asM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxport) +"asN" = ( +/turf/simulated/floor/carpet, +/area/station/legal/lawoffice) +"asO" = ( +/obj/machinery/computer/prisoner{ + dir = 4; + req_access = null; + req_one_access_txt = "2" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"asP" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"asQ" = ( +/obj/machinery/light/directional/west, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"asR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/lobby) +"asU" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"asX" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/lobby) +"asY" = ( +/obj/structure/chair/office/dark, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/lobby) +"atb" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/cyan, +/area/station/security/prison/cell_block/A) +"atc" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/fore) +"ate" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"atg" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"ati" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/processing) +"atk" = ( +/obj/structure/chair{ + 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/plasteel, +/area/station/security/processing) +"atl" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"atp" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 8; + req_one_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/doors{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"atr" = ( +/obj/machinery/door/airlock{ + id_tag = "secmaintdorm1"; + name = "Room 1" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ats" = ( +/obj/machinery/door/airlock{ + id_tag = "secmaintdorm2"; + name = "Room 2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"att" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"atu" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/canister/air{ + filled = 0.1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"atw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"atx" = ( +/obj/machinery/light/directional/south, +/obj/machinery/newscaster/security_unit/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"aty" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"atA" = ( +/obj/machinery/door/airlock{ + name = "Prison Showers" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"atC" = ( +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"atF" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + name = "Port Auxiliary Solar Array" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/engineering/solar/auxport) +"atG" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/fore) +"atJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/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/wood/oak, +/area/station/command/office/hop) +"atN" = ( +/obj/machinery/computer/prisoner{ + dir = 4; + req_access = null; + req_one_access_txt = "2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/brig) +"atO" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Prison Forestry" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"atS" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"atT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/sign/vacuum/external{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"atY" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"aua" = ( +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"auc" = ( +/turf/simulated/wall, +/area/station/security/brig) +"aue" = ( +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/dirt, +/obj/item/screwdriver, +/obj/item/wrench, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"auf" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/permabrig) +"aug" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"auh" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/permabrig) +"aui" = ( +/obj/machinery/status_display{ + layer = 4 + }, +/turf/simulated/wall, +/area/station/security/storage) +"auj" = ( +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/permabrig) +"aul" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/firealarm/directional/east, +/obj/structure/rack, +/obj/item/storage/box/handcuffs{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/teargas, +/obj/item/megaphone{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/permabrig) +"aum" = ( +/obj/machinery/door_timer/cell_3{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"aun" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"auo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"aup" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Security Pod" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"auq" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_3) +"auy" = ( +/obj/machinery/camera{ + c_tag = "Brig Labor Camp Airlock North" + }, +/obj/structure/table, +/obj/item/clothing/under/color/orange/prison, +/obj/item/clothing/shoes/orange, +/obj/item/restraints/handcuffs, +/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/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"auD" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/lobby) +"auE" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Processing" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/security/processing) +"auF" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/lobby) +"auI" = ( +/obj/structure/closet, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"auJ" = ( +/obj/structure/table/reinforced{ + layer = 2.5 + }, +/obj/machinery/door/window/reinforced/normal{ + name = "Security Reception" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general, +/obj/machinery/door_control/normal{ + desc = "A remote control switch for the brig foyer."; + id = "BrigLeft"; + name = "Brig Foyer Left Doors"; + pixel_x = -5; + pixel_y = 6; + req_one_access_txt = "63" + }, +/obj/machinery/door_control/normal{ + desc = "A remote control switch for the brig foyer."; + id = "BrigRight"; + name = "Brig Foyer Right Doors"; + pixel_x = 5; + pixel_y = 6; + req_one_access_txt = "63" + }, +/obj/machinery/door_control/normal{ + desc = "A remote control switch for the brig foyer."; + id = "BrigEast"; + name = "Brig Foyer East Doors"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "63" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/lobby) +"auK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"auL" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/lobby) +"auM" = ( +/obj/machinery/power/apc/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"auN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor{ + dir = 1; + id = "Cell 1"; + name = "Cell 1" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/prison/cell_block/A) +"auO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/warden) +"auP" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + id = "Cell 3"; + name = "Cell 3" + }, +/obj/machinery/door/firedoor, +/obj/item/radio/intercom/directional/east, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/prison/cell_block/A) +"auR" = ( +/obj/machinery/camera{ + c_tag = "Brig Cell Block A North"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"auS" = ( +/obj/machinery/light_switch/west, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"auT" = ( +/obj/machinery/camera{ + c_tag = "Brig Prisoner Processing West"; + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/button/windowtint/west{ + id = "Processing"; + req_one_access_txt = "63" + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"auU" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"auV" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/brig) +"auW" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"auX" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"auY" = ( +/obj/structure/table, +/obj/machinery/light_switch/south, +/obj/item/hand_labeler, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"auZ" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ava" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"avb" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"avc" = ( +/obj/item/toy/figure/crew/secofficer, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"avd" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"ave" = ( +/obj/machinery/camera{ + c_tag = "Brig Main Hall South-West"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/brig) +"avf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"avg" = ( +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"avh" = ( +/obj/machinery/hologram/holopad{ + pixel_x = -16 + }, +/obj/effect/decal/warning_stripes/southeastcorner, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"avi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"avj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"avk" = ( +/obj/machinery/camera{ + c_tag = "Prison Forestry North"; + dir = 6; + network = list("Prison","SS13") + }, +/obj/structure/flora/junglebush, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"avl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"avm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"avo" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/light/directional/east, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"avp" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_3) +"avq" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"avs" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"avt" = ( +/obj/docking_port/mobile/pod{ + dir = 4; + id = "pod3"; + name = "escape pod 3" + }, +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock"; + name = "Escape Pod Hatch" + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_3) +"avu" = ( +/obj/machinery/status_display/directional/north, +/obj/machinery/light/directional/south, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_3) +"avw" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/pod_3) +"avz" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Processing" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-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/plating, +/area/station/security/processing) +"avA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"avB" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/processing) +"avC" = ( +/obj/structure/sink/directional/east, +/obj/item/soap, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"avE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/mattress/dirty{ + dir = 1 + }, +/obj/item/stack/cable_coil/random, +/mob/living/simple_animal/mouse/white, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"avF" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"avG" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/permabrig) +"avL" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"avO" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"avQ" = ( +/obj/item/storage/secure/safe{ + pixel_x = -27; + pixel_y = 5 + }, +/obj/machinery/camera{ + c_tag = "Internal Affairs Office"; + dir = 4 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"avS" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/station/legal/lawoffice) +"avY" = ( +/obj/machinery/door_timer/cell_2{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "rampbottom" + }, +/area/station/security/prison/cell_block/A) +"awa" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"awc" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"awd" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"awf" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "Processing" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/machinery/door/airlock/security/glass{ + id_tag = "Brig"; + name = "Prisoner Processing" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/processing) +"awh" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/processing) +"awl" = ( +/turf/simulated/wall, +/area/station/maintenance/fore) +"awx" = ( +/obj/structure/table, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/item/scissors/barber, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"awA" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/processing) +"awC" = ( +/obj/structure/chair, +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera{ + c_tag = "Brig Prisoner Processing East"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/processing) +"awD" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"awE" = ( +/obj/structure/table, +/obj/item/toy/figure/griffin, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"awF" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"awG" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" + }, +/area/station/security/detective) +"awH" = ( +/obj/structure/table, +/obj/item/dice/d20, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"awK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"awM" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"awN" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dust, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/fsmaint) +"awO" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/button/windowtint/east{ + id = "virology" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"awP" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/machinery/door/airlock/multi_tile/security/glass{ + dir = 2; + id_tag = "BrigEast"; + name = "Brig East Entrance" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"awQ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxstarboard) +"awR" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxstarboard) +"awS" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"awV" = ( +/turf/simulated/wall, +/area/station/security/processing) +"axb" = ( +/turf/simulated/wall/r_wall, +/area/station/security/execution) +"axe" = ( +/turf/simulated/wall, +/area/station/security/detective) +"axh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/computerframe{ + dir = 1 + }, +/obj/item/circuitboard/secure_data, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/maintenance/fsmaint) +"axi" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"axk" = ( +/obj/machinery/light_switch/east, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"axn" = ( +/obj/structure/lattice, +/obj/item/stack/cable_coil, +/turf/space, +/area/space/nearstation) +"axp" = ( +/obj/machinery/requests_console{ + department = "Internal Affairs Office"; + name = "Internal Affairs Requests Console"; + pixel_x = -30 + }, +/obj/machinery/light/directional/west, +/obj/machinery/papershredder, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"axq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxstarboard) +"axr" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/light/nightshifted/east, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/maintenance/abandonedbar) +"axs" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"axt" = ( +/obj/structure/table, +/obj/item/storage/box/evidence, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"axu" = ( +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"axw" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"axy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/security/lobby) +"axz" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/lobby) +"axB" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera{ + c_tag = "Brig Lobby East"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/lobby) +"axE" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/structure/cable{ + 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/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"axG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/prison/cell_block/A) +"axH" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"axI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/machinery/door/airlock/multi_tile/security/glass{ + dir = 2; + name = "Brig" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"axJ" = ( +/obj/machinery/door_timer/cell_4{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"axK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"axL" = ( +/turf/simulated/floor/plasteel, +/area/station/security/lobby) +"axM" = ( +/obj/machinery/hologram/holopad{ + pixel_y = 16 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"axO" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"axP" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "Processing" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/machinery/door/airlock/security/glass{ + id_tag = "Brig"; + name = "Prisoner Processing" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/processing) +"axQ" = ( +/obj/item/radio/intercom/custom{ + dir = 1; + pixel_y = -36 + }, +/obj/item/radio/intercom/department/security{ + pixel_y = -22; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/processing) +"axR" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/processing) +"axS" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/processing) +"axU" = ( +/obj/machinery/alarm/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/taperecorder, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"axW" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/radio{ + pixel_x = 5 + }, +/obj/item/reagent_containers/food/drinks/mug/sec, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"axX" = ( +/obj/structure/sign/poster/contraband/random/north, +/obj/structure/rack{ + dir = 1 + }, +/obj/item/storage/fancy/donut_box, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"axY" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/table, +/obj/item/taperecorder, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"axZ" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/lobby) +"aya" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/fore) +"ayb" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ayc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ayd" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ayf" = ( +/obj/structure/table, +/obj/item/toy/figure/crew/hos, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ayg" = ( +/obj/structure/table, +/obj/item/toy/figure/owl, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ayn" = ( +/obj/machinery/door_timer/cell_5{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"ayo" = ( +/obj/machinery/computer/shuttle/labor{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/brig) +"ayp" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/processing) +"ayq" = ( +/obj/structure/table, +/obj/item/taperecorder, +/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, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"ayr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/security/prison/cell_block/A) +"ays" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "sst_home"; + name = "Near Cyberiad Arrivals"; + width = 11 + }, +/turf/space, +/area/space) +"ayt" = ( +/obj/structure/table, +/obj/item/storage/box/evidence, +/obj/machinery/firealarm/directional/south, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"ayx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"ayz" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"ayA" = ( +/obj/structure/table/wood, +/obj/structure/noticeboard{ + pixel_y = -30 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/storage/box/evidence{ + pixel_y = 2; + pixel_x = -18 + }, +/obj/item/storage/photo_album, +/obj/item/camera_film{ + pixel_y = 7 + }, +/obj/item/camera_film{ + pixel_y = 7 + }, +/obj/item/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30; + pixel_y = 2 + }, +/turf/simulated/floor/wood/oak, +/area/station/security/detective) +"ayB" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/machinery/door/poddoor{ + id_tag = "justice_blast"; + name = "Justice Blast Door" + }, +/turf/simulated/floor/plating, +/area/station/security/execution) +"ayC" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"ayD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"ayG" = ( +/turf/simulated/floor/plasteel{ + icon_state = "rampbottom" + }, +/area/station/security/brig) +"ayH" = ( +/obj/machinery/button/windowtint/west{ + id = "IAA"; + req_one_access_txt = "38" + }, +/obj/machinery/economy/vending/lawdrobe, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"ayI" = ( +/obj/structure/chair/comfy/brown, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"ayK" = ( +/obj/machinery/camera{ + c_tag = "Brig Lobby West"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"ayM" = ( +/obj/machinery/light/directional/south, +/obj/machinery/ai_status_display/south, +/obj/item/reagent_containers/food/drinks/mug/sec, +/obj/structure/table, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/lobby) +"ayN" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/lobby) +"ayP" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/lobby) +"ayQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"ayS" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/cyan, +/area/station/security/prison/cell_block/A) +"ayT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor{ + id = "Cell 2"; + name = "Cell 2" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/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/mapping_helpers/airlock/windoor/access/any/security/brig, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/prison/cell_block/A) +"ayU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor{ + id = "Cell 4"; + name = "Cell 4" + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/prison/cell_block/A) +"ayV" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/fore) +"ayW" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"ayX" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"aza" = ( +/turf/simulated/wall/r_wall, +/area/station/security/processing) +"azb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"azc" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Interrogation" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/security/interrogation/observation) +"azd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Interrogation" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "Interrogation" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation/observation) +"azf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/landmark/spawner/xeno, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/fsmaint) +"azm" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"azn" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"azq" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"azs" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"azt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/chair/e_chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"azu" = ( +/obj/machinery/door/poddoor{ + id_tag = "justice_blast"; + name = "Justice Blast Door" + }, +/obj/structure/cable{ + d2 = 4; + 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/grille, +/turf/simulated/floor/plating, +/area/station/security/execution) +"azv" = ( +/obj/machinery/door/window/reinforced/reversed{ + dir = 8; + name = "Justice Chamber" + }, +/obj/machinery/door/window/reinforced/reversed{ + dir = 4; + name = "Justice Chamber" + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Justice gas pump" + }, +/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/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/red, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"azw" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"azy" = ( +/obj/machinery/door/airlock/security{ + name = "Prisoner Re-education Centre" + }, +/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/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"azz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"azB" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"azD" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/lobby) +"azE" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/lobby) +"azG" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"azH" = ( +/obj/machinery/door_control/shutter/east{ + id = "brig_courtroom"; + name = "Brig Courtroom Shutter Control"; + req_one_access_txt = "2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/brig) +"azI" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/morgue{ + dir = 2 + }, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plating, +/area/station/medical/morgue) +"azJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/security/lobby) +"azK" = ( +/obj/effect/decal/cleanable/dirt, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"azL" = ( +/obj/machinery/door/firedoor, +/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/mapping_helpers/airlock/access/any/security/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Interrogation" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/interrogation) +"azM" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"azN" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/cyan, +/area/station/security/prison/cell_block/A) +"azO" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4"; + name = "Cell 4 Locker" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"azP" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"azR" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/lobby) +"azS" = ( +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"azU" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/station/engineering/solar/auxstarboard) +"azV" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/brig) +"azW" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 5"; + name = "Cell 5 Locker" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 5"; + dir = 9 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel, +/area/station/security/prison/cell_block/A) +"azX" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation/observation) +"azY" = ( +/obj/machinery/button/windowtint/west{ + id = "Interrogation"; + req_one_access_txt = "63" + }, +/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{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation/observation) +"aAa" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aAb" = ( +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aAc" = ( +/obj/structure/grille/broken, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aAd" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aAf" = ( +/turf/simulated/wall, +/area/station/maintenance/abandonedbar) +"aAg" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aAm" = ( +/turf/simulated/wall/r_wall, +/area/station/legal/courtroom) +"aAo" = ( +/obj/machinery/light/directional/east, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"aAp" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/mask/balaclava, +/obj/effect/decal/warning_stripes/red, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"aAq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/cable{ + 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/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"aAr" = ( +/obj/structure/flora/junglebush/large, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"aAu" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"aAv" = ( +/obj/machinery/door/poddoor{ + id_tag = "justice_blast"; + name = "Justice Blast Door" + }, +/obj/structure/cable, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/station/security/execution) +"aAx" = ( +/turf/simulated/wall/r_wall, +/area/station/security/prison/cell_block/A) +"aAy" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/meter, +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"aAz" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"aAA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/security/prison/cell_block/A) +"aAB" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation/observation) +"aAC" = ( +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation/observation) +"aAE" = ( +/obj/machinery/light/directional/west, +/obj/machinery/light_switch/west, +/obj/machinery/firealarm/directional/south, +/obj/structure/closet/secure_closet/iaa, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"aAF" = ( +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"aAG" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/internal_affairs, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"aAI" = ( +/obj/structure/table, +/obj/item/pen, +/obj/machinery/alarm/directional/east, +/obj/item/paper_bin/nanotrasen, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"aAL" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aAM" = ( +/obj/machinery/camera{ + c_tag = "Magistrate's Office"; + dir = 4 + }, +/obj/item/radio/intercom/custom{ + dir = 4; + pixel_x = -36 + }, +/obj/item/radio/intercom/department/security{ + pixel_x = -22; + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/legal/magistrate) +"aAN" = ( +/obj/structure/table, +/obj/item/taperecorder, +/obj/item/megaphone, +/obj/machinery/button/windowtint/east{ + id = "Magistrate"; + pixel_y = 6; + req_one_access_txt = "74" + }, +/obj/machinery/door_control/normal/east{ + id = "magistrateofficedoor"; + name = "Office Door"; + pixel_y = -6; + req_one_access_txt = "74" + }, +/turf/simulated/floor/carpet, +/area/station/legal/magistrate) +"aAO" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/magistrate, +/turf/simulated/floor/carpet, +/area/station/legal/magistrate) +"aAP" = ( +/obj/structure/cable{ + 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/disposalpipe/sortjunction{ + dir = 4; + name = "Chapel"; + sort_type_txt = "17" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/service/chapel/office) +"aAQ" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aAR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"aAT" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"aAY" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aAZ" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aBa" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 4; + id = "Cell 5"; + name = "Cell 5" + }, +/obj/machinery/door/firedoor, +/obj/item/radio/intercom/directional/south, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/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/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/prison/cell_block/A) +"aBb" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"aBc" = ( +/obj/structure/table/wood, +/obj/item/deck/cards, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aBd" = ( +/obj/structure/chair/wood/wings{ + dir = 4 + }, +/obj/structure/spider/stickyweb, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aBe" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aBf" = ( +/obj/structure/chair/wood/wings{ + dir = 4 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aBg" = ( +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aBh" = ( +/obj/item/stack/tile/wood, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aBi" = ( +/obj/structure/table/reinforced, +/obj/item/taperecorder, +/obj/item/flashlight/lamp, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation/observation) +"aBj" = ( +/obj/structure/table/wood, +/obj/item/trash/candle, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aBm" = ( +/obj/item/stack/rods, +/turf/space, +/area/space) +"aBn" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"aBo" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation/observation) +"aBp" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation/observation) +"aBq" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aBs" = ( +/turf/simulated/wall, +/area/station/security/interrogation/observation) +"aBw" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aBy" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"aBA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"aBB" = ( +/obj/effect/decal/warning_stripes/white, +/obj/machinery/kitchen_machine/grill{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"aBH" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/service/bar) +"aBI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + 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{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"aBK" = ( +/obj/machinery/hydroponics/constructable{ + desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays."; + name = "Prison hydroponics tray"; + using_irrigation = 1 + }, +/obj/structure/sign/electricshock{ + pixel_x = 32 + }, +/obj/item/seeds/chili, +/obj/machinery/light/directional/east, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"aBN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"aBO" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/valve, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"aBP" = ( +/obj/machinery/atmospherics/binary/valve, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"aBR" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aBS" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/structure/reagent_dispensers/peppertank/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"aBT" = ( +/obj/item/paper/crumpled, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel/airless, +/area/space/nearstation) +"aBU" = ( +/obj/machinery/light_construct/small/west, +/obj/machinery/status_display/directional/north, +/obj/structure/spider/stickyweb, +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aBV" = ( +/obj/item/storage/fancy/crayons, +/obj/effect/decal/cleanable/dust, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aBW" = ( +/obj/structure/holosign/barrier, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aBX" = ( +/obj/item/trash/liquidfood, +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aBZ" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plasteel/airless, +/area/space/nearstation) +"aCa" = ( +/obj/machinery/ai_status_display/east, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/hallway/primary/fore) +"aCb" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "IAA" + }, +/turf/simulated/floor/plating, +/area/station/legal/lawoffice) +"aCc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/lawyer/glass{ + name = "Internal Affairs Office" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "IAA" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/iaa, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"aCd" = ( +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Magistrate's Office"; + pixel_y = 4 + }, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"aCe" = ( +/obj/machinery/status_display/directional/north, +/obj/machinery/alarm/directional/west, +/obj/machinery/computer/prisoner{ + req_access = null; + req_one_access_txt = "2" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"aCf" = ( +/turf/simulated/floor/carpet, +/area/station/legal/magistrate) +"aCg" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/north, +/obj/machinery/computer/secure_data/laptop, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"aCh" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aCi" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/pen/multi/gold, +/obj/item/stamp/magistrate, +/turf/simulated/floor/carpet, +/area/station/legal/magistrate) +"aCj" = ( +/obj/structure/table, +/obj/item/paper_bin/nanotrasen, +/turf/simulated/floor/carpet, +/area/station/legal/magistrate) +"aCl" = ( +/obj/structure/closet/secure_closet/magistrate, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"aCo" = ( +/mob/living/simple_animal/bot/secbot/beepsky, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"aCp" = ( +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_y = -26 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"aCq" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/item/bedsheet{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/camera{ + c_tag = "Brig Cell 2"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"aCr" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"aCs" = ( +/obj/structure/bed/mattress, +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_y = -28 + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 4"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"aCu" = ( +/obj/machinery/computer/med_data, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/station/command/bridge) +"aCv" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "conference" + }, +/turf/simulated/floor/plating, +/area/station/command/meeting_room) +"aCw" = ( +/obj/structure/bed/mattress/dirty, +/obj/machinery/flasher{ + id = "Cell 5"; + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/prison/cell_block/A) +"aCx" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/hallway/primary/fore) +"aCz" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aCB" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 7; + height = 5; + id = "sit_arrivals"; + name = "Cyberiad North-West Solars"; + width = 11 + }, +/turf/space, +/area/space) +"aCF" = ( +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"aCG" = ( +/obj/machinery/atmospherics/portable/canister/carbon_dioxide, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"aCH" = ( +/turf/simulated/wall, +/area/station/security/execution) +"aCI" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags, +/obj/item/assembly/signaler{ + code = 6; + frequency = 1445 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"aCK" = ( +/obj/machinery/door/poddoor/shutters{ + id_tag = "brig_courtroom"; + name = "Brig Courtroom Shutters" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/brig) +"aCL" = ( +/obj/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"aCM" = ( +/obj/item/shard, +/obj/item/stack/rods, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aCN" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/abandonedbar) +"aCO" = ( +/obj/machinery/economy/vending/autodrobe, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aCP" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/abandonedbar) +"aCQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/item/kitchen/knife, +/obj/effect/decal/cleanable/dust, +/obj/item/kitchen/utensil/spoon{ + pixel_x = -8; + pixel_y = 2 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aCR" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/dust, +/obj/machinery/kitchen_machine/microwave{ + pixel_x = -1; + pixel_y = 7 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "escape" + }, +/area/station/maintenance/abandonedbar) +"aCS" = ( +/obj/item/lighter/random, +/obj/effect/decal/cleanable/dust, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aCU" = ( +/obj/item/stack/sheet/mineral/plasma{ + amount = 10 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/structure/rack, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"aCV" = ( +/obj/structure/table/wood, +/obj/item/trash/plate, +/obj/item/clothing/mask/bandana/skull, +/obj/item/melee/baseball_bat, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aCW" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/patron, +/obj/item/storage/fancy/cigarettes/cigpack_shadyjims, +/obj/machinery/light_construct/small/east, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aCZ" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/hallway/primary/fore) +"aDb" = ( +/obj/structure/table, +/obj/item/camera{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/machinery/door_control/shutter/north{ + id = "brig_courtroom"; + name = "Brig Courtroom Shutter Control"; + req_one_access_txt = "2" + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/legal/courtroom) +"aDc" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/legal/courtroom) +"aDd" = ( +/obj/structure/particle_accelerator/power_box{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/control) +"aDe" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Magistrate" + }, +/turf/simulated/floor/plating, +/area/station/legal/magistrate) +"aDf" = ( +/obj/machinery/economy/vending/snack, +/turf/simulated/floor/plasteel, +/area/station/security/lobby) +"aDg" = ( +/obj/structure/table, +/obj/item/taperecorder{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/legal/courtroom) +"aDh" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"aDi" = ( +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"aDj" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/station/legal/magistrate) +"aDk" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"aDm" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/hallway/primary/fore) +"aDo" = ( +/obj/machinery/alarm/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "rampbottom" + }, +/area/station/security/prison/cell_block/A) +"aDp" = ( +/obj/structure/closet/crate, +/obj/machinery/light/small/directional/west, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aDq" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/cheesewedge, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aDr" = ( +/obj/machinery/kitchen_machine/grill, +/obj/effect/mapping_helpers/machinery/destroyed, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "stage_bleft" + }, +/area/station/maintenance/fsmaint) +"aDs" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aDt" = ( +/obj/machinery/fishtank/tank, +/obj/structure/sign/poster/contraband/random/west, +/obj/item/tank_brush, +/obj/structure/spider/stickyweb, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aDu" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/solar_control{ + name = "Fore Port Solar Control" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aDv" = ( +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/structure/table, +/obj/item/clothing/accessory/medal{ + name = "медаль хорошему мальчику"; + desc = "Тот кто её носит - определенно заслужил её!" + }, +/obj/item/petcollar{ + pixel_y = 7; + pixel_x = 6 + }, +/obj/item/petcollar{ + pixel_y = 3 + }, +/obj/item/petcollar{ + pixel_y = -2; + pixel_x = -6 + }, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aDw" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/auxsolarport) +"aDx" = ( +/obj/structure/sign/vacuum/external{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/canister/air{ + filled = 0.05 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aDz" = ( +/obj/structure/rack, +/obj/item/clothing/mask/cigarette/pipe, +/obj/item/clothing/head/fedora/brownfedora, +/obj/item/storage/belt/holster, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aDA" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/spawner/random_spawners/cobweb_left_rare, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aDB" = ( +/obj/structure/rack, +/obj/item/camera, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint2) +"aDC" = ( +/obj/structure/closet/cabinet, +/obj/item/storage/box/evidence, +/obj/item/clothing/suit/wcoat, +/obj/item/clothing/suit/blacktrenchcoat, +/obj/item/clothing/under/suit/tan, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aDD" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aDF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + 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 = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"aDH" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/brig) +"aDI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + security_level = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/machinery/door/poddoor/shutters{ + id_tag = "brig_courtroom"; + name = "Brig Courtroom Shutters" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/brig) +"aDJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/brig) +"aDL" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/legal/courtroom) +"aDN" = ( +/turf/simulated/wall, +/area/station/public/mrchangs) +"aDP" = ( +/turf/simulated/wall, +/area/station/service/barber) +"aDQ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "rampbottom"; + dir = 8 + }, +/area/station/legal/courtroom) +"aDR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"aDS" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"aDV" = ( +/obj/item/airlock_electronics, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/station/maintenance/abandonedbar) +"aDW" = ( +/obj/structure/door_assembly/door_assembly_silver{ + anchored = 1; + name = "Service Room" + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aDX" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aDY" = ( +/obj/item/stack/tile/plasteel, +/obj/effect/decal/cleanable/dust, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aDZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"aEa" = ( +/obj/structure/table/wood, +/obj/item/trash/can, +/obj/item/reagent_containers/glass/rag, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aEc" = ( +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aEg" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"aEi" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/hallway/primary/fore) +"aEj" = ( +/turf/simulated/wall, +/area/station/hallway/primary/fore) +"aEl" = ( +/turf/simulated/wall, +/area/station/legal/courtroom) +"aEm" = ( +/obj/structure/table/wood/poker, +/obj/item/ashtray/bronze, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/hallway/primary/fore) +"aEn" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/detective, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"aEo" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"aEp" = ( +/obj/machinery/computer/security/wooden_tv{ + network = list("SS13","Research Outpost","Mining Outpost") + }, +/obj/machinery/button/windowtint/north{ + id = "Detective"; + pixel_x = -8; + req_one_access_txt = "4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"aEr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"aEw" = ( +/obj/item/storage/toolbox/emergency, +/obj/structure/table, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aEx" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dust, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aEy" = ( +/obj/item/poster/random_contraband, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "stage_bleft" + }, +/area/station/maintenance/fsmaint) +"aEz" = ( +/obj/structure/table/wood, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/item/storage/pill_bottle/random_drug_bottle, +/obj/item/lipstick/random, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/station/maintenance/abandonedbar) +"aEB" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aEC" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aED" = ( +/obj/machinery/power/terminal, +/obj/machinery/light/small/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aEE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aEF" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/structure/sign/poster/contraband/random/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aEG" = ( +/obj/structure/safe/floor, +/obj/item/clothing/suit/storage/det_suit/forensics, +/obj/item/detective_scanner, +/obj/item/gun/projectile/revolver/capgun, +/obj/item/ammo_box/caps, +/obj/item/ammo_box/caps, +/obj/item/ammo_box/caps, +/obj/item/clothing/head/det_hat, +/obj/item/cartridge/detective, +/obj/item/clothing/glasses/sunglasses/yeah, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint2) +"aEH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/spawner/xeno, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint2) +"aEI" = ( +/obj/structure/chair/comfy/black, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aEJ" = ( +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint2) +"aEK" = ( +/obj/structure/chair, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint2) +"aEL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/door/airlock/atmos{ + name = "Fore-Port Atmospherics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aEN" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aEO" = ( +/obj/structure/flora/junglebush, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"aEP" = ( +/obj/structure/chair/stool, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aEQ" = ( +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aES" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/light/small/directional/east, +/obj/effect/mapping_helpers/machinery/destroyed, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aET" = ( +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aEU" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/machinery/constructable_frame/machine_frame, +/obj/effect/decal/cleanable/dust, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aEV" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "escape" + }, +/area/station/maintenance/abandonedbar) +"aEW" = ( +/obj/item/stack/rods, +/obj/structure/closet/secure_closet/freezer/fridge/open, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "escape" + }, +/area/station/maintenance/abandonedbar) +"aEX" = ( +/obj/item/trash/pistachios, +/obj/machinery/light/directional/south, +/obj/effect/mapping_helpers/machinery/destroyed, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aEY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"aEZ" = ( +/obj/machinery/light/directional/south, +/obj/structure/coatrack, +/obj/item/clothing/suit/tracksuit, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aFa" = ( +/obj/structure/sign/poster/contraband/random/east, +/obj/structure/sink/kitchen/east, +/obj/structure/closet/walllocker/medlocker/south, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aFb" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/saltshaker, +/obj/item/reagent_containers/food/condiment/peppermill, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"aFc" = ( +/obj/structure/chair/stool, +/obj/structure/sign/poster/contraband/random/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aFd" = ( +/obj/structure/closet/cabinet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dust, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fsmaint) +"aFh" = ( +/turf/simulated/floor/plasteel/stairs{ + icon_state = "rampbottom"; + dir = 1 + }, +/area/station/legal/courtroom) +"aFm" = ( +/obj/structure/table, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"aFn" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"aFo" = ( +/obj/machinery/light_switch/west, +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"aFp" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/pen/multi, +/obj/effect/spawner/lootdrop/officetoys, +/obj/item/clothing/head/helmet/skull/Yorick, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"aFq" = ( +/obj/structure/table, +/obj/item/folder/blue{ + pixel_x = 10; + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/folder/yellow{ + pixel_x = 14; + pixel_y = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"aFs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aFt" = ( +/obj/machinery/disposal, +/obj/machinery/light/directional/east, +/obj/machinery/newscaster/security_unit/south, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"aFw" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/primary/fore) +"aFy" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/hallway/primary/fore) +"aFz" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Detective" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/detective) +"aFA" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/hallway/primary/fore) +"aFB" = ( +/obj/structure/table/wood, +/obj/item/book/manual/detective{ + pixel_y = 3 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/flask/detflask{ + pixel_x = 16; + pixel_y = 4; + initialized = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"aFD" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/dromedaryco{ + pixel_x = -16; + pixel_y = 2 + }, +/obj/item/ashtray/bronze{ + pixel_x = -16 + }, +/obj/item/flashlight/lamp/green{ + on = 0; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"aFE" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Detective" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/detective) +"aFF" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"aFG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Detective's Office" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/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/effect/mapping_helpers/airlock/access/any/security/forensics, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/prison/cell_block/A) +"aFH" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aFI" = ( +/turf/simulated/wall, +/area/station/public/arcade) +"aFJ" = ( +/turf/simulated/wall/r_wall, +/area/station/public/dorms) +"aFK" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "holodeck" + }, +/turf/simulated/floor/plating, +/area/station/public/dorms) +"aFL" = ( +/turf/simulated/wall/r_wall, +/area/station/security/evidence) +"aFM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/crayon/white, +/obj/effect/decal/cleanable/ants, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel{ + icon_state = "stage_bleft" + }, +/area/station/maintenance/fsmaint) +"aFN" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/brown, +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "stage_bleft" + }, +/area/station/maintenance/fsmaint) +"aFO" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "stage_bleft" + }, +/area/station/maintenance/fsmaint) +"aFP" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/simulated/floor/carpet, +/area/station/maintenance/fsmaint) +"aFQ" = ( +/obj/machinery/camera{ + c_tag = "Fore Port Solar Control"; + dir = 1 + }, +/obj/machinery/power/apc/engineering/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aFR" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aFS" = ( +/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/plating, +/area/station/maintenance/auxsolarport) +"aFT" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/maintenance/auxsolarport) +"aFU" = ( +/obj/structure/table, +/obj/item/toy/figure/crew/detective, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint2) +"aFV" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes, +/obj/item/ashtray/glass, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/fpmaint2) +"aFW" = ( +/obj/machinery/light/small/directional/east, +/obj/item/paper/crumpled, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aFX" = ( +/obj/structure/table, +/obj/item/folder, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/fpmaint2) +"aGa" = ( +/obj/machinery/smartfridge/drying_rack, +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Prison Forestry South"; + dir = 1; + network = list("Prison","SS13") + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"aGb" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aGc" = ( +/obj/structure/mineral_door/wood{ + name = "Abandoned Bar" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aGd" = ( +/obj/effect/decal/cleanable/fungus, +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/abandonedbar) +"aGe" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs/cable, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aGi" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/fpmaint) +"aGj" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/contraband/random/north, +/obj/structure/chair/wood, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aGk" = ( +/obj/structure/table/wood/poker, +/obj/item/deck/holder, +/turf/simulated/floor/carpet, +/area/station/maintenance/fpmaint) +"aGl" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint) +"aGm" = ( +/obj/effect/decal/warning_stripes/yellow/partial, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"aGn" = ( +/turf/simulated/wall, +/area/station/maintenance/fpmaint2) +"aGo" = ( +/obj/structure/table/wood/poker, +/obj/item/deck/cards, +/turf/simulated/floor/carpet, +/area/station/maintenance/fpmaint) +"aGp" = ( +/obj/machinery/economy/vending/coffee, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint) +"aGq" = ( +/obj/structure/chair, +/obj/structure/sign/poster/official/random/north, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/legal/courtroom) +"aGr" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/beaker/waterbottle, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/legal/courtroom) +"aGs" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/legal/courtroom) +"aGu" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Courtroom North"; + dir = 8 + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aGy" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"aGA" = ( +/obj/machinery/camera{ + c_tag = "Brig Detective's Office" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/radio/intercom/department/security{ + pixel_y = 22 + }, +/obj/item/radio/intercom/custom{ + pixel_y = 36 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"aGC" = ( +/obj/machinery/economy/vending/detdrobe, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/security/detective) +"aGE" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/security/detective) +"aGF" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/storage/lockbox/spy_kit, +/obj/item/storage/box/bodybags, +/obj/item/restraints/handcuffs, +/obj/item/flash, +/obj/machinery/newscaster/security_unit/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/security/detective) +"aGG" = ( +/obj/machinery/ai_status_display/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/security/detective) +"aGH" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aGI" = ( +/obj/structure/table/reinforced, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/item/razor, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aGJ" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aGL" = ( +/obj/structure/chair/barber{ + dir = 8 + }, +/obj/machinery/status_display/directional/north, +/obj/machinery/camera{ + c_tag = "Barber Shop" + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aGM" = ( +/obj/machinery/dye_generator, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aGN" = ( +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aGO" = ( +/obj/machinery/economy/vending/cart, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aGP" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arcade" + }, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aGQ" = ( +/obj/machinery/prize_counter, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aGR" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aGT" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/auxsolarstarboard) +"aGU" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/sign/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/power/solar_control{ + name = "Fore Starboard Solar Control" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"aGW" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"aGX" = ( +/turf/simulated/wall, +/area/station/maintenance/fsmaint) +"aGY" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aGZ" = ( +/obj/structure/table, +/obj/random/plushie, +/obj/machinery/light/small/directional/north, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aHa" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aHb" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aHc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/maintenance/fsmaint) +"aHd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "stage_bleft" + }, +/area/station/maintenance/fsmaint) +"aHe" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aHf" = ( +/obj/structure/table, +/obj/item/whetstone, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aHg" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/station/maintenance/fpmaint2) +"aHh" = ( +/obj/machinery/door/airlock/engineering{ + name = "Fore Port Solar Access" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aHi" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall/r_wall, +/area/station/maintenance/fpmaint2) +"aHj" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint2) +"aHk" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/fpmaint2) +"aHl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aHm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint2) +"aHn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall, +/area/station/maintenance/fpmaint2) +"aHp" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aHq" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "HoS" + }, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"aHr" = ( +/obj/structure/table, +/obj/item/melee/baseball_bat, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aHs" = ( +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aHt" = ( +/obj/structure/table/wood/poker, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/carpet, +/area/station/maintenance/fpmaint) +"aHu" = ( +/obj/structure/table/wood/poker, +/obj/item/dice/d6, +/turf/simulated/floor/carpet, +/area/station/maintenance/fpmaint) +"aHv" = ( +/obj/item/clothing/head/fedora, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aHw" = ( +/obj/machinery/door/window/reinforced/normal{ + name = "Accused" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/legal/courtroom) +"aHx" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/radio/intercom/directional/west, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/legal/courtroom) +"aHy" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/legal/courtroom) +"aHz" = ( +/obj/structure/chair/wood, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"aHA" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Courtroom" + }, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"aHB" = ( +/obj/structure/chair/sofa/pew/left{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Courtroom Lobby" + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aHC" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aHD" = ( +/obj/structure/chair, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/courtroom) +"aHE" = ( +/turf/simulated/wall/r_wall, +/area/station/security/detective) +"aHF" = ( +/obj/machinery/economy/vending/coffee, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/effect/turf_decal/siding/black{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/courtroom) +"aHH" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/hallway/primary/fore) +"aHI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"aHJ" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"aHK" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"aHM" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aHN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aHO" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aHP" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/fsmaint) +"aHR" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6; + level = 1 + }, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/obj/item/wrench, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aHS" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aHT" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/fore) +"aHU" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation/observation) +"aHW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/public/dorms) +"aHX" = ( +/obj/machinery/door/window/classic/reversed{ + name = "Forensic laboratory"; + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/forensics{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"aHY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aIb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/detective) +"aIc" = ( +/turf/simulated/wall, +/area/station/service/clown) +"aIg" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/security/detective) +"aIi" = ( +/obj/structure/table/tray, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/mask/surgical, +/obj/item/autopsy_scanner{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/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" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/security/detective) +"aIj" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aIl" = ( +/turf/simulated/wall, +/area/station/legal/magistrate) +"aIn" = ( +/obj/structure/dresser, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aIo" = ( +/turf/simulated/wall, +/area/station/legal/lawoffice) +"aIp" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/light/small/directional/west, +/obj/machinery/alarm/directional/west, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aIq" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/fore) +"aIu" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aIv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aIw" = ( +/obj/machinery/camera{ + c_tag = "Fore Port Solar Access" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aIx" = ( +/obj/structure/table, +/obj/item/paper/crumpled, +/obj/machinery/door/window/classic/normal{ + dir = 1; + name = "Kitchen"; + req_one_access_txt = "28" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aIz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/reinforced/normal{ + dir = 1; + name = "Security Checkpoint" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/security/checkpoint/secondary) +"aIA" = ( +/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/plating, +/area/station/maintenance/auxsolarstarboard) +"aIB" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/engineering/west, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"aIC" = ( +/obj/machinery/camera{ + c_tag = "Fore Starboard Solars"; + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"aID" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/item/clothing/shoes/jackboots, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aIE" = ( +/obj/effect/spawner/window/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aIF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aIH" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint2) +"aII" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aIJ" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aIK" = ( +/obj/item/book/manual/detective, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aIL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint2) +"aIM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/lawyer/glass{ + name = "Magistrate's Office" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "Magistrate" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/magistrate, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"aIO" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/fore) +"aIQ" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aIR" = ( +/obj/structure/table, +/obj/item/toy/russian_revolver, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aIS" = ( +/obj/structure/grille, +/obj/effect/spawner/random_barrier/obstruction, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aIT" = ( +/obj/item/clothing/under/suit/mafia, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aIU" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint) +"aIV" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint) +"aIX" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_x = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5 + }, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"aIY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aJa" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/structure/window/basic, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"aJb" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4; + anchored = 1 + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aJc" = ( +/obj/structure/chair/sofa/pew/left{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aJd" = ( +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic, +/obj/effect/turf_decal/siding/black{ + dir = 10 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/courtroom) +"aJe" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/hallway/primary/fore) +"aJj" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/hallway/primary/fore) +"aJk" = ( +/obj/machinery/alarm/directional/south, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/pen/multi{ + pixel_y = 7; + pixel_x = -3 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/hand_labeler{ + pixel_x = -4 + }, +/turf/simulated/floor/wood/oak, +/area/station/security/detective) +"aJl" = ( +/obj/machinery/light_switch/south, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/wood/oak, +/area/station/security/detective) +"aJq" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/security/detective) +"aJr" = ( +/obj/structure/table/reinforced, +/obj/item/razor, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aJs" = ( +/obj/effect/landmark/start/barber, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aJt" = ( +/obj/structure/chair/barber{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aJu" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aJv" = ( +/obj/machinery/gameboard, +/obj/structure/sign/poster/contraband/random/west, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aJw" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aJx" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aJy" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aJz" = ( +/obj/machinery/computer/arcade/battle{ + dir = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aJA" = ( +/obj/structure/closet/lasertag/red, +/obj/structure/sign/poster/official/random/east, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aJB" = ( +/obj/machinery/camera{ + c_tag = "Kitchen Freezer" + }, +/obj/structure/sink/kitchen/north, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"aJD" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"aJE" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/fsmaint) +"aJH" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/station/maintenance/auxsolarstarboard) +"aJI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/maintenance/fsmaint) +"aJK" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/fsmaint) +"aJL" = ( +/obj/machinery/economy/slot_machine, +/obj/item/coin/iron, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aJM" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aJN" = ( +/obj/item/coin/gold, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aJO" = ( +/obj/item/garrote/improvised, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aJP" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_1) +"aJR" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_2) +"aJS" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/pod_1) +"aJU" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/maintenance/fpmaint2) +"aJV" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/pod_2) +"aJW" = ( +/mob/living/simple_animal/mouse, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint) +"aJX" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aJY" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aKa" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aKb" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aKc" = ( +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aKd" = ( +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aKf" = ( +/obj/item/clothing/under/suit/mafia/vest, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aKh" = ( +/obj/structure/chair/office/dark, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aKj" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/item/clothing/mask/bandana/skull, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aKl" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_x = 5 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"aKr" = ( +/obj/machinery/ai_status_display/west, +/obj/item/flag/nt{ + layer = 3.4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "Dark_Golden_1"; + dir = 6 + }, +/area/station/legal/courtroom) +"aKs" = ( +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"aKu" = ( +/obj/structure/platform{ + dir = 1; + anchored = 1 + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aKw" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"aKx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/lawyer/glass{ + id_tag = "magistrateofficedoor"; + name = "Magistrate's Office" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "Magistrate" + }, +/obj/structure/disposalpipe/segment, +/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/mapping_helpers/airlock/access/any/command/magistrate, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"aKy" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/hallway/primary/fore) +"aKA" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/hallway/primary/fore) +"aKE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Detective Maintenance"; + security_level = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/forensics, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aKF" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/pen, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aKG" = ( +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aKI" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/computer/mob_healer_terminal{ + pixel_x = -30 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aKK" = ( +/obj/machinery/economy/arcade/claw, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aKL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aKM" = ( +/mob/living/simple_animal/pet/cat/spacecat/Musya, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"aKO" = ( +/obj/structure/closet/lasertag/blue, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aKQ" = ( +/obj/machinery/camera{ + c_tag = "Holodeck West"; + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"aKT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"aKU" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/obj/item/ashtray/bronze{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/simulated/floor/carpet/black, +/area/station/maintenance/fsmaint) +"aKV" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/fancy/cigarettes/cigpack_random, +/turf/simulated/floor/carpet/black, +/area/station/maintenance/fsmaint) +"aKW" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/fpmaint2) +"aKX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/item/wrench, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aKY" = ( +/obj/structure/closet, +/obj/item/coin/iron, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aKZ" = ( +/obj/item/coin/gold, +/obj/item/coin/iron, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aLb" = ( +/obj/machinery/status_display/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_1) +"aLc" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aLd" = ( +/turf/simulated/wall/r_wall, +/area/station/hallway/secondary/entry) +"aLe" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/space, +/area/space/nearstation) +"aLf" = ( +/obj/machinery/status_display/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_2) +"aLh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Detective" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "Detective" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/forensics, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"aLk" = ( +/obj/machinery/kitchen_machine/oven, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aLn" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint2) +"aLr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aLt" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aLu" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aLv" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/maintenance/fsmaint) +"aLA" = ( +/turf/simulated/wall, +/area/station/service/mime) +"aLB" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aLC" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/fpmaint) +"aLD" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aLE" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/station/legal/magistrate) +"aLF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aLG" = ( +/obj/item/reagent_containers/food/snacks/meat/slab, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/fpmaint) +"aLH" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/command/vault) +"aLJ" = ( +/obj/machinery/economy/slot_machine, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aLK" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aLL" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fpmaint) +"aLM" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aLN" = ( +/obj/structure/chair/comfy/brown{ + color = "#514E58"; + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"aLO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"aLP" = ( +/turf/simulated/wall, +/area/station/public/sleep) +"aLQ" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/obj/machinery/button/windowtint{ + id = "Courtroom"; + req_one_access_txt = "74;3"; + pixel_y = -12 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"aLR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"aLS" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/camera{ + c_tag = "Chapel Funeral Processing East"; + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/service/chapel) +"aLT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aLY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aMa" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aMd" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aMg" = ( +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance" + }, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/equipment, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"aMi" = ( +/obj/machinery/atmospherics/binary/valve{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aMj" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aMl" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt, +/obj/item/deck/cards, +/turf/simulated/floor/carpet/black, +/area/station/maintenance/fsmaint) +"aMm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"aMn" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aMo" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aMp" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_1) +"aMq" = ( +/turf/simulated/wall, +/area/station/maintenance/electrical) +"aMr" = ( +/turf/simulated/wall, +/area/space/nearstation) +"aMs" = ( +/turf/simulated/wall, +/area/station/hallway/secondary/entry) +"aMt" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_2) +"aMw" = ( +/obj/item/radio/intercom/directional/east, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aMy" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aMz" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/fsmaint) +"aMA" = ( +/turf/simulated/wall, +/area/station/maintenance/fpmaint) +"aMB" = ( +/obj/structure/sign/vacuum/external{ + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aMD" = ( +/obj/machinery/status_display/directional/south, +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aME" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aMI" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aMJ" = ( +/obj/machinery/economy/vending/snack, +/obj/machinery/light_switch/east, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aMK" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"aMM" = ( +/obj/machinery/hologram/holopad, +/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/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"aMO" = ( +/obj/structure/table, +/obj/item/pen, +/obj/item/paper_bin/nanotrasen, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"aMR" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/maintenance/fpmaint) +"aMS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/writing, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/fpmaint) +"aMU" = ( +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/fpmaint) +"aMW" = ( +/obj/effect/decal/cleanable/blood/writing, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aMX" = ( +/obj/machinery/door/window/classic/normal, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "rampbottom" + }, +/area/station/maintenance/fpmaint) +"aMY" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aMZ" = ( +/obj/effect/spawner/window/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aNb" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/courtroom) +"aNc" = ( +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/fore) +"aNg" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/effect/decal/cleanable/dirt, +/obj/item/camera/spooky, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/fsmaint) +"aNh" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aNi" = ( +/obj/machinery/door/airlock/maintenance, +/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/station/maintenance/fsmaint) +"aNj" = ( +/obj/structure/chair/comfy/brown{ + color = "#514E58"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/fsmaint) +"aNk" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"aNm" = ( +/obj/machinery/power/port_gen/pacman, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"aNo" = ( +/turf/simulated/floor/mech_bay_recharge_floor, +/area/station/maintenance/electrical) +"aNp" = ( +/obj/machinery/mech_bay_recharge_port, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"aNq" = ( +/obj/machinery/computer/mech_bay_power_console, +/turf/simulated/floor/bluegrid, +/area/station/maintenance/electrical) +"aNt" = ( +/obj/docking_port/mobile/pod{ + id = "pod1"; + name = "escape pod 1" + }, +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock"; + name = "Escape Pod Hatch" + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_1) +"aNu" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aNv" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"aNw" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/hallway/secondary/entry) +"aNx" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aNy" = ( +/obj/docking_port/mobile/pod{ + id = "pod2"; + name = "escape pod 2" + }, +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock"; + name = "Escape Pod Hatch" + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_2) +"aNA" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aNB" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aNC" = ( +/obj/structure/sign/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/canister/air{ + filled = 0.1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aNE" = ( +/obj/machinery/atmospherics/binary/valve, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aNF" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aNH" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aNJ" = ( +/obj/structure/statue/themis{ + layer = 4; + pixel_x = -4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "plaque" + }, +/area/station/legal/courtroom) +"aNK" = ( +/obj/machinery/light/directional/west, +/obj/machinery/alarm/directional/west, +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway South"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/fore) +"aNM" = ( +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/courtroom) +"aNP" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aNT" = ( +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/fore) +"aNX" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aNZ" = ( +/obj/machinery/economy/atm/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aOb" = ( +/obj/machinery/light/directional/west, +/obj/machinery/economy/arcade/claw, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aOg" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aOi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/maintenance/fsmaint) +"aOl" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"aOm" = ( +/obj/structure/chair/wood, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/station/public/mrchangs) +"aOn" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/chefhat, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fpmaint2) +"aOo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/snacks/meat/slab, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/fpmaint) +"aOp" = ( +/obj/structure/closet/crate/freezer, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/fpmaint) +"aOq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/fpmaint) +"aOr" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/fpmaint) +"aOs" = ( +/obj/effect/spawner/random_barrier/obstruction, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aOv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Courtroom Maintenance"; + security_level = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aOw" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_x = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"aOy" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"aOz" = ( +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aOB" = ( +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aOC" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/fsmaint) +"aOE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/interrogation) +"aOF" = ( +/obj/item/reagent_containers/food/drinks/cans/beer, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aOI" = ( +/turf/simulated/wall, +/area/station/public/dorms) +"aOK" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool, +/obj/item/radio/intercom/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"aOL" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"aOM" = ( +/obj/structure/cable, +/obj/machinery/power/apc/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/exit) +"aOP" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/catwalk, +/area/station/hallway/secondary/entry) +"aOQ" = ( +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"aOR" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/catwalk, +/area/station/hallway/secondary/entry) +"aOS" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos/storage) +"aOT" = ( +/obj/structure/chair, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aOU" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/circuitboard/operating, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aOV" = ( +/obj/structure/computerframe, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aOW" = ( +/obj/structure/chair, +/obj/item/reagent_containers/iv_bag/blood/OMinus, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aOX" = ( +/obj/structure/lattice, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/eight, +/turf/space, +/area/space/nearstation) +"aOY" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aOZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"aPa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/clothing/mask/face/fox, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fpmaint2) +"aPc" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/fpmaint2) +"aPd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + id_tag = "apsolar_door_ext"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button/north{ + autolink_id = "apsolar_btn_ext"; + req_one_access_txt = "13" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"aPe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Barber Shop" + }, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"aPf" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/arcade) +"aPg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Arcade" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/carpet/arcade, +/area/station/public/arcade) +"aPi" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aPj" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/fpmaint) +"aPk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/public/dorms) +"aPm" = ( +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"aPq" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"aPr" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"aPt" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aPu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/fpmaint) +"aPv" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aPx" = ( +/obj/effect/spawner/window/grilled, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"aPA" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"aPB" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 8 + }, +/obj/machinery/ai_status_display/south, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aPC" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aPD" = ( +/turf/simulated/floor/plasteel/stairs/left, +/area/station/legal/courtroom) +"aPE" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/chair/sofa/pew/right{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aPF" = ( +/obj/machinery/economy/vending/cola, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aPG" = ( +/obj/machinery/disposal, +/obj/machinery/alarm/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aPH" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/fore) +"aPJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/sign/pods{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aPK" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "maint3"; + name = "Blast Door" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aPL" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"aPM" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/public/sleep) +"aPN" = ( +/obj/machinery/light/directional/north, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"aPO" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/station/maintenance/electrical) +"aPR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aPS" = ( +/obj/machinery/power/apc/engineering/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"aPT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aPW" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28 + }, +/obj/machinery/iv_drip, +/obj/item/reagent_containers/iv_bag/salglu, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aPX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/optable, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aPY" = ( +/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/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aPZ" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/obj/effect/turf_decal/caution, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"aQa" = ( +/obj/effect/turf_decal/caution/stand_clear, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/entry) +"aQb" = ( +/obj/item/wrench, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aQd" = ( +/obj/machinery/cryopod, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/public/sleep) +"aQe" = ( +/obj/effect/spawner/random_barrier/obstruction, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aQf" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"aQg" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aQh" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aQi" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aQj" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aQk" = ( +/obj/machinery/status_display/directional/west, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aQl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aQn" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aQo" = ( +/obj/structure/chair, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aQp" = ( +/obj/structure/chair, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aQq" = ( +/obj/structure/sign/barber{ + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aQr" = ( +/obj/machinery/status_display/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/table, +/obj/item/stack/tape_roll, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aQs" = ( +/obj/machinery/door/window/classic/normal{ + dir = 1; + name = "Hydroponics Desk" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "asteroid" + }, +/area/station/service/hydroponics) +"aQv" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluered" + }, +/area/station/public/dorms) +"aQw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aQx" = ( +/obj/machinery/requests_console{ + department = "Crew Quarters"; + name = "Crew Quarters Requests Console"; + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/decal/warning_stripes/blue/partial{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aQy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aQz" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluered" + }, +/area/station/public/dorms) +"aQA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/economy/vending/crittercare, +/obj/effect/decal/warning_stripes/blue, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluered" + }, +/area/station/public/dorms) +"aQC" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aQD" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/primary/fore) +"aQE" = ( +/obj/machinery/economy/vending/wallmed/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aQG" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aQI" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aQJ" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aQL" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aQM" = ( +/obj/structure/janitorialcart, +/obj/effect/decal/cleanable/dust, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "purple" + }, +/area/station/maintenance/fsmaint) +"aQN" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aQO" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aQP" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aQS" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/fore) +"aQT" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"aQU" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/space, +/area/space/nearstation) +"aQV" = ( +/obj/structure/table/glass, +/obj/machinery/light/directional/north, +/obj/machinery/computer/mob_healer_terminal{ + pixel_y = 30 + }, +/obj/item/reagent_containers/food/drinks/britcup{ + initialized = 1; + list_reagents = list("tea"=15); + pixel_x = 4; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"aQW" = ( +/obj/structure/table, +/obj/item/camera_assembly, +/obj/item/camera_assembly, +/obj/item/assembly/prox_sensor{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/machinery/alarm/directional/east, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"aQY" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"aRa" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aRd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aRe" = ( +/obj/structure/sign/vacuum/external{ + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aRf" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aRg" = ( +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aRh" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aRi" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aRj" = ( +/obj/structure/table/glass, +/obj/item/storage/bag/trash, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aRl" = ( +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/effect/spawner/random_spawners/grille_often, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aRm" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_1) +"aRp" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/fpmaint2) +"aRw" = ( +/turf/simulated/wall/r_wall, +/area/station/ai_monitored/storage/eva) +"aRx" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aRy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/hallway/primary/starboard/west) +"aRA" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aRC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aRF" = ( +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/fore) +"aRH" = ( +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"aRI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aRJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"aRM" = ( +/obj/structure/table, +/obj/item/storage/box/cups, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aRO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitehall" + }, +/area/station/science/hallway) +"aRP" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aRQ" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aRR" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/camera{ + c_tag = "Courtroom South"; + dir = 1 + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"aRU" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"aRV" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_2) +"aRW" = ( +/obj/machinery/light/directional/east, +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitecorner" + }, +/area/station/hallway/secondary/entry) +"aRX" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/supply/office) +"aRZ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"aSc" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/fore) +"aSd" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"aSf" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aSj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aSk" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aSl" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/sleep) +"aSn" = ( +/obj/machinery/door/firedoor, +/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" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aSo" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/shoes/jackboots, +/obj/item/reagent_containers/iv_bag/blood/OMinus, +/obj/item/reagent_containers/food/drinks/cans/badminbrew, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aSp" = ( +/obj/structure/table/glass, +/obj/item/hemostat, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aSq" = ( +/obj/structure/table/glass, +/obj/item/restraints/handcuffs/cable/zipties, +/obj/item/reagent_containers/iv_bag/blood/OMinus, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aSs" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aSt" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/fpmaint2) +"aSu" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/fpmaint) +"aSv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"aSA" = ( +/turf/simulated/wall/r_wall, +/area/station/service/expedition) +"aSC" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"aSH" = ( +/obj/machinery/atmospherics/binary/valve/open{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aSJ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/public/dorms) +"aSM" = ( +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/public/dorms) +"aSN" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/fore) +"aSQ" = ( +/obj/effect/landmark/start/botanist, +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/hydroponics) +"aSR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Maintenance" + }, +/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/mapping_helpers/airlock/access/any/service/kitchen, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aSW" = ( +/obj/structure/chair/comfy/beige, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/hallway/secondary/entry) +"aSX" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/hallway/secondary/entry) +"aSY" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/hallway/secondary/entry) +"aTa" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"aTb" = ( +/obj/effect/decal/cleanable/dirt, +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"aTf" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random_spawners/cobweb_left_rare, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aTg" = ( +/obj/structure/grille/broken, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aTh" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aTj" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"aTm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aTo" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aTp" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aTt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/power/apc/cryo/east, +/obj/structure/cable, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aTu" = ( +/turf/simulated/wall, +/area/station/hallway/secondary/garden) +"aTv" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"aTx" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"aTy" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"aTA" = ( +/obj/structure/table/glass, +/obj/item/seeds/apple, +/obj/item/seeds/banana, +/obj/item/seeds/cocoapod, +/obj/item/seeds/grape, +/obj/item/seeds/orange, +/obj/item/seeds/sugarcane, +/obj/item/seeds/wheat, +/obj/item/seeds/watermelon, +/obj/item/seeds/tower, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"aTC" = ( +/obj/machinery/camera{ + c_tag = "Cryodorms"; + dir = 4 + }, +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/public/sleep) +"aTD" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aTE" = ( +/obj/structure/chair/sofa/corner{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/wood/oak, +/area/station/public/dorms) +"aTF" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/public/dorms) +"aTG" = ( +/obj/structure/chair/sofa/left, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/wood/oak, +/area/station/public/dorms) +"aTI" = ( +/obj/structure/chair/sofa, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/wood/oak, +/area/station/public/dorms) +"aTJ" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/public/dorms) +"aTL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/unres, +/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/door/airlock/medical/glass{ + id_tag = "MedbayFoyerPort"; + name = "Medbay Entrance" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"aTM" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/sign/lifestar, +/turf/simulated/floor/plating, +/area/station/medical/reception) +"aTN" = ( +/obj/machinery/light/directional/west, +/obj/machinery/ai_status_display/west, +/obj/machinery/papershredder, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"aTQ" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"aTR" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/wood/oak, +/area/station/public/dorms) +"aTS" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/chem_dispenser, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"aTT" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/machinery/chem_master, +/obj/structure/reagent_dispensers/fueltank/chem/north, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"aTU" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_x = -2; + pixel_y = 12 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"aTV" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/chem_heater, +/obj/machinery/light/directional/north, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"aTW" = ( +/obj/structure/closet/secure_closet/reagents, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"aTY" = ( +/obj/structure/closet/secure_closet/reagents, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"aTZ" = ( +/obj/item/restraints/handcuffs/cable/cyan, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dust, +/obj/item/paper/crumpled/bloody{ + desc = "Небольшой кусок бумаги, залитый кровью."; + info = "*Здесь было что-то написано, но вы не можете разобрать что именнно.*"; + name = "Окровавленная записка" + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/spawner/random_spawners/mod/maint, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aUa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"aUb" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aUc" = ( +/obj/machinery/door/poddoor{ + id_tag = "maint2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aUd" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "stairs-r" + }, +/area/station/public/dorms) +"aUe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/maintenance/fsmaint) +"aUf" = ( +/obj/structure/table/wood, +/obj/item/candle, +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/station/maintenance/fsmaint) +"aUg" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"aUh" = ( +/obj/machinery/computer/monitor{ + dir = 1; + name = "Backup Power Monitoring Console" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"aUk" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aUl" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aUm" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aUn" = ( +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aUo" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aUr" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"aUs" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"aUt" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/checkpoint/secondary) +"aUu" = ( +/obj/machinery/hydroponics/soil, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/garden) +"aUx" = ( +/obj/machinery/seed_extractor, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"aUz" = ( +/obj/structure/sink/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"aUA" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/service/hydroponics) +"aUE" = ( +/turf/simulated/wall/r_wall, +/area/station/command/vault) +"aUF" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"aUG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/public/dorms) +"aUH" = ( +/obj/machinery/gateway/centerstation, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"aUI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/dorms) +"aUJ" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "arrival" + }, +/area/station/public/dorms) +"aUK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/dorms) +"aUL" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/service/chapel/office) +"aUN" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"aUO" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + density = 0; + desc = "Lube off, pal."; + icon_state = "open"; + id_tag = "imnotmakingyoulubepissoff"; + name = "Chemistry Privacy Shutter"; + opacity = 0 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/medical/chemistry) +"aUP" = ( +/obj/machinery/door_control/shutter/north{ + desc = "A remote control switch for the medbay foyer."; + id = "imnotmakingyoulubepissoff"; + name = "Chemistry Privacy Shutter Control" + }, +/obj/structure/table/glass, +/obj/item/clothing/glasses/science{ + pixel_y = 10 + }, +/obj/item/clothing/glasses/science{ + pixel_y = 4 + }, +/obj/item/clothing/glasses/science{ + pixel_y = -2 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"aUQ" = ( +/turf/simulated/wall, +/area/station/public/toilet) +"aUR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"aUS" = ( +/turf/simulated/wall, +/area/station/service/bar) +"aUT" = ( +/turf/simulated/floor/plasteel/stairs{ + dir = 1 + }, +/area/station/public/dorms) +"aUU" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aUV" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/warning_stripes/west, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aUW" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aUX" = ( +/obj/effect/spawner/window/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/dronefabricator) +"aUY" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/electrical) +"aUZ" = ( +/turf/space, +/area/station/hallway/secondary/entry) +"aVa" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aVc" = ( +/turf/simulated/wall, +/area/station/security/checkpoint/secondary) +"aVd" = ( +/obj/machinery/camera{ + c_tag = "Arrivals East"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aVe" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"aVg" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/public/storage/tools) +"aVh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Primary Tool Storage" + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"aVi" = ( +/turf/simulated/wall, +/area/station/public/storage/tools) +"aVj" = ( +/turf/simulated/wall/r_wall, +/area/station/public/storage/tools) +"aVk" = ( +/obj/structure/closet/secure_closet/freezer/money, +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/vault) +"aVl" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "vault" + }, +/area/station/command/vault) +"aVm" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/alarm/directional/north, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/station/command/vault) +"aVn" = ( +/obj/machinery/status_display/directional/north, +/obj/structure/table/reinforced, +/obj/structure/closet/fireaxecabinet{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/vault) +"aVo" = ( +/obj/structure/table/wood, +/obj/item/instrument/eguitar, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/dorms) +"aVp" = ( +/obj/structure/table/wood, +/obj/item/megaphone, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/dorms) +"aVq" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/platform{ + dir = 8; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/public/dorms) +"aVr" = ( +/obj/machinery/gateway, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/station/service/expedition) +"aVs" = ( +/obj/structure/table/wood, +/obj/item/instrument/piano_synth, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/dorms) +"aVu" = ( +/turf/simulated/wall, +/area/station/service/bar/atrium) +"aVx" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"aVy" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"aVA" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aVC" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"aVD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"aVI" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"aVL" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"aVN" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aVO" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"aVQ" = ( +/obj/machinery/door/poddoor{ + id_tag = "maint1" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aVV" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/arrival/station) +"aVX" = ( +/obj/machinery/door/airlock/titanium, +/obj/structure/fans/tiny, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aVY" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/arrival/station) +"aWb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aWc" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"aWd" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"aWf" = ( +/obj/structure/reagent_dispensers/peppertank/north, +/obj/machinery/computer/security{ + network = list("SS13","Research Outpost","Mining Outpost") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"aWg" = ( +/obj/machinery/camera{ + c_tag = "Mini Satellite Access"; + dir = 4; + network = list("SS13","MiniSat","Engineering") + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/engineering/aitransit) +"aWh" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security Requests Console"; + pixel_y = 30 + }, +/obj/machinery/computer/secure_data, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"aWi" = ( +/obj/structure/table, +/obj/machinery/firealarm/directional/north, +/obj/item/wirecutters, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"aWj" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"aWk" = ( +/obj/machinery/economy/vending/assist, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"aWm" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Primary Tool Storage" + }, +/obj/machinery/requests_console{ + department = "Tool Storage"; + name = "Tool Storage Requests Console"; + pixel_y = 30 + }, +/obj/item/assembly/igniter{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/assembly/igniter, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"aWn" = ( +/obj/structure/table, +/obj/machinery/alarm/directional/north, +/obj/item/t_scanner, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"aWo" = ( +/obj/structure/table, +/obj/item/radio/intercom/directional/north, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/multitool, +/obj/item/multitool{ + pixel_x = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"aWp" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"aWq" = ( +/obj/structure/table, +/obj/machinery/light_switch/north, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"aWr" = ( +/obj/structure/table, +/obj/machinery/status_display/directional/north, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"aWs" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "vault" + }, +/area/station/command/vault) +"aWt" = ( +/obj/machinery/economy/vending/tool, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"aWu" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/station/command/vault) +"aWv" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "vault" + }, +/area/station/command/vault) +"aWw" = ( +/obj/machinery/nuclearbomb{ + r_code = "LOLNO" + }, +/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 = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/vault) +"aWx" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/station/command/vault) +"aWz" = ( +/obj/machinery/light/directional/west, +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/public/sleep) +"aWB" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aWC" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/public/dorms) +"aWD" = ( +/obj/structure/table/wood, +/obj/item/ashtray/bronze, +/turf/simulated/floor/carpet, +/area/station/public/dorms) +"aWE" = ( +/obj/structure/table/wood, +/obj/item/lighter/random, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/turf/simulated/floor/carpet, +/area/station/public/dorms) +"aWF" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/public/dorms) +"aWG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/dorms) +"aWH" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/public/dorms) +"aWI" = ( +/obj/structure/table/glass, +/obj/item/storage/box/cups, +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"aWJ" = ( +/mob/living/simple_animal/walrus{ + name = "Порфирий Корнеевич"; + desc = "Обожает плескаться в холодной воде и всем рекомендует." + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/dorms) +"aWK" = ( +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/dorms) +"aWL" = ( +/obj/structure/table, +/obj/item/clothing/under/misc/swimsuit/red, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "arrival" + }, +/area/station/public/dorms) +"aWM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/dorms) +"aWN" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"aWP" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/structure/platform{ + dir = 4; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/public/dorms) +"aWR" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/maintenance/asmaint2) +"aWS" = ( +/obj/machinery/economy/vending/chinese, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"aWT" = ( +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/station/public/dorms) +"aWU" = ( +/obj/structure/platform/corner{ + dir = 8; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/public/dorms) +"aWV" = ( +/obj/item/stack/rods{ + amount = 10 + }, +/obj/machinery/kitchen_machine/oven, +/obj/item/storage/box/donkpockets, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "stage_bleft" + }, +/area/station/maintenance/fsmaint) +"aWW" = ( +/obj/structure/platform/corner{ + anchored = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"aXc" = ( +/obj/machinery/crema_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/service/chapel/office) +"aXd" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/crematorium, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"aXe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/service/chapel/office) +"aXf" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/public/dorms) +"aXg" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/service/chapel/office) +"aXh" = ( +/obj/machinery/driver_button{ + id_tag = "chapelgun"; + name = "Chapel Mass Driver"; + pixel_x = 25 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/service/chapel) +"aXi" = ( +/obj/structure/table/wood, +/obj/machinery/alarm/directional/north, +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/lipstick/random{ + pixel_y = 2 + }, +/obj/item/lipstick/random{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"aXj" = ( +/obj/structure/morgue, +/obj/machinery/camera{ + c_tag = "Chapel Crematorium"; + dir = 4 + }, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/service/chapel/office) +"aXk" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/service/chapel/office) +"aXl" = ( +/obj/machinery/door/poddoor{ + id_tag = "chapelgun"; + name = "Chapel Launcher Door"; + protected = 0 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/station/service/chapel) +"aXn" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + icon_state = "burst_r" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/arrival/station) +"aXp" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"aXq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aXr" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aXs" = ( +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aXt" = ( +/obj/machinery/light/directional/north, +/obj/machinery/computer/arcade, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aXu" = ( +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aXv" = ( +/obj/structure/closet/wardrobe/xenos, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aXw" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aXx" = ( +/obj/structure/closet/wardrobe/grey, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aXy" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aXA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/security/checkpoint/secondary) +"aXB" = ( +/obj/structure/closet, +/obj/item/crowbar, +/obj/item/flash, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"aXC" = ( +/obj/structure/chair/office/dark, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/checkpoint/secondary) +"aXD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/checkpoint/secondary) +"aXE" = ( +/obj/item/radio/intercom/department/security{ + pixel_x = 22; + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"aXF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aXI" = ( +/obj/structure/table/glass, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"aXL" = ( +/obj/machinery/door/airlock{ + name = "Garden" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"aXM" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/public/storage/tools) +"aXO" = ( +/obj/machinery/camera{ + c_tag = "Vault"; + dir = 4 + }, +/obj/structure/closet/crate{ + name = "Gold Crate" + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_y = 2 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/radio/intercom/directional/west, +/obj/item/storage/belt/champion/wrestling, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/station/command/vault) +"aXP" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "vault" + }, +/area/station/command/vault) +"aXQ" = ( +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"aXR" = ( +/obj/item/coin/silver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/coin/silver{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/coin/silver{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/coin/silver{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/coin/silver{ + pixel_x = 5; + pixel_y = -8 + }, +/obj/structure/closet/crate{ + name = "Silver Crate" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/station/command/vault) +"aXX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"aXZ" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/glass, +/obj/structure/cable{ + 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/station/maintenance/fpmaint2) +"aYa" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aYb" = ( +/obj/item/tank/internals/emergency_oxygen, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + 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/station/maintenance/fpmaint) +"aYc" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aYf" = ( +/obj/machinery/computer/card, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/station/command/bridge) +"aYg" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "greencorner" + }, +/area/station/command/bridge) +"aYh" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"aYl" = ( +/obj/structure/sign/poster/official/random/north, +/obj/machinery/economy/vending/medidrobe, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"aYm" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"aYn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"aYo" = ( +/obj/machinery/economy/vending/coffee, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"aYr" = ( +/obj/machinery/washing_machine, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"aYs" = ( +/obj/machinery/light_switch/south, +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/public/sleep) +"aYt" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "smstorage"; + name = "Supermatter Storage" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"aYu" = ( +/obj/machinery/door/window/classic/normal{ + name = "EVA Equipment" + }, +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"aYv" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"aYx" = ( +/obj/structure/crematorium, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/service/chapel/office) +"aYy" = ( +/obj/machinery/door/window/classic/reversed{ + name = "EVA Equipment" + }, +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"aYz" = ( +/obj/machinery/camera{ + c_tag = "Chapel North" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "vault" + }, +/area/station/service/chapel) +"aYA" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "vault" + }, +/area/station/service/chapel) +"aYB" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"aYC" = ( +/obj/structure/chair/comfy/brown{ + color = "#514E58"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/fsmaint) +"aYD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aYE" = ( +/obj/structure/chair/comfy/brown{ + color = "#514E58"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aYF" = ( +/obj/structure/closet/coffin, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"aYG" = ( +/obj/structure/closet/coffin, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"aYI" = ( +/obj/machinery/light/directional/east, +/obj/machinery/computer/cryopod{ + dir = 8; + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"aYJ" = ( +/obj/machinery/alarm/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet, +/area/station/public/mrchangs) +"aYK" = ( +/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" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aYL" = ( +/obj/structure/chair/comfy/shuttle, +/obj/machinery/light/directional/east, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aYM" = ( +/obj/structure/chair/comfy/shuttle, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aYO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aYP" = ( +/turf/simulated/wall, +/area/station/service/chapel) +"aYQ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/service/chapel) +"aYT" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/arrival/station) +"aYU" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/equipmentstorage) +"aYV" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/arrival/station) +"aYZ" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/landmark/spawner/late/crew, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/arrival/station) +"aZa" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"aZb" = ( +/obj/item/radio/intercom/department/security{ + pixel_y = -22; + dir = 1 + }, +/obj/machinery/newscaster/security_unit/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"aZc" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"aZe" = ( +/obj/structure/table, +/obj/machinery/light/directional/west, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/item/stack/tape_roll, +/obj/item/stack/tape_roll, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"aZf" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/radio{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"aZh" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"aZi" = ( +/mob/living/simple_animal/mouse/brown/Tom, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "vault" + }, +/area/station/command/vault) +"aZj" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/table/glass, +/obj/item/cultivator, +/obj/item/hatchet, +/obj/item/crowbar, +/obj/item/plant_analyzer, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"aZk" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/station/command/vault) +"aZm" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/service/chapel) +"aZq" = ( +/obj/structure/safe{ + known_by = list("captain") + }, +/obj/machinery/light_switch/south, +/obj/item/clothing/head/bearpelt, +/obj/item/folder/documents, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/lighter/zippo/nt_rep, +/obj/item/storage/fancy/cigarettes/cigpack_robustgold, +/obj/item/stack/spacecash/c1000, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/station/command/vault) +"aZr" = ( +/obj/structure/table, +/obj/machinery/light/directional/east, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"aZs" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"aZt" = ( +/turf/simulated/floor/wood/oak, +/area/station/public/dorms) +"aZu" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/station/public/dorms) +"aZv" = ( +/turf/simulated/floor/carpet, +/area/station/public/dorms) +"aZw" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/public/dorms) +"aZx" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"aZy" = ( +/mob/living/simple_animal/hostile/retaliate/carp/koi{ + name = "Jeremy" + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/dorms) +"aZz" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "arrival" + }, +/area/station/public/dorms) +"aZC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/platform/corner{ + dir = 1; + anchored = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"aZD" = ( +/obj/structure/platform{ + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/public/dorms) +"aZE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/platform{ + dir = 8; + anchored = 1 + }, +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/public/dorms) +"aZF" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluecorners" + }, +/area/station/service/chapel) +"aZG" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/dorms) +"aZL" = ( +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/public/dorms) +"aZN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aZT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"aZU" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"aZW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"aZY" = ( +/obj/machinery/camera{ + c_tag = "Security Checkpoint"; + dir = 1 + }, +/obj/machinery/alarm/directional/west, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"aZZ" = ( +/obj/item/gun/throw/crossbow, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"baa" = ( +/obj/item/reagent_containers/food/snacks/grown/banana, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"bab" = ( +/obj/machinery/alarm/directional/east, +/obj/machinery/camera{ + c_tag = "Garden"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"bac" = ( +/obj/item/clothing/suit/soldiercoat, +/obj/structure/table, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"bad" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"bag" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/generic, +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"bah" = ( +/obj/machinery/suit_storage_unit/clown, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bai" = ( +/obj/machinery/suit_storage_unit/mime, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"baj" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/decal/warning_stripes/blue/hollow, +/obj/machinery/light/directional/north, +/obj/item/clothing/shoes/magboots{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bam" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"bao" = ( +/obj/machinery/status_display/directional/north, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/stack/packageWrap, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"baq" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bar" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bat" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/fpmaint2) +"bau" = ( +/turf/simulated/wall, +/area/station/service/library) +"bav" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/table/wood, +/obj/item/dice/d20, +/obj/item/dice, +/obj/item/storage/box/characters, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bax" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bay" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "vault" + }, +/area/station/service/chapel) +"baz" = ( +/turf/simulated/wall, +/area/station/service/chapel/office) +"baA" = ( +/obj/structure/rack, +/obj/item/storage/fancy/candle_box/full, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "vault" + }, +/area/station/service/chapel) +"baB" = ( +/obj/structure/closet/coffin, +/obj/machinery/door/window/classic/normal{ + name = "Coffin Storage"; + req_one_access_txt = "22" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/chapel_office, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"baC" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"baE" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"baF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"baI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Crematorium" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/crematorium, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel/office) +"baL" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "blue" + }, +/area/station/service/hydroponics) +"baM" = ( +/obj/machinery/door/airlock/public/glass{ + id_tag = "vipbar_bolt"; + locked = 1; + name = "ViP Room" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "vipbar" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar) +"baN" = ( +/obj/machinery/atmospherics/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"baZ" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"bbf" = ( +/obj/machinery/door/airlock/vault{ + locked = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/supply/vault, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "vault" + }, +/area/station/command/vault) +"bbg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Cryogenics"; + name = "Cryodorms" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/public/sleep) +"bbi" = ( +/obj/machinery/economy/vending/cola, +/obj/machinery/camera{ + c_tag = "Dormitories West" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"bbj" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bbk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/dorms) +"bbm" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bbn" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/dorms) +"bbo" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "ramptop" + }, +/area/station/public/dorms) +"bbp" = ( +/obj/structure/table, +/obj/item/weldingtool, +/obj/item/crowbar, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bbq" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/station/command/vault) +"bbr" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/north) +"bbu" = ( +/obj/structure/platform{ + dir = 1; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/public/dorms) +"bbv" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/public/dorms) +"bbw" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"bby" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/morgue{ + dir = 2 + }, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plating, +/area/station/medical/morgue) +"bbE" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"bbG" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"bbH" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/baguette, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"bbI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bbJ" = ( +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/storage/backpack/duffel/clown, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"bbK" = ( +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bbL" = ( +/obj/machinery/status_display/directional/north, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bbM" = ( +/obj/machinery/atmospherics/portable/canister/nitrogen{ + anchored = 1 + }, +/turf/simulated/floor/engine/n2, +/area/station/engineering/atmos) +"bbN" = ( +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bbO" = ( +/obj/machinery/atmospherics/portable/canister/oxygen{ + anchored = 1 + }, +/turf/simulated/floor/engine/o2, +/area/station/engineering/atmos) +"bbP" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bbQ" = ( +/obj/machinery/ai_status_display/north, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bbR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/structure/cable{ + 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/station/maintenance/fpmaint) +"bbT" = ( +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"bbZ" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"bca" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"bcb" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"bcc" = ( +/obj/structure/window/reinforced, +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/wood/oak, +/area/station/public/dorms) +"bcd" = ( +/obj/structure/window/reinforced, +/obj/structure/table/wood, +/obj/item/paicard, +/turf/simulated/floor/wood/oak, +/area/station/public/dorms) +"bce" = ( +/obj/structure/window/reinforced, +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/wood/oak, +/area/station/public/dorms) +"bcf" = ( +/obj/structure/window/reinforced, +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/wood/oak, +/area/station/public/dorms) +"bch" = ( +/obj/structure/chair/office/dark, +/obj/machinery/camera{ + c_tag = "Library North" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bci" = ( +/obj/structure/chair/office/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bck" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bcm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bcn" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"bco" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bcp" = ( +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bcq" = ( +/obj/structure/closet/secure_closet/chaplain, +/obj/machinery/firealarm/directional/west, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/service/chapel/office) +"bcr" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"bct" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bcu" = ( +/obj/structure/table/wood, +/obj/item/pen, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/machinery/light/directional/north, +/turf/simulated/floor/carpet/black, +/area/station/service/chapel/office) +"bcw" = ( +/obj/machinery/alarm/directional/north, +/obj/machinery/camera{ + c_tag = "Chapel Chaplain's Office" + }, +/obj/structure/table/wood, +/obj/item/lighter/zippo/black, +/turf/simulated/floor/carpet/black, +/area/station/service/chapel/office) +"bcx" = ( +/turf/simulated/floor/carpet/black, +/area/station/service/chapel/office) +"bcz" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/service/chapel/office) +"bcA" = ( +/obj/structure/dispenser, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"bcB" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/storage/fancy/crayons, +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/service/chapel/office) +"bcC" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/service/chapel/office) +"bcD" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bcF" = ( +/obj/machinery/light/directional/west, +/obj/machinery/ai_status_display/west, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "vault" + }, +/area/station/service/chapel) +"bcG" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Lounge" + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bcL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/brig) +"bcM" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bcN" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"bcO" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/black, +/area/station/service/chapel/office) +"bcP" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/service/chapel) +"bcQ" = ( +/obj/structure/table/glass, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/plant_analyzer, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/garden) +"bcR" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plating, +/area/station/service/chapel) +"bcT" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/fyellow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bcW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bcX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plasteel, +/area/station/security/checkpoint/secondary) +"bcZ" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 5; + icon_state = "vault" + }, +/area/station/hallway/primary/port) +"bda" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/public/dorms) +"bdb" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/analyzer, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bdd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) +"bde" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bdg" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/storage/firstaid/regular, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bdh" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bdi" = ( +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/poddoor/preopen{ + id_tag = "bridge blast west"; + name = "Bridge Blast Doors" + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bdj" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"bdk" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bdm" = ( +/obj/machinery/ai_status_display/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"bdn" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bdq" = ( +/obj/machinery/light/directional/north, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/machinery/camera{ + c_tag = "Port Hallway 2" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"bdr" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/clothing/head/stalhelm{ + pixel_x = -1; + pixel_y = 18 + }, +/obj/item/clothing/under/costume/soldieruniform, +/obj/item/clothing/suit/soldiercoat{ + pixel_y = 6 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light_switch/south, +/turf/simulated/floor/wood/oak, +/area/station/service/clown) +"bdu" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/garden) +"bdv" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/north) +"bdw" = ( +/obj/item/flag/nt, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 25 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 39 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/station/hallway/primary/central/north) +"bdx" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/pestspray, +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/reagent_containers/glass/bottle/nutrient/rh, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/garden) +"bdy" = ( +/obj/structure/sign/poster/official/random/west, +/obj/machinery/light/directional/west, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bdz" = ( +/obj/structure/filingcabinet, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"bdA" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/effect/decal/warning_stripes/white/hollow, +/obj/item/tank/jetpack/carbondioxide, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bdB" = ( +/obj/machinery/light/directional/east, +/obj/structure/sign/poster/official/random/east, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bdD" = ( +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) +"bdE" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"bdF" = ( +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/fore) +"bdG" = ( +/obj/machinery/atmospherics/portable/canister/air{ + anchored = 1 + }, +/turf/simulated/floor/engine/air, +/area/station/engineering/atmos) +"bdH" = ( +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"bdI" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Dormitories" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"bdK" = ( +/obj/machinery/access_button{ + autolink_id = "evamaint_btn_int"; + pixel_y = 25; + req_one_access_txt = "13" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"bdO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bdP" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/poddoor/preopen{ + id_tag = "bridge blast east"; + name = "Bridge Blast Doors" + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bdQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/service/chapel) +"bdR" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bdT" = ( +/turf/simulated/wall, +/area/station/service/kitchen) +"bdX" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bdY" = ( +/obj/machinery/mass_driver{ + dir = 4; + id_tag = "chapelgun" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window{ + dir = 1; + name = "Mass Driver" + }, +/obj/structure/window/reinforced, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/chapel_office{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/service/chapel) +"bea" = ( +/obj/structure/sign/chinese{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"beb" = ( +/turf/simulated/wall, +/area/station/service/hydroponics) +"bec" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/table/wood, +/obj/machinery/bottler, +/turf/simulated/floor/wood/fancy/oak, +/area/station/service/bar) +"bee" = ( +/obj/machinery/power/apc/directional/south, +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bef" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/warning_stripes/green/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"beg" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"beh" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Containment Pen" + }, +/obj/effect/turf_decal/stripes/full, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"bel" = ( +/obj/structure/rack, +/obj/item/storage/bible, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bem" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"beo" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bep" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"beq" = ( +/obj/machinery/ai_status_display/west, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/service/chapel/office) +"ber" = ( +/obj/structure/table/wood, +/obj/item/stack/tile/carpet/black{ + amount = 10 + }, +/turf/simulated/floor/carpet/black, +/area/station/service/chapel/office) +"bes" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"bet" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/chaplain, +/turf/simulated/floor/carpet/black, +/area/station/service/chapel/office) +"beu" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/nw) +"bev" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/north) +"bex" = ( +/obj/machinery/requests_console{ + department = "Arrival Shuttle"; + name = "Arrival Shuttle Requests Console"; + pixel_y = -30 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"bey" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + icon_state = "burst_l" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/arrival/station) +"beE" = ( +/turf/simulated/wall/r_wall, +/area/station/turret_protected/ai_upload) +"beG" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"beL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/primary/port) +"beO" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + 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/plasteel{ + dir = 5; + icon_state = "vault" + }, +/area/station/hallway/primary/port) +"beP" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/garden) +"beQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Garden" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"beR" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/storage/tools) +"beX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "E.V.A." + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/eva, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bfb" = ( +/obj/machinery/poolcontroller{ + pixel_y = -25; + srange = 7 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"bfc" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bfh" = ( +/obj/structure/sign/securearea, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/ai_monitored/storage/eva) +"bfi" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera{ + c_tag = "Dormitories Center"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"bfo" = ( +/obj/effect/decal/warning_stripes/white, +/obj/machinery/kitchen_machine/oven{ + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"bfp" = ( +/obj/machinery/status_display/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"bfq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"bfv" = ( +/obj/machinery/alarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"bfy" = ( +/obj/machinery/economy/atm/south, +/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/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"bfz" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"bfB" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + location = "Hydroponics" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/station/maintenance/fsmaint) +"bfH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/service/hydroponics) +"bfM" = ( +/obj/machinery/newscaster/directional/north, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"bfQ" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/service/hydroponics) +"bfS" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/service/chapel) +"bfT" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bfU" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/clothing/head/welding, +/turf/simulated/floor/plating, +/area/station/aisat/service) +"bfV" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/black, +/area/station/service/chapel/office) +"bfW" = ( +/obj/structure/rack, +/obj/item/storage/fancy/candle_box/full{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box/full, +/obj/item/storage/fancy/candle_box/full{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bfX" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/service/chapel/office) +"bfY" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/sop_service, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bfZ" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/sop_general, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bga" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 10 + }, +/obj/item/eftpos, +/turf/simulated/floor/carpet/black, +/area/station/service/chapel/office) +"bgb" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/station/service/chapel) +"bgf" = ( +/obj/structure/table/wood, +/obj/item/candle, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bgg" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/service/chapel/office) +"bgi" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bgj" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/chips, +/obj/item/reagent_containers/food/drinks/cans/cola, +/turf/simulated/floor/carpet, +/area/station/hallway/secondary/entry) +"bgk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bgl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bgn" = ( +/obj/machinery/light/directional/north, +/obj/structure/sign/directions/cargo{ + dir = 4; + pixel_y = 25 + }, +/obj/structure/sign/directions/bridge{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 39 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bgq" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"bgr" = ( +/obj/machinery/status_display/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"bgs" = ( +/obj/item/kirbyplants, +/obj/machinery/camera{ + c_tag = "Office Supplies"; + dir = 4 + }, +/obj/machinery/status_display/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"bgt" = ( +/obj/structure/table/wood, +/obj/item/deck/cards, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/hallway/secondary/entry) +"bgu" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bgv" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/entry) +"bgw" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bgx" = ( +/obj/structure/table, +/obj/item/camera_film{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/camera_film{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"bgz" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"bgA" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"bgB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bgC" = ( +/obj/structure/sign/double/map/left{ + pixel_y = 31 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bgD" = ( +/obj/structure/sign/double/map/right{ + pixel_y = 31 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bgE" = ( +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"bgG" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bgH" = ( +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bgI" = ( +/obj/item/radio/beacon, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bgJ" = ( +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"bgK" = ( +/obj/machinery/light/directional/west, +/obj/machinery/gateway{ + dir = 10 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/station/service/expedition) +"bgL" = ( +/obj/machinery/light/directional/east, +/obj/machinery/gateway{ + dir = 6 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/station/service/expedition) +"bgM" = ( +/obj/structure/table/glass, +/obj/item/hatchet, +/obj/item/cultivator, +/obj/item/crowbar, +/obj/item/plant_analyzer, +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/garden) +"bgN" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bgP" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/station/hallway/primary/central/nw) +"bgQ" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 8; + location = "Tool Storage" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bgR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bgS" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) +"bgT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/mrchangs) +"bgU" = ( +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) +"bgV" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/nw) +"bgW" = ( +/turf/simulated/floor/plasteel{ + icon_state = "L11" + }, +/area/station/hallway/primary/central/north) +"bgZ" = ( +/obj/machinery/door/airlock/tranquillite{ + name = "Mime's Office" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/mime, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"bha" = ( +/turf/simulated/floor/plasteel{ + icon_state = "L1" + }, +/area/station/hallway/primary/central/north) +"bhb" = ( +/turf/simulated/floor/plasteel{ + icon_state = "L3" + }, +/area/station/hallway/primary/central/north) +"bhc" = ( +/turf/simulated/floor/plasteel{ + icon_state = "L5" + }, +/area/station/hallway/primary/central/north) +"bhg" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"bhh" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/hallway/primary/central/north) +"bhm" = ( +/turf/simulated/floor/carpet, +/area/station/hallway/secondary/entry) +"bhn" = ( +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/engineering/gravitygenerator) +"bhq" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"bhu" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Hydroponics Delivery"; + req_one_access_txt = "35" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"bhv" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/hallway/secondary/entry) +"bhx" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bhz" = ( +/obj/machinery/photocopier{ + toner = 0 + }, +/obj/machinery/alarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"bhA" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet/black, +/area/station/service/chapel/office) +"bhE" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"bhF" = ( +/obj/structure/table, +/obj/item/vending_refill/snack{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/vending_refill/cola, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"bhH" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 2 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"bhI" = ( +/turf/simulated/floor/plasteel{ + icon_state = "stairs-r" + }, +/area/station/service/expedition) +"bhK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bhN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry) +"bhO" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry) +"bhP" = ( +/obj/structure/table, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/ai_status_display/north, +/obj/item/radio/alternative{ + pixel_y = 12 + }, +/obj/item/radio/alternative{ + pixel_y = 6 + }, +/obj/item/radio/alternative{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/radio/alternative{ + pixel_y = 6; + pixel_x = -8 + }, +/obj/item/radio/alternative, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"bhQ" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"bhU" = ( +/obj/structure/window/reinforced, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bhV" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/north) +"bhX" = ( +/obj/machinery/door/airlock, +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bhZ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bia" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/papershredder, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bid" = ( +/obj/machinery/economy/vending/snack, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bih" = ( +/obj/machinery/alarm/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bii" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bil" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/turf/space, +/area/space/nearstation) +"bip" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/plating, +/area/station/maintenance/fsmaint) +"bir" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Office Maintenance" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bit" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"biu" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/ai_monitored/storage/eva) +"biv" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/entry) +"biw" = ( +/obj/machinery/newscaster/directional/south, +/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/plasteel{ + icon_state = "grimy" + }, +/area/station/service/chapel/office) +"biE" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"biI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "L7" + }, +/area/station/hallway/primary/central/north) +"biK" = ( +/turf/simulated/floor/plasteel{ + icon_state = "L9" + }, +/area/station/hallway/primary/central/north) +"biL" = ( +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall/r_wall, +/area/station/security/brig) +"biM" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/machinery/light/directional/north, +/obj/effect/decal/warning_stripes/white/hollow, +/obj/effect/decal/warning_stripes/white/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"biN" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/storage/toolbox/electrical{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/decal/warning_stripes/white/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"biO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "L13" + }, +/area/station/hallway/primary/central/north) +"biP" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/public/mrchangs) +"biQ" = ( +/obj/structure/statue/chickenstatue, +/obj/machinery/camera{ + c_tag = "Mr. Chang's" + }, +/turf/simulated/floor/carpet, +/area/station/public/mrchangs) +"biR" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/station/public/mrchangs) +"biT" = ( +/obj/structure/table/wood, +/obj/item/kitchen/utensil/fork, +/turf/simulated/floor/carpet, +/area/station/public/mrchangs) +"biZ" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/flashlight/lamp/green/off{ + pixel_y = 8 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"bjg" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bji" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"bjn" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bjp" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)"; + req_one_access_txt = "22" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bjr" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/service/chapel/office) +"bjs" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "rampbottom" + }, +/area/station/service/chapel) +"bju" = ( +/obj/machinery/bookbinder, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bjy" = ( +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"bjz" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Bar"; + sort_type_txt = "19" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/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/plating, +/area/station/maintenance/fsmaint) +"bjA" = ( +/obj/machinery/light/directional/north, +/obj/machinery/status_display/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bjD" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bjE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"bjF" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bjI" = ( +/obj/item/kirbyplants, +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bjL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm/directional/north, +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5; + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/book/manual/wiki/sop_service{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/eftpos{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"bjN" = ( +/obj/structure/table/glass, +/obj/item/dice/d20, +/turf/simulated/floor/light/purple, +/area/station/service/bar/atrium) +"bjO" = ( +/obj/structure/table/wood, +/turf/simulated/floor/carpet, +/area/station/hallway/secondary/entry) +"bjQ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA" + }, +/turf/simulated/wall/r_wall, +/area/station/hallway/secondary/entry) +"bjR" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) +"bjS" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bjT" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bjU" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Center"; + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bjY" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"bkb" = ( +/obj/machinery/camera{ + c_tag = "Port Hallway 3"; + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"bkc" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes{ + pixel_y = 2 + }, +/obj/item/lighter{ + pixel_x = 4; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/hallway/secondary/entry) +"bkd" = ( +/obj/machinery/economy/vending/cola, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/entry) +"bkf" = ( +/obj/machinery/alarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"bki" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"bkn" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bkq" = ( +/obj/structure/sign/directions/cargo{ + pixel_y = -39 + }, +/obj/structure/sign/directions/bridge{ + dir = 4; + pixel_y = -32 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = -25 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) +"bkr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"bks" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) +"bkv" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/nw) +"bkx" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bky" = ( +/obj/machinery/light/directional/south, +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/nw) +"bkA" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/nw) +"bkB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/security/storage) +"bkC" = ( +/obj/structure/sign/directions/engineering{ + pixel_y = -39 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = -32 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = -25 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"bkD" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bkE" = ( +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/ne) +"bkF" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"bkR" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/poddoor/preopen{ + id_tag = "bridge blast west"; + name = "Bridge Blast Doors" + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bkT" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"bkW" = ( +/obj/structure/table, +/obj/item/vending_refill/cigarette{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/vending_refill/coffee, +/obj/machinery/power/apc/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"bkX" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/service/library) +"bkZ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen/invisible, +/obj/machinery/camera{ + c_tag = "Library Study"; + dir = 8 + }, +/obj/item/stack/tape_roll, +/obj/item/pen/multi, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/service/library) +"bld" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"blf" = ( +/obj/structure/railing/cap{ + dir = 5 + }, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/station/service/expedition) +"blg" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"blh" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry) +"bli" = ( +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"blj" = ( +/turf/simulated/floor/carpet, +/area/station/service/library) +"bll" = ( +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"blm" = ( +/obj/machinery/camera{ + c_tag = "Chapel South"; + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bln" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/service/chapel) +"blo" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/service/chapel) +"blp" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bls" = ( +/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/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/goonplaque, +/area/station/hallway/secondary/entry) +"blw" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"blx" = ( +/obj/structure/table/wood, +/obj/item/storage/bible, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/station/service/chapel) +"bly" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHW"; + location = "Lockers" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel, +/area/station/hallway/primary/port) +"blz" = ( +/obj/structure/table/wood, +/turf/simulated/floor/carpet, +/area/station/service/chapel) +"blB" = ( +/obj/structure/sign/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes/northeastcorner, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"blE" = ( +/obj/machinery/status_display/directional/north, +/obj/effect/decal/warning_stripes/northeastcorner, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"blJ" = ( +/obj/machinery/economy/vending/snack, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/entry) +"blK" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"blL" = ( +/obj/structure/closet/firecloset, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"blM" = ( +/turf/simulated/wall, +/area/station/public/locker) +"blP" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"blQ" = ( +/turf/simulated/wall, +/area/station/maintenance/port) +"blR" = ( +/turf/simulated/wall, +/area/station/public/storage/emergency/port) +"blT" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/public/storage/emergency/port) +"blU" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "bridge blast north"; + name = "Bridge Blast Doors" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"blV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"blW" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"blX" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"blY" = ( +/obj/machinery/status_display{ + layer = 4 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "bridge blast north"; + name = "Bridge Blast Doors" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"bmb" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/primary/central/nw) +"bmc" = ( +/turf/simulated/wall/r_wall, +/area/station/command/bridge) +"bmg" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bmi" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/primary/central/ne) +"bmk" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/railing/cap{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkbluecorners" + }, +/area/station/service/expedition) +"bml" = ( +/obj/machinery/door/airlock/maintenance{ + name = "E.V.A. Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/command/eva, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"bmm" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"bmo" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/hallway/secondary/entry) +"bmp" = ( +/obj/structure/chair/sofa/pew/left{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/service/chapel) +"bmt" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/door_control/bolt_control/south{ + id = "toilet_sec_1" + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/security/main) +"bmv" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"bmA" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"bmB" = ( +/obj/machinery/door/firedoor, +/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/plasteel, +/area/station/hallway/primary/central/nw) +"bmD" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/camera{ + c_tag = "Library East"; + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bmE" = ( +/obj/machinery/light/small/directional/south, +/mob/living/simple_animal/pet/dog/bullterrier/Genn, +/obj/structure/bed/dogbed, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/service/library) +"bmF" = ( +/obj/structure/cult/archives, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/service/library) +"bmG" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/service/library) +"bmH" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bmI" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/ai_status_display/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bmJ" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/service/chapel) +"bmK" = ( +/obj/machinery/light/directional/east, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bmL" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"bmO" = ( +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/service/chapel) +"bmS" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bmT" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bmU" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box/full, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bmW" = ( +/obj/structure/sign/poster/official/random/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bnd" = ( +/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/plasteel{ + icon_state = "L4" + }, +/area/station/hallway/primary/central/north) +"bne" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "L2" + }, +/area/station/hallway/primary/central/north) +"bnf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/landmark{ + icon = 'icons/effects/spawner_icons.dmi'; + icon_state = "spooky"; + name = "Observer-Start" + }, +/turf/simulated/floor/plasteel{ + icon_state = "L8" + }, +/area/station/hallway/primary/central/north) +"bng" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bnh" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Lockers"; + location = "EVA" + }, +/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/plasteel{ + icon_state = "L6" + }, +/area/station/hallway/primary/central/north) +"bni" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "L12" + }, +/area/station/hallway/primary/central/north) +"bnj" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Security"; + location = "EVA2" + }, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "L10" + }, +/area/station/hallway/primary/central/north) +"bnk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "L14" + }, +/area/station/hallway/primary/central/north) +"bno" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/ne) +"bnq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluered" + }, +/area/station/command/bridge) +"bnr" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bns" = ( +/obj/machinery/hologram/holopad, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"bnu" = ( +/obj/machinery/economy/atm/east, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway"; + dir = 8 + }, +/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/plasteel, +/area/station/hallway/secondary/entry) +"bnv" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/portable/pump, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bnw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bny" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/port) +"bnz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"bnA" = ( +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bnB" = ( +/obj/machinery/economy/vending/cola, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bnC" = ( +/obj/machinery/economy/vending/artvend, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bnD" = ( +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bnE" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"bnF" = ( +/obj/machinery/economy/vending/clothing, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bnG" = ( +/obj/machinery/economy/vending/autodrobe, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bnH" = ( +/obj/machinery/economy/vending/hatdispenser, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bnI" = ( +/obj/machinery/economy/vending/suitdispenser, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bnJ" = ( +/obj/machinery/economy/vending/shoedispenser, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bnK" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bnM" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA2"; + location = "Dorm" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"bnP" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/nw) +"bnR" = ( +/obj/machinery/computer/atmos_alert, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "yellow" + }, +/area/station/command/bridge) +"bnS" = ( +/turf/simulated/wall, +/area/station/public/storage/tools/auxiliary) +"bnT" = ( +/obj/effect/spawner/window/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"bnU" = ( +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase, +/obj/item/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/ids, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bnV" = ( +/obj/machinery/computer/monitor{ + name = "Bridge Power Monitoring Computer" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/command/bridge) +"bnW" = ( +/obj/machinery/computer/station_alert, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/command/bridge) +"bnX" = ( +/obj/machinery/computer/communications, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/command/bridge) +"bnY" = ( +/obj/machinery/computer/shuttle/labor, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "blue" + }, +/area/station/command/bridge) +"boa" = ( +/obj/machinery/computer/shuttle/mining, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "blue" + }, +/area/station/command/bridge) +"bob" = ( +/obj/structure/sink/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"bod" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/ne) +"boe" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"bof" = ( +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"boh" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/item/assembly/timer, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bol" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/exit) +"bom" = ( +/obj/effect/landmark/start/bartender, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"bop" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"bor" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = -2; + pixel_y = -2 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/warning_stripes/white/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"box" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"boy" = ( +/obj/machinery/door/morgue{ + name = "Private Study" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/library, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/service/library) +"boB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/service/hydroponics) +"boD" = ( +/obj/structure/closet/crate/can, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/secondary/exit) +"boF" = ( +/obj/structure/bookcase{ + name = "bookcase (Fiction)" + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"boG" = ( +/obj/structure/bookcase{ + name = "bookcase (Non-Fiction)" + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"boI" = ( +/obj/machinery/door/airlock/external{ + hackProof = 1; + id_tag = "emergency_home"; + locked = 1; + name = "Escape Airlock" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/exit) +"boJ" = ( +/turf/simulated/floor/carpet, +/area/station/service/chapel) +"boL" = ( +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"boP" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"boT" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"boU" = ( +/turf/simulated/floor/carpet, +/area/station/public/mrchangs) +"boV" = ( +/obj/structure/closet/secure_closet/bar, +/obj/structure/sign/poster/contraband/random/east, +/turf/simulated/floor/wood/fancy/oak, +/area/station/service/bar) +"boW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"boX" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"boZ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bpa" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bpb" = ( +/obj/machinery/alarm/directional/west, +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/flashlight/flare/glowstick/emergency, +/obj/item/flashlight/flare/glowstick/emergency, +/obj/item/flashlight/flare/glowstick/emergency, +/obj/item/flashlight/flare/glowstick/emergency, +/obj/item/flashlight/flare/glowstick/emergency, +/obj/item/flashlight/flare/glowstick/emergency, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"bpc" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"bpd" = ( +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bpe" = ( +/obj/structure/sign/poster/official/random/east, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bpf" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/head/hardhat, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bpl" = ( +/obj/machinery/computer/arcade, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/port) +"bpm" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) +"bpn" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Singularity"; + name = "Singularity Blast Doors"; + opacity = 0 + }, +/obj/machinery/computer/security/telescreen/engine{ + layer = 4; + network = list("Singularity") + }, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"bpo" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/command/bridge) +"bpq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/command/bridge) +"bpr" = ( +/obj/structure/table/reinforced, +/obj/item/flash, +/obj/item/flash, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bpt" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bpu" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/sop_command, +/obj/item/aicard, +/obj/item/multitool/command, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/command/bridge) +"bpw" = ( +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + id = "bridge blast east"; + name = "East Bridge Blast Door Control"; + pixel_x = 6; + pixel_y = -2; + req_one_access_txt = "19" + }, +/obj/machinery/door_control/shutter{ + id = "bridge blast west"; + name = "West Bridge Blast Door Control"; + pixel_x = -6; + pixel_y = -2; + req_one_access_txt = "19" + }, +/obj/machinery/door_control/shutter{ + id = "bridge blast north"; + name = "North Bridge Blast Door Control"; + pixel_x = 6; + pixel_y = 8; + req_one_access_txt = "19" + }, +/obj/machinery/keycard_auth{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/command/bridge) +"bpx" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "greencorner" + }, +/area/station/command/bridge) +"bpB" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bpF" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bpM" = ( +/obj/effect/landmark/start/chaplain, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/station/service/chapel) +"bpQ" = ( +/obj/machinery/light/directional/west, +/obj/machinery/status_display/directional/west, +/obj/machinery/economy/vending/chinese, +/turf/simulated/floor/carpet, +/area/station/public/mrchangs) +"bpT" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/public/mrchangs) +"bpX" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bpY" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "Library Desk Door" + }, +/obj/machinery/status_display/directional/north, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/library{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bqb" = ( +/obj/structure/sink/directional/west, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"bqc" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bqd" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/east, +/obj/machinery/light_switch/east, +/obj/machinery/computer/library, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bqg" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/service/chapel) +"bqj" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/library, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bql" = ( +/obj/machinery/economy/atm/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"bqm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Mr. Chang's" + }, +/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 + }, +/turf/simulated/floor/wood/oak, +/area/station/public/mrchangs) +"bqn" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) +"bqq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "stairs-m" + }, +/area/station/hallway/primary/central/nw) +"bqr" = ( +/turf/simulated/wall, +/area/station/public/vacant_office) +"bqs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "stairs-m" + }, +/area/station/hallway/primary/central/ne) +"bqu" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet/wardrobe/xenos, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bqv" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bqw" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bqx" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bqz" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/alarm/directional/east, +/obj/machinery/camera{ + c_tag = "Locker Room East"; + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bqA" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/item/extinguisher, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"bqC" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"bqF" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bqG" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/storage/toolbox/emergency, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"bqI" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/station/service/hydroponics) +"bqJ" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bqK" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/tape_roll, +/obj/item/stack/tape_roll, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"bqL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/station/service/hydroponics) +"bqN" = ( +/turf/simulated/wall/r_wall, +/area/station/hallway/primary/central/nw) +"bqO" = ( +/obj/machinery/computer/prisoner{ + req_access = null; + req_one_access_txt = "2" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/command/bridge) +"bqP" = ( +/obj/machinery/computer/secure_data, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/command/bridge) +"bqQ" = ( +/obj/machinery/camera{ + c_tag = "Bridge West" + }, +/obj/machinery/computer/security{ + network = list("SS13","Research Outpost","Mining Outpost","Telecomms") + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/command/bridge) +"bqR" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bqS" = ( +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bqU" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/command/bridge) +"bqV" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/command/bridge) +"bqY" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bqZ" = ( +/obj/machinery/computer/shuttle/mining, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/station/command/bridge) +"bra" = ( +/obj/machinery/computer/security/mining, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/station/command/bridge) +"brb" = ( +/obj/machinery/camera{ + c_tag = "Bridge East" + }, +/obj/machinery/computer/supplycomp, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/command/bridge) +"brc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"brd" = ( +/obj/item/skeleton/head, +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/carpet/black, +/area/station/maintenance/fsmaint) +"bre" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"brk" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry) +"brl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry) +"brn" = ( +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry) +"brp" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"brq" = ( +/turf/simulated/floor/plasteel{ + icon_state = "stairs-r" + }, +/area/station/hallway/primary/central/nw) +"brr" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/service/hydroponics) +"brs" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/service/hydroponics) +"bru" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/service/hydroponics) +"brw" = ( +/obj/structure/bookcase{ + name = "bookcase (Adult)" + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"brx" = ( +/obj/structure/table/wood, +/obj/machinery/computer/library, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bry" = ( +/obj/structure/chair/comfy/black, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"brz" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"brA" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/librarian, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"brB" = ( +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"brD" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"brE" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"brF" = ( +/obj/structure/rack, +/obj/item/melee/baton/cattleprod, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"brG" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"brK" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 11; + height = 18; + id = "emergency_home"; + name = "emergency evac bay"; + width = 29 + }, +/turf/space, +/area/space) +"brL" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/exit) +"brS" = ( +/obj/machinery/computer/crew, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/command/bridge) +"brU" = ( +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"bsc" = ( +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/extinguisher, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bsf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bsg" = ( +/obj/structure/table, +/obj/item/clothing/head/soft/grey{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bsh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bsi" = ( +/obj/random/plushie, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"bsk" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bsl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/station/hallway/secondary/entry) +"bsm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/can, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/port) +"bsn" = ( +/obj/effect/spawner/random_spawners/cobweb_left_rare, +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bso" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/wardrobe/miner, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"bsp" = ( +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/station/hallway/primary/central/nw) +"bsq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bss" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bst" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bsv" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/command/bridge) +"bsw" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/command/bridge) +"bsx" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bsy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bsz" = ( +/obj/machinery/hologram/holopad, +/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 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bsD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + locked = 1; + name = "Assembly Line (KEEP OUT)" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"bsE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/station/command/bridge) +"bsG" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/station/command/bridge) +"bsI" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"bsJ" = ( +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Bridge East Entrance" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/station/hallway/primary/central/ne) +"bsK" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/station/hallway/primary/central/ne) +"bsL" = ( +/turf/simulated/wall/r_wall, +/area/station/hallway/primary/central/ne) +"bsO" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"bsP" = ( +/obj/machinery/light/directional/north, +/obj/machinery/economy/vending/snack, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"bsQ" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"bsR" = ( +/obj/machinery/computer/arcade, +/obj/structure/sign/poster/contraband/random/north, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/port) +"bsW" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/engineering/supermatter_room) +"bsX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/service/hydroponics) +"bsZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/port) +"bta" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/economy/vending/cola, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"btb" = ( +/obj/structure/table/wood, +/obj/item/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bte" = ( +/turf/simulated/wall, +/area/station/hallway/primary/starboard/east) +"bth" = ( +/obj/structure/table/wood, +/obj/item/paper, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bti" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"btj" = ( +/obj/structure/table/wood, +/obj/item/camera_film, +/obj/item/camera_film, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"btk" = ( +/obj/structure/sign/poster/official/random, +/turf/simulated/wall/r_wall, +/area/station/hallway/secondary/exit) +"btl" = ( +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"btp" = ( +/turf/simulated/floor/plasteel{ + icon_state = "rampbottom" + }, +/area/station/hallway/secondary/exit) +"btq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "blue" + }, +/area/station/service/hydroponics) +"bts" = ( +/obj/machinery/disposal, +/obj/machinery/light_switch/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"btA" = ( +/obj/structure/table/wood, +/obj/item/bee_briefcase, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"btB" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"btE" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"btF" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"btG" = ( +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"btH" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/table/wood, +/obj/item/camera, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"btL" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"btO" = ( +/obj/machinery/camera{ + c_tag = "Locker Room West"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"btT" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"btU" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/service/hydroponics) +"btZ" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/rack, +/obj/item/wrench, +/turf/simulated/floor/plating, +/area/station/maintenance/maintcentral2) +"bua" = ( +/obj/machinery/light/small/directional/north, +/obj/item/rcs, +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"buc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"bud" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"buf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/status_display/directional/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bug" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"bui" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/toolbox/emergency, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"buj" = ( +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/obj/effect/decal/cleanable/dust, +/obj/item/trash/spentcasing, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/port) +"buk" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA" + }, +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/maintenance/port) +"bun" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/nw) +"buy" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"buz" = ( +/obj/machinery/camera{ + c_tag = "Chapel West"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"buA" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/service/chapel) +"buB" = ( +/obj/structure/chair/sofa/pew/left{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/service/chapel) +"buC" = ( +/obj/structure/table/glass, +/turf/simulated/floor/light/purple, +/area/station/service/bar/atrium) +"buE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"buN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"buQ" = ( +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/autoname, +/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/plasteel, +/area/station/command/bridge) +"buS" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Auxiliary Docking North"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"buT" = ( +/obj/machinery/economy/vending/cigarette, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"buU" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"buX" = ( +/obj/structure/computerframe, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"bva" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/turf/simulated/floor/carpet, +/area/station/service/chapel) +"bvb" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"bvc" = ( +/obj/structure/table/wood, +/obj/item/hand_labeler, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"bve" = ( +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"bvf" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 12; + id = "ferry_home"; + name = "port bay 3"; + width = 5 + }, +/turf/space, +/area/space) +"bvl" = ( +/obj/machinery/door/airlock/external{ + id_tag = "ferry_home"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"bvm" = ( +/obj/machinery/light_switch/west, +/obj/machinery/light/directional/west, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"bvn" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"bvo" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/cobweb_left_rare, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"bvq" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/public/locker) +"bvr" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"bvs" = ( +/turf/simulated/wall, +/area/station/public/toilet/lockerroom) +"bvv" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bvx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/north, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"bvC" = ( +/obj/item/radio/beacon, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bvF" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bvL" = ( +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"bvN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel Office" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel/office) +"bvO" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/station/service/library) +"bvP" = ( +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"bvR" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"bvU" = ( +/obj/machinery/camera{ + c_tag = "Mini Satellite Teleporter"; + dir = 1; + network = list("SS13","MiniSat") + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"bvV" = ( +/obj/item/kirbyplants, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge Requests Console"; + pixel_y = 30 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"bvX" = ( +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/airlock/command, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/command/bridge) +"bvY" = ( +/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/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/command/bridge) +"bwc" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/command/bridge) +"bwf" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "blue" + }, +/area/station/hallway/primary/central/ne) +"bwg" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"bwh" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/hallway/primary/central/ne) +"bwi" = ( +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/hallway/primary/central/ne) +"bwj" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/ne) +"bwt" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Auxiliary Tool Storage" + }, +/obj/machinery/door/firedoor, +/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/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"bwv" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"bwz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/coatrack, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/port) +"bwA" = ( +/obj/effect/decal/cleanable/dust, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/effect/decal/cleanable/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/port) +"bwC" = ( +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"bwD" = ( +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"bwG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bwK" = ( +/obj/structure/closet/emcloset, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bwL" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id_tag = "mechbay_outer"; + name = "Mech Bay Public Shutter" + }, +/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, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"bwM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"bwN" = ( +/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/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/hallway/primary/central/nw) +"bwO" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bwP" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"bwQ" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"bwS" = ( +/obj/machinery/door/airlock/command/glass, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bwW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"bxb" = ( +/turf/simulated/wall, +/area/station/supply/storage) +"bxc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Warehouse Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bxd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort1" + }, +/turf/simulated/floor/plating, +/area/station/supply/office) +"bxe" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "packageSort1" + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plating, +/area/station/supply/office) +"bxf" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort1" + }, +/obj/structure/plasticflaps, +/turf/simulated/floor/plating, +/area/station/supply/office) +"bxg" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/supply/office) +"bxi" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "HoP Office"; + sort_type_txt = "15" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/nw) +"bxj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"bxk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/nw) +"bxo" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Captain's Desk Door" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/captain{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/royalblue, +/area/station/command/office/captain) +"bxp" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/kirbyplants{ + pixel_y = 10 + }, +/obj/machinery/ai_status_display/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai_upload) +"bxq" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bxr" = ( +/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" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/stairs/left, +/area/station/command/bridge) +"bxs" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/kirbyplants{ + pixel_y = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai_upload) +"bxt" = ( +/obj/machinery/camera/motion{ + c_tag = "AI Upload Chamber" + }, +/obj/machinery/light_switch/north, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bxu" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/command/bridge) +"bxw" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/command/bridge) +"bxz" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"bxA" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/command/bridge) +"bxB" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/station/service/chapel) +"bxD" = ( +/obj/machinery/camera{ + c_tag = "Bridge Central"; + dir = 1 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge Requests Console"; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/command/bridge) +"bxK" = ( +/obj/machinery/ai_status_display/south, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/command/bridge) +"bxM" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/service/hydroponics) +"bxO" = ( +/obj/machinery/turretid/stun{ + control_area = "\improper AI Upload Chamber"; + name = "AI Upload Turret Control"; + pixel_y = -24; + req_access = list(75) + }, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/command/bridge) +"bxP" = ( +/obj/machinery/door/window/classic/normal, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"bxQ" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bxR" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bxS" = ( +/obj/structure/table/wood, +/obj/item/pen, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bxT" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bxU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/command/bridge) +"bxV" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bxW" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bxX" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 30 + }, +/obj/structure/table, +/obj/item/folder/white, +/obj/item/pen, +/obj/item/book/manual/wiki/sop_science, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/science/rnd) +"bxY" = ( +/obj/machinery/newscaster/security_unit/south, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/command/bridge) +"bxZ" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/command/bridge) +"byh" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera{ + c_tag = "Vacant Office"; + dir = 1 + }, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"byj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"byk" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort1" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"byl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"bym" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/public/toilet/lockerroom) +"byn" = ( +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"byp" = ( +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/public/locker) +"byq" = ( +/obj/machinery/door/airlock/command/glass, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"byr" = ( +/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/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/hallway/primary/central/ne) +"byv" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"byw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"byy" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/turf/simulated/floor/plating, +/area/station/supply/office) +"byz" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"byF" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/west) +"byI" = ( +/obj/machinery/light_switch/east, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"byO" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/melee/chainofcommand, +/obj/item/card/id/captains_spare, +/turf/simulated/floor/carpet/royalblue, +/area/station/command/office/captain) +"byP" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai_upload) +"byZ" = ( +/obj/machinery/light/directional/south, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bzb" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"bzd" = ( +/obj/structure/flora/tree/jungle{ + pixel_y = -14 + }, +/turf/simulated/floor/plasteel/goonplaque/memorial, +/area/station/hallway/secondary/exit) +"bzf" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "garden" + }, +/turf/simulated/floor/plating, +/area/station/service/hydroponics) +"bzi" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"bzk" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/plating, +/area/station/service/kitchen) +"bzl" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"bzm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"bzq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"bzr" = ( +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bzu" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"bzv" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"bzx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Escape Shuttle Cell" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"bzA" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/public/locker) +"bzB" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/apc_electronics, +/obj/item/stock_parts/cell{ + maxcharge = 2000 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bzD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Escape Shuttle Cell" + }, +/obj/effect/decal/warning_stripes/southeastcorner, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"bzG" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bzH" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo Requests Console"; + pixel_y = 30 + }, +/obj/item/stack/tape_roll, +/obj/item/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/supply/office) +"bzI" = ( +/obj/item/storage/box, +/obj/structure/table, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/radio/intercom/directional/north, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/supply/office) +"bzJ" = ( +/turf/simulated/wall, +/area/station/supply/office) +"bzK" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/rcs, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "arrival" + }, +/area/station/supply/office) +"bzM" = ( +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/west) +"bzO" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"bzP" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/apmaint) +"bzQ" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"bzT" = ( +/obj/structure/table/glass, +/obj/item/ashtray/bronze, +/turf/simulated/floor/carpet/green, +/area/station/command/bridge) +"bzU" = ( +/obj/machinery/status_display/directional/west, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bAb" = ( +/obj/machinery/alarm/directional/west, +/obj/machinery/photocopier, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"bAc" = ( +/obj/machinery/door/airlock/command/cap, +/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/mapping_helpers/airlock/access/any/command/captain, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain/bedroom) +"bAe" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bAf" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/east) +"bAg" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 25 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 39 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/obj/structure/sign/directions/bridge{ + dir = 8; + pixel_y = 32 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"bAh" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/public/toilet) +"bAi" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"bAk" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"bAl" = ( +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/east) +"bAn" = ( +/obj/machinery/economy/atm/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"bAo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"bAp" = ( +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"bAq" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"bAr" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/primary/starboard/west) +"bAs" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/station/hallway/primary/starboard/west) +"bAt" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/station/hallway/primary/starboard/west) +"bAy" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/hallway/primary/central/nw) +"bAz" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/nw) +"bAA" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "blue" + }, +/area/station/hallway/primary/central/nw) +"bAB" = ( +/obj/machinery/camera{ + c_tag = "Bridge West Entrance"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/hallway/primary/central/nw) +"bAD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity, +/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/mapping_helpers/airlock/access/any/command/ai_upload, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai_upload) +"bAE" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "rampbottom" + }, +/area/station/hallway/secondary/exit) +"bAF" = ( +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Mail" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mail_sorting{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bAK" = ( +/obj/structure/sign/poster/official/random, +/turf/simulated/wall, +/area/station/hallway/secondary/exit) +"bAN" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/exit) +"bAO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bAS" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"bAW" = ( +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 4"; + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/primary/starboard/east) +"bAX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/simulated/floor/carpet, +/area/station/service/library) +"bAY" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/station/service/library) +"bBc" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/station/science/rnd) +"bBj" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bBk" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bBn" = ( +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bBo" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bBp" = ( +/obj/structure/table, +/obj/machinery/light/directional/east, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/supply/office) +"bBq" = ( +/obj/machinery/economy/atm/west, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/west) +"bBr" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Vacant Office" + }, +/obj/machinery/door/firedoor, +/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/wood/oak, +/area/station/public/vacant_office) +"bBy" = ( +/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/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/command/bridge) +"bBA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai_upload) +"bBB" = ( +/turf/simulated/wall/r_wall, +/area/station/command/teleporter) +"bBF" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway East"; + dir = 4 + }, +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/east) +"bBM" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"bBN" = ( +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"bBP" = ( +/obj/machinery/camera{ + c_tag = "Locker Room Toilets"; + dir = 9 + }, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"bBQ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet/wardrobe/pjs, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/public/locker) +"bCf" = ( +/turf/simulated/wall, +/area/station/maintenance/disposal) +"bCg" = ( +/obj/machinery/computer/security/telescreen/entertainment/television, +/turf/simulated/floor/carpet/royalblack, +/area/station/maintenance/apmaint) +"bCi" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 11; + id = "specops_home"; + name = "port bay 2"; + width = 5 + }, +/turf/space, +/area/space) +"bCj" = ( +/obj/structure/closet/emcloset, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"bCm" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"bCo" = ( +/obj/machinery/atmospherics/binary/valve, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bCp" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bCq" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"bCs" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"bCu" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bCv" = ( +/obj/machinery/alarm/directional/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bCw" = ( +/turf/simulated/wall, +/area/station/command/meeting_room) +"bCz" = ( +/obj/item/stack/sheet/cardboard, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bCA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"bCE" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/supply/office) +"bCF" = ( +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/west) +"bCH" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/station/hallway/primary/central/south) +"bCJ" = ( +/obj/structure/sign/kiddieplaque{ + pixel_y = -32 + }, +/obj/structure/table/wood/fancy/blue, +/obj/item/phone, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bCK" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_y = -24 + }, +/obj/machinery/computer/aiupload{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bCL" = ( +/obj/item/radio/intercom/private{ + pixel_y = -22; + dir = 1 + }, +/obj/machinery/computer/borgupload{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bCO" = ( +/obj/machinery/camera{ + c_tag = "Library South"; + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bCR" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bCS" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bCT" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"bCW" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"bCX" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"bCY" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/east) +"bCZ" = ( +/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/station/maintenance/aft) +"bDa" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"bDb" = ( +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/hallway/primary/starboard/west) +"bDc" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper{ + pixel_y = -5 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -1 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = 3 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = 7 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = 11 + }, +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"bDf" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"bDg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"bDi" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"bDj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"bDk" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/east, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"bDl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"bDn" = ( +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"bDp" = ( +/obj/machinery/status_display/directional/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"bDq" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "robotics"; + name = "Robotics Lab Shutters" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "robo" + }, +/turf/simulated/floor/plating, +/area/station/science/robotics) +"bDr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"bDu" = ( +/obj/machinery/light/directional/east, +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/secondary/entry) +"bDv" = ( +/obj/structure/sink/directional/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"bDx" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"bDA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"bDC" = ( +/obj/machinery/door/airlock/external{ + id_tag = "specops_home"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"bDH" = ( +/obj/machinery/computer/med_data/laptop{ + pixel_y = 2 + }, +/obj/structure/table/glass, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"bDI" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/stack/sheet/cardboard, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bDN" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bDO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/west) +"bDR" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay Storage"; + dir = 8 + }, +/obj/structure/closet/crate/internals, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bDU" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/supply/office) +"bDW" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/command/bridge) +"bDX" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/supply/office) +"bEb" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/command/bridge) +"bEf" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/supply/office) +"bEi" = ( +/obj/structure/closet/crate/medical, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bEj" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/west) +"bEl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/service/chapel) +"bEm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/status_display/directional/east, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bEn" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"bEp" = ( +/turf/simulated/wall, +/area/station/medical/reception) +"bEq" = ( +/obj/machinery/door/poddoor/shutters{ + density = 0; + desc = "Lube off, pal."; + dir = 1; + icon_state = "open"; + id_tag = "imnotmakingyoulubepissoff"; + name = "Chemistry Privacy Shutter"; + opacity = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/medical/chemistry) +"bEt" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"bEu" = ( +/turf/simulated/wall, +/area/station/medical/morgue) +"bEw" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/se) +"bEx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"bEy" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"bEz" = ( +/obj/structure/sink/directional/west, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"bEA" = ( +/turf/simulated/wall/r_wall, +/area/station/science/robotics) +"bED" = ( +/turf/simulated/wall/r_wall, +/area/station/science/rnd) +"bEE" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"bEF" = ( +/turf/simulated/wall, +/area/station/hallway/secondary/exit) +"bEG" = ( +/turf/simulated/wall/r_wall, +/area/station/hallway/secondary/exit) +"bEI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/morgue{ + dir = 2 + }, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plating, +/area/station/medical/morgue) +"bEJ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/maintenance/maintcentral2) +"bEK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/lobby) +"bEM" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/mmi/robotic_brain, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bEN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/tracker, +/turf/space, +/area/station/engineering/solar/port) +"bER" = ( +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"bES" = ( +/obj/machinery/door/poddoor{ + id_tag = "ToxinsVenting"; + name = "Toxins Venting Bay Door"; + power_state = 0 + }, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"bET" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bEX" = ( +/obj/machinery/conveyor/west{ + id = "garbage" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"bFd" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bFe" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"bFi" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Dorm"; + location = "HOP2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/east) +"bFj" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 1" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"bFl" = ( +/obj/machinery/light_switch/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bFo" = ( +/obj/machinery/economy/atm/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"bFp" = ( +/obj/machinery/door_control/shutter/south{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + req_one_access_txt = "31" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bFq" = ( +/obj/structure/sign/poster/contraband/random/south, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bFr" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"bFs" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"bFu" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"bFv" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"bFw" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 5" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"bFy" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/supply/office) +"bFz" = ( +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"bFA" = ( +/obj/effect/decal/warning_stripes/yellow/partial, +/obj/effect/decal/warning_stripes/arrow, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bFB" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"bFC" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/gravitygenerator) +"bFD" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"bFE" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"bFH" = ( +/obj/machinery/light/directional/north, +/obj/machinery/economy/vending/wallmed/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"bFN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"bFO" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"bFP" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/maintenance/turbine) +"bFQ" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"bFT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"bFU" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/se) +"bFV" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance" + }, +/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/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/turf/simulated/floor/plating, +/area/station/medical/morgue) +"bFW" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"bFX" = ( +/obj/structure/morgue, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"bFY" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"bFZ" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"bGb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/port) +"bGc" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellow" + }, +/area/station/science/robotics/chargebay) +"bGe" = ( +/obj/structure/table/glass, +/obj/item/clipboard{ + pixel_y = 2 + }, +/obj/item/stamp/cmo, +/obj/effect/spawner/lootdrop/officetoys, +/obj/item/lighter/zippo/cmo{ + pixel_x = 16; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"bGf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"bGg" = ( +/obj/machinery/hologram/holopad{ + pixel_y = -16 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"bGh" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"bGi" = ( +/obj/structure/table/glass, +/obj/item/lighter/zippo{ + name = "Ash Generator 3000"; + pixel_x = -6; + pixel_y = -12 + }, +/obj/machinery/reagentgrinder{ + pixel_x = -2; + pixel_y = 12 + }, +/obj/item/lighter/zippo{ + name = "Ash Generator 3000"; + pixel_x = 8; + pixel_y = -12 + }, +/obj/item/eftpos{ + pixel_x = 9 + }, +/obj/structure/sign/poster/official/science{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"bGj" = ( +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"bGk" = ( +/obj/machinery/light/directional/west, +/obj/machinery/hologram/holopad{ + pixel_y = 16 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"bGl" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Auxiliary Docking South" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bGo" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"bGp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/east, +/obj/item/radio/intercom/directional/north, +/obj/structure/closet/firecloset/full, +/obj/effect/turf_decal/stripes/line, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"bGq" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/storage/bag/chemistry, +/obj/item/storage/bag/chemistry, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"bGr" = ( +/turf/simulated/wall/r_wall, +/area/station/science/robotics/chargebay) +"bGs" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/maintcentral2) +"bGt" = ( +/obj/structure/sign/directions/engineering{ + pixel_y = -39 + }, +/obj/structure/sign/directions/cargo{ + dir = 8; + pixel_y = -32 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = -25 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) +"bGv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"bGw" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/crowbar/large, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellow" + }, +/area/station/science/robotics/chargebay) +"bGx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"bGz" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"bGB" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bGD" = ( +/obj/machinery/camera{ + c_tag = "Research Lobby"; + network = list("Research","SS13") + }, +/obj/structure/table, +/obj/item/ashtray/glass, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/station/science/hallway) +"bGE" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/machinery/button/windowtint/west{ + id = "robo" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bGF" = ( +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics Requests Console"; + pixel_y = 30 + }, +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/book/manual/wiki/sop_science{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/ripley_build_and_repair, +/obj/item/book/manual/wiki/robotics_cyborgs{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bGG" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"bGH" = ( +/obj/effect/spawner/random_barrier/possibly_welded_airlock, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"bGK" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"bGL" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/station/science/hallway) +"bGM" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/beach/sand, +/area/station/hallway/secondary/exit) +"bGN" = ( +/obj/structure/sink/puddle, +/turf/simulated/floor/beach/sand, +/area/station/hallway/secondary/exit) +"bGQ" = ( +/obj/machinery/mineral/stacking_unit_console, +/turf/simulated/wall, +/area/station/maintenance/disposal) +"bGR" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/multitool, +/obj/item/multitool, +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage" + }, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"bGY" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bHc" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/supply/office) +"bHh" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bHi" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bHn" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/cans/cola{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/supply/office) +"bHu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"bHv" = ( +/obj/effect/spawner/random_spawners/cobweb_left_rare, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/port) +"bHy" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bHz" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/gravitygenerator) +"bHB" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/station/engineering/gravitygenerator) +"bHD" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/station/engineering/gravitygenerator) +"bHG" = ( +/obj/structure/chair/comfy/teal{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay Requests Console"; + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"bHJ" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mug/med{ + pixel_x = 7; + pixel_y = -10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/storage/fancy/donut_box{ + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/cans/dr_gibb{ + pixel_y = -15; + pixel_x = -5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"bHL" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"bHM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/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/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"bHO" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"bHS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"bHY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"bHZ" = ( +/obj/effect/spawner/window/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/emergency) +"bIa" = ( +/turf/simulated/wall, +/area/station/science/robotics) +"bIb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bIc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/robotics, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"bId" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"bIh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/economy/vending/chemdrobe, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellowcorner" + }, +/area/station/medical/chemistry) +"bIi" = ( +/obj/structure/sink/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/station/science/genetics) +"bIj" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + density = 0; + desc = "Lube off, pal."; + icon_state = "open"; + id_tag = "imnotmakingyoulubepissoff"; + name = "Chemistry Privacy Shutter"; + opacity = 0 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/medical/chemistry) +"bIk" = ( +/obj/machinery/door_control/shutter/north{ + id = "robotics"; + name = "Robotics Lab Shutters Control"; + pixel_x = 24; + req_one_access_txt = "29" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bIl" = ( +/obj/effect/turf_decal/stripes/line, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bIo" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"bIp" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/rnd) +"bIq" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/reception) +"bIw" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "qm_warehouse"; + name = "Warehouse Shutters" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bIy" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/station/science/hallway) +"bIA" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"bIC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"bIG" = ( +/obj/machinery/camera{ + c_tag = "Cargo Delivery Office"; + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/telepad_cargo, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/office) +"bIH" = ( +/obj/structure/sign/mech{ + desc = "A painting of an ED-209 security robot."; + name = "\improper ED-209 painting"; + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"bIK" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"bIL" = ( +/obj/machinery/smartfridge/secure/circuits/aiupload/experimental, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai_upload) +"bIM" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom/directional/south, +/obj/item/storage/box/matches, +/obj/item/reagent_containers/food/drinks/flask/gold, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/lighter/zippo/cap, +/turf/simulated/floor/carpet, +/area/station/command/office/captain/bedroom) +"bIN" = ( +/obj/machinery/smartfridge/secure/circuits/aiupload/highrisk, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai_upload) +"bIP" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/port) +"bIR" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Stbd"; + location = "HOP" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/east) +"bIS" = ( +/obj/machinery/economy/vending/cargodrobe, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/storage) +"bIU" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo Requests Console"; + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 8; + location = "QM #2" + }, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bIV" = ( +/obj/machinery/newscaster/directional/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 8; + location = "QM #1" + }, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bIW" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bIX" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay North" + }, +/obj/machinery/status_display/directional/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 8; + location = "QM #4" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bIY" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 8; + location = "QM #3" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bIZ" = ( +/obj/machinery/light/directional/north, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bJb" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"bJc" = ( +/obj/item/reagent_containers/food/drinks/cans/beer{ + list_reagents = list("beer"=0); + pixel_x = -11; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + list_reagents = list("beer"=0); + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + list_reagents = list("beer"=0); + pixel_x = 11; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + list_reagents = list("beer"=0); + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + list_reagents = list("beer"=0); + pixel_x = -8 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + list_reagents = list("beer"=0); + pixel_x = -1; + pixel_y = -4 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + list_reagents = list("beer"=0); + pixel_x = 9; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"bJh" = ( +/obj/structure/table, +/obj/item/defibrillator/loaded, +/obj/item/defibrillator/loaded{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) +"bJi" = ( +/obj/machinery/alarm/directional/north, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bJr" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 30 + }, +/obj/machinery/r_n_d/circuit_imprinter{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/machinery/light/directional/north, +/obj/machinery/button/windowtint/west{ + id = "rnd" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "purple" + }, +/area/station/science/rnd) +"bJs" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/secondary/entry) +"bJt" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bJu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/port) +"bJx" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"bJA" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"bJE" = ( +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/office) +"bJF" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper/precision{ + pixel_x = 3 + }, +/obj/item/reagent_containers/dropper/precision, +/obj/item/reagent_containers/dropper/precision{ + pixel_x = -3 + }, +/obj/machinery/camera{ + c_tag = "Medbay Chemistry"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"bJJ" = ( +/obj/machinery/door/airlock/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"bJP" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera{ + c_tag = "Medbay Surgery East"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"bJU" = ( +/obj/machinery/door_control/bolt_control/east{ + id = "toilet_unit1" + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"bJW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"bJY" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet, +/turf/simulated/floor/plating, +/area/station/medical/morgue) +"bJZ" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"bKc" = ( +/obj/structure/chair/comfy/teal{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"bKg" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"bKi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/station/science/hallway) +"bKj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/station/science/hallway) +"bKk" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics) +"bKl" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"bKn" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bKo" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/mug, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"bKp" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bKs" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/maintenance/apmaint) +"bKt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/spawner/window/reinforced/tinted/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bKv" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bKw" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/port) +"bKz" = ( +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bKB" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"bKC" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageExternal" + }, +/obj/machinery/newscaster/security_unit/east, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bKF" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA" + }, +/turf/simulated/wall/r_wall, +/area/station/maintenance/port) +"bKH" = ( +/mob/living/simple_animal/mouse/gray, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bKI" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/office) +"bKJ" = ( +/turf/simulated/wall, +/area/station/command/office/hop) +"bKQ" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bKT" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/storage/belt/utility, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/radio/headset/headset_sci{ + pixel_x = -3 + }, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bLi" = ( +/obj/machinery/gravity_generator/main/station, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/station/engineering/gravitygenerator) +"bLj" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Checkpoint" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/equipment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint2) +"bLo" = ( +/obj/machinery/door_control/shutter/north{ + id = "rdlab2"; + name = "Research and Development Lab Shutters Control"; + pixel_x = -24; + req_one_access_txt = "47" + }, +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/science/rnd) +"bLp" = ( +/obj/structure/sign/poster/official/random/east, +/obj/machinery/telepad_cargo, +/obj/effect/turf_decal/box, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/science/rnd) +"bLx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"bLy" = ( +/obj/machinery/smartfridge/medbay, +/obj/machinery/door/poddoor/shutters{ + density = 0; + desc = "Lube off, pal."; + icon_state = "open"; + id_tag = "imnotmakingyoulubepissoff"; + name = "Chemistry Privacy Shutter"; + opacity = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "Chemistry Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"bLE" = ( +/turf/simulated/floor/mech_bay_recharge_floor, +/area/station/science/robotics/chargebay) +"bLF" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"bLG" = ( +/obj/item/skeleton/l_leg, +/obj/item/skeleton/r_leg, +/obj/item/skeleton/l_foot, +/obj/item/skeleton/r_foot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fsmaint) +"bLI" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/robotics) +"bLJ" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/public/storage/tools/auxiliary) +"bLK" = ( +/obj/item/soap{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 6 + }, +/obj/structure/table, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"bLQ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/medical/reception) +"bLR" = ( +/turf/simulated/wall, +/area/station/science/server) +"bLU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/station/hallway/primary/central/south) +"bLV" = ( +/obj/structure/table/reinforced, +/obj/item/stack/spacecash/c50, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"bLX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bLY" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bLZ" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"bMa" = ( +/turf/simulated/floor/catwalk, +/area/station/hallway/secondary/entry) +"bMb" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bMc" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bMd" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bMg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bMi" = ( +/obj/machinery/door_control/shutter/north{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + req_one_access_txt = "31" + }, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bMn" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/west) +"bMq" = ( +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bMt" = ( +/obj/machinery/disposal, +/obj/structure/sign/poster/official/random/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"bMx" = ( +/obj/machinery/status_display/supply_display, +/turf/simulated/wall, +/area/station/supply/office) +"bMA" = ( +/obj/machinery/mineral/ore_redemption, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bMJ" = ( +/obj/machinery/light/directional/west, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/sw) +"bMT" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/se) +"bMW" = ( +/obj/machinery/light/directional/west, +/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, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/science/robotics/chargebay) +"bMZ" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/window/reinforced/normal{ + name = "Body delivery system" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/morgue, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"bNf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"bNi" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"bNj" = ( +/obj/machinery/mecha_part_fabricator, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkpurple" + }, +/area/station/science/robotics) +"bNk" = ( +/obj/structure/table, +/obj/item/robotanalyzer, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 10; + pixel_x = -3; + pixel_y = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkpurple" + }, +/area/station/science/robotics) +"bNl" = ( +/obj/structure/table, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/flash/synthetic, +/obj/item/flash/synthetic, +/obj/item/flash/synthetic, +/obj/item/flash/synthetic, +/obj/item/multitool{ + pixel_x = 3 + }, +/obj/item/clothing/glasses/hud/diagnostic, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkpurple" + }, +/area/station/science/robotics) +"bNm" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/roboticist, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bNo" = ( +/obj/structure/bed/amb_trolley{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/northwestsouth, +/obj/machinery/alarm/directional/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"bNp" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"bNq" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "robotics"; + name = "Robotics Lab Shutters" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "Robotics Desk" + }, +/obj/machinery/door/firedoor, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = 7; + pixel_y = 7 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/robotics{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/robotics) +"bNt" = ( +/obj/machinery/r_n_d/protolathe, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "purple" + }, +/area/station/science/rnd) +"bNu" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/stock_parts/matter_bin{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/machinery/light/directional/east, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/science/rnd) +"bNv" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/secondary/exit) +"bNx" = ( +/obj/machinery/light/directional/south, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/sw) +"bNy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance" + }, +/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/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"bNz" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"bNA" = ( +/obj/effect/decal/cleanable/vomit, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"bNC" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"bND" = ( +/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/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"bNG" = ( +/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/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"bNH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bNI" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"bNJ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/robotics) +"bNK" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/storage) +"bNL" = ( +/obj/effect/landmark/start/coroner, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"bNM" = ( +/obj/item/radio/intercom/directional/north, +/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/plasteel, +/area/station/supply/office) +"bNN" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics) +"bNP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"bNQ" = ( +/obj/machinery/status_display/directional/south, +/obj/machinery/economy/vending/robodrobe, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bNR" = ( +/obj/effect/turf_decal{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bNT" = ( +/obj/effect/turf_decal{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bNW" = ( +/obj/machinery/economy/vending/wallmed/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bOb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bOd" = ( +/obj/machinery/door/poddoor{ + id_tag = "trash"; + name = "disposal bay door"; + protected = 0 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"bOg" = ( +/obj/machinery/door_control/shutter/west{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_y = -8 + }, +/obj/machinery/door_control/shutter/west{ + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_y = 8 + }, +/obj/effect/turf_decal{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bOj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet, +/area/station/command/office/captain) +"bOs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"bOt" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/computer/supplycomp/public{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bOu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/all_access{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"bOv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkpurple" + }, +/area/station/science/robotics) +"bOw" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/sw) +"bOz" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"bOA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluered" + }, +/area/station/command/bridge) +"bOB" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"bOE" = ( +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Mix to Turbine" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"bOH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"bOM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"bOQ" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/clipboard{ + pixel_y = 3 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_y = 3 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_y = 6 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_y = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"bOR" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"bOT" = ( +/obj/structure/filingcabinet/chestdrawer/autopsy, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"bOU" = ( +/obj/structure/sign/chemistry, +/turf/simulated/wall/r_wall, +/area/station/medical/chemistry) +"bPd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkpurple" + }, +/area/station/science/robotics) +"bPe" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/machinery/chem_heater, +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"bPf" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"bPg" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/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"; + pixel_y = 14 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm/directional/east, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"bPh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/paramedic) +"bPi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bPl" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"bPs" = ( +/obj/structure/table, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/flash/synthetic, +/obj/item/flash/synthetic, +/obj/item/flash/synthetic, +/obj/item/flash/synthetic, +/obj/item/multitool{ + pixel_x = 3 + }, +/obj/item/clothing/glasses/hud/diagnostic, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics) +"bPt" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/server) +"bPy" = ( +/obj/machinery/mecha_part_fabricator, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics) +"bPz" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/machinery/light_switch/north, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purplecorner" + }, +/area/station/science/robotics) +"bPA" = ( +/obj/structure/table/wood, +/obj/structure/bedsheetbin{ + pixel_y = -2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"bPD" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/station/science/hallway) +"bPF" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"bPG" = ( +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"bPH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/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, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"bPK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/obj/machinery/door_control/normal{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyerPort"; + name = "Medbay Doors Control"; + req_access = list(5) + }, +/obj/item/storage/box/rxglasses{ + pixel_y = 14 + }, +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "Medical Reception" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"bPN" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 9; + height = 18; + id = "admin_home"; + name = "port bay 1"; + timid = 1; + width = 19 + }, +/turf/space, +/area/space) +"bPO" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bPP" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/firealarm/directional/north, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo Requests Console"; + pixel_x = -30 + }, +/turf/simulated/floor/carpet, +/area/station/supply/qm) +"bPR" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/fsmaint) +"bPT" = ( +/obj/structure/sign/vacuum/external, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"bPV" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bPW" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bPX" = ( +/obj/structure/closet/emcloset, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bPY" = ( +/obj/structure/closet/emcloset, +/obj/machinery/status_display/supply_display/north, +/obj/effect/turf_decal{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bPZ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/station/supply/office) +"bQe" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Cargo Desk"; + req_one_access_txt = "50" + }, +/obj/structure/noticeboard{ + pixel_y = 27 + }, +/obj/item/desk_bell{ + anchored = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bQf" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bQh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/hallway/primary/central/sw) +"bQj" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bQq" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"bQs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) +"bQt" = ( +/obj/structure/cable{ + 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/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"bQB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay2) +"bQF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"bQQ" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"bQR" = ( +/turf/simulated/wall/r_wall, +/area/station/medical/paramedic) +"bQS" = ( +/obj/structure/table/glass, +/obj/machinery/firealarm/directional/east, +/obj/item/storage/box/syringes{ + pixel_y = 16 + }, +/obj/item/storage/box/iv_bags{ + pixel_x = -6 + }, +/obj/item/storage/box/iv_bags{ + pixel_x = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"bQT" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/secondary) +"bQV" = ( +/turf/simulated/wall, +/area/station/medical/medbay) +"bQX" = ( +/obj/effect/decal/cleanable/dirt, +/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/plasteel, +/area/station/maintenance/fpmaint2) +"bQZ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"bRb" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"bRc" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"bRg" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"bRj" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/science/robotics/chargebay) +"bRk" = ( +/obj/machinery/mech_bay_recharge_port, +/turf/simulated/floor/bluegrid, +/area/station/science/robotics/chargebay) +"bRm" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + icon_state = "darkpurple" + }, +/area/station/science/robotics) +"bRo" = ( +/obj/machinery/computer/card/minor/qm, +/obj/machinery/camera{ + c_tag = "Quartermaster's Office" + }, +/turf/simulated/floor/carpet, +/area/station/supply/qm) +"bRp" = ( +/obj/machinery/computer/rdconsole/robotics{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/science/robotics) +"bRq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/closet/firecloset, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"bRs" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/fyellow{ + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/fyellow{ + pixel_y = -1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"bRt" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -6 + }, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"bRy" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"bRz" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"bRI" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor/east{ + id = "QMLoad2" + }, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"bRK" = ( +/obj/machinery/door/poddoor{ + id_tag = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/obj/machinery/conveyor/east{ + id = "QMLoad2" + }, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"bRL" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"bRM" = ( +/obj/machinery/autolathe, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bRN" = ( +/obj/machinery/computer/supplycomp{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bRQ" = ( +/obj/structure/reagent_dispensers/fueltank/chem/east, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Research Robotics Lab"; + dir = 8; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bRR" = ( +/obj/machinery/conveyor/east{ + id = "QMLoad2" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bRT" = ( +/mob/living/simple_animal/pet/dog/corgi/borgi, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bRU" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"bRW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/supply/qm) +"bRY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"bRZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/sw) +"bSf" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/turbine) +"bSk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"bSn" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"bSo" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/machinery/chem_master, +/obj/structure/reagent_dispensers/fueltank/chem/west, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"bSq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/paramedic) +"bSt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"bSu" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/obj/structure/sign/lifestar, +/turf/simulated/floor/plating, +/area/station/medical/medbay) +"bSv" = ( +/obj/machinery/smartfridge/medbay, +/obj/machinery/door/window/classic/reversed{ + desc = "You have the public fridge, pal, lube off."; + name = "Anti-Theft Shield" + }, +/obj/machinery/door/window/classic/reversed{ + desc = "You have the public fridge, pal, lube off."; + dir = 1; + name = "Anti-Theft Shield" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, +/turf/simulated/floor/plating, +/area/station/medical/chemistry) +"bSw" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"bSx" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"bSy" = ( +/obj/item/kirbyplants{ + icon_state = "plant-32" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"bSA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/item/stack/rods, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"bSB" = ( +/obj/effect/decal/warning_stripes/blue/hollow, +/obj/machinery/sleeper{ + dir = 4; + pixel_x = 3 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"bSC" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/pen/multi{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/hand_labeler{ + pixel_x = -16; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"bSD" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"bSE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/carpet/royalblack, +/area/station/command/office/ntrep) +"bSG" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"bSH" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "surgery1" + }, +/turf/simulated/floor/plating, +/area/station/medical/surgery/primary) +"bSJ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"bSK" = ( +/obj/item/clipboard{ + pixel_y = 3 + }, +/obj/structure/table, +/obj/item/stamp/granted{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bSM" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"bSN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/sign/chemistry, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/medical/chemistry) +"bSP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab" + }, +/obj/structure/disposalpipe/segment, +/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 = 8; + icon_state = "2-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/chemistry, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellowfull" + }, +/area/station/medical/chemistry) +"bSQ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bSR" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "paramedic" + }, +/turf/simulated/floor/plating, +/area/station/medical/paramedic) +"bSU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/command/bridge) +"bSV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"bSW" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellow" + }, +/area/station/science/robotics/chargebay) +"bSZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bTa" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/access_button{ + autolink_id = "eng_s_tesla_btn_int"; + pixel_x = -25; + pixel_y = 25; + req_access_txt = "10;13" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"bTb" = ( +/turf/simulated/wall, +/area/station/science/rnd) +"bTe" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/rnd) +"bTg" = ( +/obj/machinery/disposal, +/obj/machinery/ai_status_display/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "purplecorner" + }, +/area/station/science/robotics) +"bTi" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/turbine) +"bTk" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/sw) +"bTq" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"bTr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + id_tag = "supply_home"; + locked = 1; + name = "Cargo Docking Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"bTu" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bTv" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bTw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"bTy" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/sw) +"bTA" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo Requests Console"; + pixel_x = -30 + }, +/obj/machinery/camera{ + c_tag = "Cargo Office"; + dir = 4 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/multitool, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bTG" = ( +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"bTI" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers, +/obj/item/hand_labeler{ + pixel_y = 14 + }, +/obj/item/storage/box/beakers{ + pixel_x = 5 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"bTM" = ( +/obj/structure/table/glass, +/obj/item/reagent_scanner/adv{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_scanner/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/light_switch/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"bTN" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"bTP" = ( +/obj/effect/decal/cleanable/dirt, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"bTT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/obj/item/phone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/eftpos{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/hand_labeler{ + pixel_x = 2; + pixel_y = -4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"bTU" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"bTW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/science/robotics/chargebay) +"bTX" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/spawner/random_barrier/obstruction, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bTZ" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/station/medical/sleeper) +"bUa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bUc" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/button/windowtint/west{ + id = "paramedic"; + pixel_y = 8; + range = 10 + }, +/obj/effect/landmark/start/paramedic, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"bUd" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"bUg" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor/west{ + id = "QMLoad" + }, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"bUh" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/robotics) +"bUk" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"bUl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"bUp" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bUs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cloning) +"bUu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/patients_rooms) +"bUx" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"bUy" = ( +/obj/machinery/door/airlock/external{ + id_tag = "eng_atmos_door_ext"; + locked = 1; + name = "Atmospherics External Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"bUE" = ( +/obj/item/flag/nt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hos) +"bUG" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"bUH" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bUK" = ( +/obj/machinery/computer/aifixer{ + dir = 1 + }, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkpurple" + }, +/area/station/command/office/rd) +"bUN" = ( +/obj/structure/sign/poster/official/random/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/science/robotics/chargebay) +"bUO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"bUT" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 8; + location = "Research Division" + }, +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Research Division Delivery" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ + dir = 4 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"bUU" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bVd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"bVj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/spawner/xeno, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"bVk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Delivery Office" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/supply/mail_sorting, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bVl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay" + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bVp" = ( +/obj/machinery/button/windowtint/east{ + id = "qm"; + pixel_y = 8; + req_one_access_txt = "41" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/keycard_auth/east{ + pixel_y = -6 + }, +/turf/simulated/floor/carpet, +/area/station/supply/qm) +"bVr" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/eftpos, +/obj/item/book/manual/wiki/sop_supply, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bVt" = ( +/obj/machinery/economy/vending/cart, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bVu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"bVw" = ( +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"bVx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/atmos) +"bVA" = ( +/obj/machinery/light_switch/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"bVF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/robotics) +"bVJ" = ( +/mob/living/simple_animal/hostile/gorilla/cargo_domestic{ + name = "Forklift" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bVL" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/sw) +"bVN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/security/lobby) +"bVT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/hallway/primary/central/se) +"bVV" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "CloningDoor"; + name = "Genetics Cloning" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + 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 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "cloning" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/cloning) +"bVZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/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{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"bWa" = ( +/turf/simulated/wall, +/area/station/medical/cryo) +"bWb" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"bWd" = ( +/turf/simulated/wall, +/area/station/medical/cloning) +"bWe" = ( +/obj/structure/sign/poster/official/random, +/turf/simulated/wall, +/area/station/science/robotics/chargebay) +"bWf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"bWg" = ( +/turf/simulated/wall, +/area/station/science/genetics) +"bWi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/hallway/primary/central/se) +"bWj" = ( +/turf/simulated/wall, +/area/station/science/robotics/chargebay) +"bWk" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bWl" = ( +/obj/structure/closet/secure_closet/roboticist, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"bWq" = ( +/obj/structure/closet/firecloset, +/obj/structure/sign/poster/official/random/west, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"bWt" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay2) +"bWu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/cryo) +"bWv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"bWA" = ( +/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/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"bWC" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cryo) +"bWF" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"bWH" = ( +/turf/simulated/floor/plasteel{ + icon_state = "stairs-l" + }, +/area/station/hallway/primary/central/ne) +"bWJ" = ( +/obj/structure/closet/secure_closet{ + anchored = 1; + name = "Evidence Storage"; + req_one_access_txt = "4" + }, +/obj/item/folder/red{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/folder/red{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/folder/red{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/folder/red, +/obj/item/folder/red{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/security/detective) +"bWL" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"bWP" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "supply bay"; + width = 12 + }, +/turf/space, +/area/space) +"bWR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/misc_lab) +"bWS" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/west) +"bWT" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/storage) +"bWU" = ( +/obj/machinery/light/directional/south, +/obj/machinery/economy/merch, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bWW" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/screwdriver/cargo, +/obj/item/storage/firstaid/regular, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bXc" = ( +/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, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"bXe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bXf" = ( +/obj/structure/table, +/obj/item/flashlight/lamp/green, +/turf/simulated/floor/carpet, +/area/station/supply/qm) +"bXB" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/hallway/primary/central/se) +"bXD" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/sleeper) +"bXF" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"bXI" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"bXK" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/station/medical/sleeper) +"bXL" = ( +/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/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"bXM" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "medcabin1"; + name = "Patients Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"bXN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/genetics) +"bXO" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"bXP" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"bXQ" = ( +/obj/machinery/computer/cloning{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"bXR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"bXS" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"bYb" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/turf_decal/woodsiding/end, +/turf/simulated/floor/grass/jungle/no_creep, +/area/station/command/bridge) +"bYc" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/ward) +"bYd" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -4; + pixel_y = 2 + }, +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"bYe" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/station/medical/ward) +"bYf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/maintenance/asmaint2) +"bYj" = ( +/turf/simulated/wall/r_wall, +/area/station/command/office/rd) +"bYk" = ( +/obj/machinery/dna_scannernew, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"bYl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Surgery Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/science/robotics, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/robotics) +"bYm" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mug, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"bYr" = ( +/obj/structure/table, +/obj/item/megaphone{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/station/supply/qm) +"bYu" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/chemistry{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/machinery/economy/vending/wallmed/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"bYv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"bYw" = ( +/obj/machinery/door/poddoor{ + id_tag = "QMLoaddoor"; + name = "supply dock loading door" + }, +/obj/machinery/conveyor/west{ + id = "QMLoad" + }, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"bYx" = ( +/obj/effect/turf_decal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bYy" = ( +/obj/machinery/conveyor/west/ccw{ + dir = 9; + id = "QMLoad" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bYF" = ( +/obj/item/vending_refill/boozeomat, +/turf/simulated/floor/plating, +/area/station/command/office/blueshield) +"bYG" = ( +/obj/machinery/newscaster/directional/south, +/obj/machinery/papershredder, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bYH" = ( +/obj/machinery/light/directional/south, +/obj/machinery/computer/guestpass{ + pixel_y = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "browncorner" + }, +/area/station/supply/office) +"bYI" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"bYJ" = ( +/obj/machinery/status_display/supply_display/east, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/supply/office) +"bYL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"bYM" = ( +/turf/simulated/wall, +/area/station/supply/qm) +"bYO" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay Entrance"; + dir = 4 + }, +/obj/machinery/economy/atm/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/sw) +"bYP" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/supply/miningdock) +"bYQ" = ( +/obj/machinery/door/airlock/external{ + id_tag = "eng_s_tesla_door_ext"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/control) +"bYR" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/hallway/primary/central/sw) +"bYX" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/sw) +"bYZ" = ( +/obj/machinery/door/airlock/maintenance, +/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/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"bZh" = ( +/obj/effect/decal/warning_stripes/blue/hollow, +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"bZk" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"bZl" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"bZm" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/fire{ + pixel_y = 4 + }, +/obj/item/storage/firstaid/fire{ + pixel_y = 2 + }, +/obj/machinery/camera{ + c_tag = "Medbay Storage" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"bZn" = ( +/obj/effect/decal/cleanable/dirt, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/girder, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"bZo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/legal/courtroom) +"bZp" = ( +/obj/structure/railing{ + dir = 1; + layer = 3.9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"bZq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"bZs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"bZt" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway South East"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/hallway/primary/central/se) +"bZu" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/eftpos{ + pixel_x = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"bZv" = ( +/obj/structure/chair/comfy/teal{ + dir = 1 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"bZw" = ( +/obj/structure/closet/radiation, +/obj/machinery/power/apc/directional/south, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"bZD" = ( +/obj/machinery/camera{ + c_tag = "Medbay Waiting Room" + }, +/obj/machinery/light_switch/east, +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"bZE" = ( +/obj/structure/chair/comfy/teal, +/obj/effect/landmark/start/doctor, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"bZH" = ( +/obj/structure/table, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/camera{ + c_tag = "Virology Observation"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"bZI" = ( +/obj/machinery/door/airlock/maintenance, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"bZJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera{ + c_tag = "Medbay Treatment West"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"bZL" = ( +/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/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"bZN" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Workstation" + }, +/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/effect/mapping_helpers/airlock/access/any/medical/virology, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"bZP" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/camera{ + c_tag = "Medbay Hallway North" + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"bZZ" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/maintenance/aft) +"cam" = ( +/turf/simulated/wall, +/area/station/supply/miningdock) +"can" = ( +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Medbay Lobby"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"cao" = ( +/obj/machinery/mineral/mint{ + input_dir = 4 + }, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cap" = ( +/obj/structure/table, +/obj/item/storage/secure/safe{ + pixel_y = 30 + }, +/obj/item/coin/iron, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"caq" = ( +/obj/item/flag/nt, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"cas" = ( +/obj/machinery/door/airlock/mining{ + name = "Mining Dock" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"cat" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cau" = ( +/obj/structure/table, +/obj/item/mmi, +/obj/item/mmi, +/obj/item/mmi, +/obj/item/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" + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/reagent_dispensers/fueltank/chem/north, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/science/robotics) +"cav" = ( +/obj/structure/table, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/item/hemostat, +/obj/item/retractor, +/obj/item/stack/medical/bruise_pack/advanced{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/science/robotics) +"caw" = ( +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/sw) +"cay" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"caz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"caA" = ( +/turf/simulated/wall, +/area/station/medical/sleeper) +"caC" = ( +/obj/machinery/ai_status_display/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"caE" = ( +/obj/structure/table/reinforced, +/obj/machinery/defibrillator_mount/loaded, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"caF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"caH" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"caL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"caM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/command/bridge) +"caN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"caP" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/sign/examroom, +/turf/simulated/floor/plating, +/area/station/medical/sleeper) +"caQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"caR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"caS" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"caV" = ( +/obj/structure/table, +/obj/item/storage/box/iv_bags{ + layer = 3.3; + pixel_x = -4; + pixel_y = -10 + }, +/obj/item/storage/box/iv_bags{ + layer = 3.3; + pixel_x = 8; + pixel_y = -10 + }, +/obj/item/storage/box/patch_packs{ + layer = 3.2; + pixel_x = -4 + }, +/obj/item/storage/box/patch_packs{ + layer = 3.2; + pixel_x = 8 + }, +/obj/item/storage/box/pillbottles{ + layer = 3.1; + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/storage/box/pillbottles{ + layer = 3.1; + pixel_x = 8; + pixel_y = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) +"caW" = ( +/obj/structure/table/glass, +/obj/item/storage/fancy/vials, +/obj/machinery/camera{ + c_tag = "Virology Workspace" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"cbd" = ( +/turf/simulated/wall/r_wall, +/area/station/science/server/coldroom) +"cbj" = ( +/turf/simulated/wall/r_wall, +/area/station/science/storage) +"cbk" = ( +/obj/machinery/optable{ + name = "Robotics Operating Table" + }, +/obj/item/storage/firstaid/machine, +/obj/item/storage/firstaid/machine, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/science/robotics) +"cbn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/rd{ + name = "Server Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/rd, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/server) +"cbo" = ( +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"cbq" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"cbr" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/station/medical/sleeper) +"cbs" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cbu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/machinery/light/directional/west, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"cbv" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"cbz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office" + }, +/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/effect/mapping_helpers/airlock/access/any/supply/mail_sorting, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"cbB" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"cbE" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/machinery/door/window/classic/normal{ + dir = 1; + name = "Cryo Tank Storage" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/atmos{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"cbH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"cbI" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"cbJ" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/gps/mining, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"cbK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"cbR" = ( +/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, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cbT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/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/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"cbU" = ( +/obj/machinery/door/firedoor, +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"cbV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"cbX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/cryo) +"ccb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cryo) +"ccd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cryo) +"ccg" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/science/robotics) +"ccj" = ( +/obj/structure/sink/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/science/robotics) +"cck" = ( +/obj/structure/table, +/obj/structure/table/glass, +/obj/item/storage/box/donkpockets, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Virology Break Room"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"ccm" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"ccn" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/se) +"cco" = ( +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/se) +"ccq" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"cct" = ( +/obj/item/storage/pill_bottle/painkillers{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 16; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/machinery/light/directional/south, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm/directional/south, +/obj/structure/table, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"ccv" = ( +/obj/structure/closet, +/obj/item/restraints/handcuffs/pinkcuffs, +/obj/item/melee/chainofcommand, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ccx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"ccz" = ( +/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/plasteel, +/area/station/hallway/primary/aft) +"ccA" = ( +/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/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"ccC" = ( +/obj/machinery/button/windowtint/south{ + id = "cloning"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"ccE" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"ccF" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"ccG" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"ccJ" = ( +/obj/structure/closet/secure_closet/paramedic, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"ccL" = ( +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"ccN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"ccO" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/ce) +"ccR" = ( +/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/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"ccX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"ccY" = ( +/obj/machinery/conveyor/east{ + id = "packageExternal" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/window/classic/reversed{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mail_sorting{ + dir = 8 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"ccZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/conveyor/east{ + id = "packageExternal" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"cdb" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cdd" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "rd" + }, +/turf/simulated/floor/plating, +/area/station/command/office/rd) +"cde" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"cdf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/rd/glass{ + id_tag = "rdofficedoor"; + name = "Research Director's Office" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "rd" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/science/rd, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/command/office/rd) +"cdh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"cdk" = ( +/obj/machinery/disposal, +/obj/machinery/camera{ + c_tag = "Research Hallway North"; + dir = 1; + network = list("Research","SS13") + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"cdo" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"cdC" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 4; + name = "CORPSE disposal unit" + }, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Body Utilizer" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/robotics{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/science/robotics) +"cdF" = ( +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/science/robotics) +"cdG" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cdI" = ( +/obj/machinery/door/firedoor, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/hallway/primary/central/sw) +"cdJ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/sw) +"cdK" = ( +/obj/effect/turf_decal/stripes/line, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"cdM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"cdN" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) +"cdP" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"cdQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/directional/west, +/obj/item/stack/cable_coil, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"cdS" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/sw) +"cdT" = ( +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/sw) +"cdU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"cdV" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/sw) +"cdX" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"cdY" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"cea" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"ceb" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generator Room"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"ceh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"cej" = ( +/obj/machinery/door/firedoor, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/ward) +"cen" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"cep" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ces" = ( +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/secondary/garden) +"cet" = ( +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"ceu" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"cev" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) +"cew" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"cex" = ( +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"cey" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"ceB" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway South" + }, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"ceC" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"ceD" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"ceE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/storage) +"ceF" = ( +/obj/effect/decal/warning_stripes/yellow/partial, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/station/hallway/primary/central/south) +"ceH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"ceJ" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"ceK" = ( +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"ceM" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkbluecorners" + }, +/area/station/science/server/coldroom) +"ceN" = ( +/obj/structure/table/glass, +/obj/item/lighter/zippo/rd, +/obj/item/paicard, +/obj/item/megaphone, +/obj/item/paper/monitorkey, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkpurple" + }, +/area/station/command/office/rd) +"ceP" = ( +/obj/structure/closet/secure_closet/ntrep, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "NT Representative"; + departmentType = 5; + name = "NT Representative Requests Console"; + pixel_x = 30 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"ceT" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR: EMERGENCY ENTRANCE'."; + name = "KEEP CLEAR: EMERGENCY ENTRANCE" + }, +/turf/simulated/wall, +/area/station/medical/medbay) +"ceU" = ( +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cfb" = ( +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"cfc" = ( +/obj/machinery/light/directional/east, +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"cfh" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIW"; + location = "QM" + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/primary/central/sw) +"cfi" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/sw) +"cfm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/supply/miningdock) +"cfn" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"cfo" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"cfp" = ( +/obj/structure/closet/secure_closet/blueshield, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Blueshield"; + departmentType = 5; + name = "Blueshield Requests Console"; + pixel_x = -30 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"cfw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"cfy" = ( +/turf/simulated/floor/plasteel{ + icon_state = "purplecorner" + }, +/area/station/hallway/primary/starboard/east) +"cfA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cfB" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"cfE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/patients_rooms) +"cfF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/ward) +"cfI" = ( +/obj/effect/decal/warning_stripes/blue/hollow, +/obj/machinery/sleeper, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"cfJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cfK" = ( +/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/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"cfL" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/ward) +"cfP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cfR" = ( +/obj/machinery/alarm/directional/south, +/turf/simulated/wall, +/area/station/medical/reception) +"cfW" = ( +/obj/structure/bed/dogbed/runtime, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"cfX" = ( +/obj/machinery/camera{ + c_tag = "Medbay Chief Medical Officer's Office" + }, +/obj/item/folder/white{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/structure/table/glass, +/obj/item/flashlight/pen{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"cfY" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical{ + name = "Durka" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/psych) +"cfZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + id = "xenobio4"; + name = "Chamber 4 Containment Blast Doors"; + pixel_y = 4; + req_one_access_txt = "55" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cga" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cgi" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"cgk" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/junction/y, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) +"cgl" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AftH"; + location = "AIW" + }, +/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/plasteel, +/area/station/hallway/primary/central/south) +"cgm" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHE"; + location = "AIE" + }, +/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/plasteel, +/area/station/hallway/primary/central/south) +"cgq" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"cgs" = ( +/turf/simulated/wall/r_wall, +/area/station/science/toxins/mixing) +"cgv" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"cgA" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"cgE" = ( +/obj/machinery/economy/vending/plasmaresearch, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"cgJ" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP"; + location = "CHE" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Captain's Office"; + sort_type_txt = "18" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"cgQ" = ( +/turf/simulated/wall, +/area/station/maintenance/apmaint) +"cgS" = ( +/turf/simulated/wall, +/area/station/command/office/blueshield) +"cgT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "asteroid" + }, +/area/station/service/hydroponics) +"cgW" = ( +/turf/simulated/wall, +/area/station/command/office/ntrep) +"cgX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/atmos/control) +"cgZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + density = 0; + dir = 2; + icon_state = "open"; + id_tag = "representative"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/command/office/ntrep) +"chc" = ( +/turf/simulated/wall, +/area/station/service/janitor) +"chd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"chf" = ( +/turf/simulated/wall, +/area/station/maintenance/aft) +"chh" = ( +/turf/simulated/wall, +/area/station/medical/paramedic) +"chk" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cho" = ( +/obj/structure/closet/firecloset, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"chp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"chq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/medbay2) +"chr" = ( +/turf/simulated/wall/r_wall, +/area/station/command/office/cmo) +"chs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"cht" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"chu" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera{ + c_tag = "Medbay Surgery West"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"chx" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"chy" = ( +/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{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"chA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"chB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"chD" = ( +/obj/item/stack/sheet/metal{ + amount = 10; + pixel_y = 2 + }, +/obj/structure/table, +/obj/item/clothing/head/beret/atmos{ + pixel_y = 2 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"chE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"chH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "open"; + id_tag = "representative"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/office/ntrep) +"chJ" = ( +/obj/machinery/alarm/directional/east, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"chK" = ( +/obj/structure/table, +/obj/item/handheld_defibrillator{ + pixel_y = -6 + }, +/obj/item/handheld_defibrillator, +/obj/item/handheld_defibrillator{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/handheld_defibrillator{ + pixel_x = -6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) +"chL" = ( +/obj/structure/sink/directional/west, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"chM" = ( +/obj/structure/displaycase/labcage, +/obj/structure/sign/poster/contraband/lamarr{ + pixel_y = 31 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkpurple" + }, +/area/station/command/office/rd) +"chN" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"chO" = ( +/obj/structure/table/glass, +/obj/item/pen/multi, +/obj/item/paper_bin/nanotrasen, +/obj/item/radio/intercom/directional/north, +/obj/machinery/camera{ + c_tag = "Research Director's Office"; + network = list("Research","SS13") + }, +/obj/item/reagent_containers/food/drinks/mug/rd, +/obj/item/taperecorder{ + pixel_x = -3 + }, +/obj/effect/spawner/lootdrop/officetoys, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkpurple" + }, +/area/station/command/office/rd) +"chP" = ( +/obj/machinery/suit_storage_unit/rd/secure, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"chR" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/computer/general_air_control/large_tank_control{ + autolink_sensors = list("n2o_sensor"="Tank"); + dir = 1; + inlet_injector_autolink_id = "n2o_in"; + name = "Nitrous Oxide Supply Control"; + outlet_vent_autolink_id = "n2o_out" + }, +/turf/simulated/floor/plasteel{ + icon_state = "escape" + }, +/area/station/engineering/atmos) +"chU" = ( +/obj/structure/sign/poster/contraband/random/north, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/cans/bottler/glass_bottle{ + pixel_x = 4 + }, +/obj/item/reagent_containers/food/drinks/cans/bottler/glass_bottle{ + pixel_x = -9 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"chX" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/fpmaint) +"cic" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"cid" = ( +/turf/simulated/wall, +/area/station/science/toxins/test) +"cie" = ( +/turf/simulated/wall/r_wall, +/area/station/science/toxins/test) +"cif" = ( +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"cig" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/effect/spawner/wire_splicing/thirty, +/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/plating, +/area/station/maintenance/fpmaint2) +"cij" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/simulated/wall/r_wall, +/area/station/science/toxins/test) +"civ" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/station/command/vault) +"ciz" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"ciB" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"ciC" = ( +/obj/machinery/alarm/directional/south, +/obj/effect/landmark/spawner/xeno, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"ciD" = ( +/obj/item/flag/cargo, +/turf/simulated/floor/plating, +/area/station/command/office/ntrep) +"ciE" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"ciG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/storage) +"ciH" = ( +/obj/item/flashlight/lantern, +/turf/simulated/floor/plating, +/area/station/command/office/ntrep) +"ciI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"ciJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/ward) +"ciK" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"ciM" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway South-West"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) +"ciN" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"ciP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/ward) +"ciQ" = ( +/obj/structure/table, +/obj/item/storage/belt/medical{ + pixel_y = 6 + }, +/obj/item/storage/belt/medical{ + pixel_y = 3 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = -2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"ciR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/ward) +"ciX" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"ciY" = ( +/turf/simulated/wall, +/area/station/maintenance/asmaint) +"cja" = ( +/obj/effect/spawner/random_barrier/obstruction, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cjc" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/maintenance/port) +"cjd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cjf" = ( +/obj/structure/table/glass, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cjg" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/generic, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cjh" = ( +/obj/machinery/light/directional/south, +/obj/structure/sign/poster/official/random/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) +"cjj" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "bridge blast north"; + name = "Bridge Blast Doors" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"cjm" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Psychiatrist Office"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/se) +"cjq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Delivery Office" + }, +/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/effect/mapping_helpers/airlock/access/any/supply/mail_sorting, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"cjs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"cju" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"cjw" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"cjz" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"cjA" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cjB" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "surgery2" + }, +/turf/simulated/floor/plating, +/area/station/medical/surgery/secondary) +"cjC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/ward) +"cjF" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cjG" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "Do Not Revive"; + req_one_access_txt = "6" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/morgue{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/medical/morgue) +"cjN" = ( +/obj/machinery/computer/card/minor/rd{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurple" + }, +/area/station/command/office/rd) +"cjO" = ( +/obj/machinery/papershredder, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"cjR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"cjU" = ( +/obj/structure/closet/secure_closet/miner, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"cjV" = ( +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"cjZ" = ( +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"ckb" = ( +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"ckc" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"ckg" = ( +/obj/machinery/alarm/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/mob/living/simple_animal/pet/dog/pug/Frank, +/turf/simulated/floor/engine, +/area/station/science/explab/chamber) +"ckk" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + width = 7 + }, +/turf/space, +/area/space) +"cko" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/camera{ + c_tag = "Mining Dock"; + dir = 8 + }, +/obj/machinery/light_switch/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"ckp" = ( +/obj/machinery/door/airlock/maintenance, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"ckr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/holosign/surgery{ + id = "surgery1" + }, +/obj/machinery/door/airlock/medical/glass{ + id = "surgery1" + }, +/obj/structure/cable{ + 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/mapping_helpers/airlock/access/any/medical/surgery, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "surgery1" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/surgery/primary) +"ckt" = ( +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"ckv" = ( +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"ckw" = ( +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"ckx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"ckz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-y" + }, +/obj/machinery/camera{ + c_tag = "Medbay Surgery Observation"; + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/ward) +"ckB" = ( +/obj/machinery/camera{ + c_tag = "Medbay Hallway Center"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"ckC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cloning) +"ckD" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"ckE" = ( +/obj/structure/table/glass, +/obj/item/eftpos{ + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"ckF" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/hallway/primary/central/se) +"ckG" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/access_button{ + autolink_id = "eng_s_tesla_btn_ext"; + pixel_x = 25; + pixel_y = 25; + req_access_txt = "10;13" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"ckI" = ( +/obj/structure/sign/poster/official/random/north, +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "NT Representative's Office"; + pixel_y = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"ckL" = ( +/obj/machinery/atmospherics/binary/valve, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"ckM" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/supply/miningdock) +"ckN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + id_tag = "ntrepofficedoor"; + name = "NT Representative's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ntrep, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/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/wood/oak, +/area/station/command/office/ntrep) +"ckP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/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/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"ckR" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ckU" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/psychiatrist, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/patients_rooms) +"ckV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/patients_rooms) +"ckW" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/ward) +"ckX" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/clothing/gloves/color/latex/nitrile{ + pixel_y = 16 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"ckZ" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/item/defibrillator/loaded{ + layer = 4; + pixel_y = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"cla" = ( +/turf/simulated/wall, +/area/station/command/office/rd) +"clc" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/primary) +"cle" = ( +/obj/structure/table/glass, +/obj/item/defibrillator/loaded{ + layer = 4; + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"clf" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"clg" = ( +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"clj" = ( +/obj/machinery/computer/security/telescreen/rd{ + pixel_y = 2 + }, +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/rd) +"cll" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"cln" = ( +/obj/machinery/door_control/shutter{ + id = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -4; + pixel_y = 6; + req_one_access_txt = "30" + }, +/obj/item/folder/white{ + pixel_x = 4 + }, +/obj/item/stamp/rd{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/structure/table/glass, +/obj/machinery/door_control/normal{ + id = "rdofficedoor"; + name = "Office Door"; + pixel_x = -4; + pixel_y = -4; + req_one_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkpurple" + }, +/area/station/command/office/rd) +"clp" = ( +/turf/simulated/wall/r_wall, +/area/station/science/explab/chamber) +"clq" = ( +/obj/machinery/computer/mecha{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkpurple" + }, +/area/station/command/office/rd) +"clr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"clw" = ( +/obj/machinery/atmospherics/portable/canister/carbon_dioxide, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"clA" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"clB" = ( +/obj/machinery/door/airlock/external{ + name = "Toxins Test Chamber" + }, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"clE" = ( +/obj/machinery/atmospherics/trinary/mixer{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"clF" = ( +/mob/living/simple_animal/mouse, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"clH" = ( +/obj/machinery/camera{ + c_tag = "Research Toxins Test Chamber North"; + network = list("Toxins","Research","SS13") + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"clJ" = ( +/obj/structure/sink/directional/west, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/command/office/captain/bedroom) +"clL" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + autolink_id = "co2_in"; + dir = 1 + }, +/turf/simulated/floor/engine/co2, +/area/station/engineering/atmos) +"clN" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"clO" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"clP" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Pure to Port" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"clR" = ( +/obj/structure/bed/dogbed/pet, +/mob/living/simple_animal/pet/cat/Floppa, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"clU" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Staff Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"clW" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"clX" = ( +/obj/structure/fermenting_barrel, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"clY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/rd) +"clZ" = ( +/obj/machinery/computer/general_air_control{ + autolink_sensors = list("mair_in_meter"="Mixed Air In","air_sensor"="Mixed Air Supply Tank","mair_out_meter"="Mixed Air Out","dloop_atm_meter"="Distribution Loop","wloop_atm_meter"="Waste Loop"); + dir = 8; + level = 3; + name = "Distribution and Waste Monitor" + }, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/engineering/controlroom) +"cma" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"cmb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"cmc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + id_tag = "apsolar_door_int"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button/south{ + autolink_id = "apsolar_btn_int"; + req_one_access_txt = "13" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"cmd" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"cme" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cmg" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door_control/shutter/north{ + desc = "A remote control-switch for secure storage."; + id = "enginestorage"; + name = "Engineering Engine Storage"; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"cmi" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 4; + name = "Research Director" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/rd{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/rd) +"cmj" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/geiger_counter, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"cmn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"cmo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"cmq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"cms" = ( +/obj/machinery/computer/card/minor/cmo{ + dir = 4 + }, +/obj/item/radio/intercom/department/medbay{ + pixel_x = -32; + pixel_y = 5 + }, +/obj/item/radio/intercom/custom{ + pixel_x = -32; + pixel_y = -8 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"cmv" = ( +/obj/machinery/keycard_auth/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"cmy" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"cmB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Genetics Reception" + }, +/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/effect/mapping_helpers/airlock/windoor/access/any/medical/genetics{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkpurplefull" + }, +/area/station/science/genetics) +"cmF" = ( +/obj/machinery/atmospherics/portable/canister/toxins, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"cmG" = ( +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"cmI" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"cmK" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/light/small/directional/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"cmQ" = ( +/obj/structure/rack, +/obj/item/extinguisher, +/obj/item/clothing/mask/gas, +/obj/item/grenade/chem_grenade/firefighting, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"cmR" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/service/janitor) +"cmT" = ( +/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/structure/closet/cabinet, +/obj/machinery/light/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"cmU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cmV" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/science/server/coldroom) +"cmX" = ( +/obj/machinery/atmospherics/portable/scrubber/huge, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"cmZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/caution/red, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/science/storage) +"cnb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"cnf" = ( +/obj/machinery/atmospherics/portable/scrubber/huge, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"cng" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cnk" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/simulated/wall, +/area/station/science/toxins/test) +"cnm" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"cno" = ( +/obj/structure/closet/secure_closet/miner, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/miningdock) +"cns" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/public/locker) +"cnu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/mob/living/simple_animal/mouse/hamster/Representative, +/obj/structure/bed/dogbed/pet, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"cnv" = ( +/obj/item/seeds/berry, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"cnx" = ( +/obj/structure/cable{ + 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/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"cny" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/server/coldroom) +"cnA" = ( +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"cnF" = ( +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/surgery/primary) +"cnH" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"cnI" = ( +/obj/machinery/optable, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/surgery/primary) +"cnJ" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"cnL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cnM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"cnN" = ( +/obj/structure/table/glass, +/obj/machinery/door_control/normal{ + id = "cmoofficedoor"; + name = "Office Door"; + pixel_x = -4; + req_one_access_txt = "40" + }, +/obj/machinery/button/windowtint{ + id = "CMO"; + pixel_x = 7; + pixel_y = 6 + }, +/obj/machinery/door_control/shutter{ + id = "Biohazard_medi"; + name = "Emergency Medbay Quarantine"; + pixel_x = -4; + pixel_y = 11; + req_one_access_txt = "40" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"cnP" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"cnQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cnR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"cnS" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"cnT" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/station/supply/miningdock) +"cnU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"cnW" = ( +/obj/structure/table, +/obj/item/camera{ + name = "Autopsy Camera"; + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/scalpel{ + pixel_y = 2 + }, +/obj/item/autopsy_scanner{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Morgue"; + departmentType = 5; + name = "Morgue Requests Console"; + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"cnX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cnY" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"cnZ" = ( +/obj/machinery/status_display/directional/west, +/obj/structure/sink/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"coa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/surgery/secondary) +"cod" = ( +/turf/simulated/wall/r_wall, +/area/station/science/explab) +"coe" = ( +/obj/structure/table/glass, +/obj/item/storage/box/masks{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/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 = 8; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"cof" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"cog" = ( +/obj/machinery/mineral/equipment_vendor, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"coi" = ( +/obj/machinery/atmospherics/binary/valve/digital{ + name = "Main Distro to Aux Distro Valve" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/maintenance/asmaint2) +"con" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase, +/obj/item/toy/russian_revolver, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cop" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cot" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/ward) +"cou" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"coA" = ( +/obj/item/seeds/apple, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"coC" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"coH" = ( +/obj/machinery/computer/med_data/laptop, +/obj/structure/sign/poster/official/random/north, +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"coL" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"coM" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"coP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"coT" = ( +/obj/machinery/computer/crew, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"coU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/unary/tank/toxins{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"coW" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"coZ" = ( +/obj/machinery/hologram/holopad{ + pixel_x = 16 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/surgery/primary) +"cpa" = ( +/obj/structure/table/glass, +/obj/item/storage/toolbox/emergency, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"cpb" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"cpc" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/surgery/primary) +"cpd" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"cph" = ( +/obj/structure/table/glass, +/obj/machinery/kitchen_machine/microwave{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"cpm" = ( +/obj/item/flag/nt, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"cpn" = ( +/obj/structure/table/reinforced, +/obj/item/eftpos{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/eftpos{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"cpr" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/science/server/coldroom) +"cpt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/server) +"cpv" = ( +/obj/machinery/atmospherics/unary/thermomachine/freezer/on/server, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera{ + c_tag = "Research Server Room"; + network = list("Research","SS13"); + pixel_x = 22 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/server) +"cpw" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/iv_bag/salglu{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/iv_bag/salglu{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"cpy" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/air{ + anchored = 1; + filled = 1 + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cpz" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id_tag = "engsm2"; + name = "SM Radiation Security Lock" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"cpA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/maintenance/aft) +"cpC" = ( +/turf/simulated/wall/r_wall, +/area/station/medical/storage) +"cpD" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/nitrogen, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/server) +"cpE" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cpI" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/station/science/genetics) +"cpL" = ( +/obj/machinery/computer/pandemic, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"cpO" = ( +/obj/machinery/atmospherics/binary/valve/open{ + name = "Virology Air Supply" + }, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cpR" = ( +/turf/simulated/wall, +/area/station/science/explab) +"cpS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"cpU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/maintenance/asmaint2) +"cpW" = ( +/obj/machinery/atmospherics/portable/canister, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/maintenance/asmaint2) +"cqa" = ( +/obj/machinery/computer/area_atmos{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"cqc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/science/tox_storage, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"cqe" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"cqj" = ( +/obj/structure/dispenser, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"cqk" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"cqn" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/fire{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"cqo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small/directional/west, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cqs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cqw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cqA" = ( +/obj/structure/closet/secure_closet/miner, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"cqB" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cqC" = ( +/obj/effect/spawner/window/reinforced/tinted/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"cqD" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"cqF" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cqG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/wardrobe/miner, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"cqI" = ( +/turf/simulated/floor/plating, +/area/station/command/office/ntrep) +"cqJ" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/engineering/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/station/engineering/aitransit) +"cqK" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cqM" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/primary) +"cqN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/maintenance/aft) +"cqQ" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cqT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"cqZ" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/closet/secure_closet/psychiatrist, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/food/drinks/drinkingglass/soda, +/obj/item/reagent_containers/food/drinks/drinkingglass/soda, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"cre" = ( +/obj/item/storage/box/cups{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/cups{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/table, +/obj/machinery/alarm/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"crj" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"crm" = ( +/obj/structure/bed, +/obj/item/bedsheet/fluff, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/patients_rooms) +"crn" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/server) +"crp" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"crq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/server) +"crr" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/secondary) +"crw" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"crz" = ( +/obj/structure/table, +/obj/item/ashtray/bronze, +/obj/item/clothing/mask/cigarette, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"crA" = ( +/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/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay2) +"crC" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/supply/office) +"crD" = ( +/turf/simulated/wall, +/area/station/medical/psych) +"crG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"crI" = ( +/obj/structure/table, +/obj/item/extinguisher/mini, +/obj/item/clothing/gloves/color/black, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"crJ" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "purple" + }, +/area/station/maintenance/asmaint) +"crK" = ( +/obj/structure/sign/explosives, +/turf/simulated/wall/r_wall, +/area/station/science/toxins/mixing) +"crL" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/explab) +"crM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/maintenance/asmaint2) +"crN" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/bombcloset, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"crQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"crR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/science/server/coldroom) +"crX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"crY" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/ward) +"crZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/sign/examroom, +/turf/simulated/floor/plating, +/area/station/medical/ward) +"csa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"csb" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/start/chief_medical_officer, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"csc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "purple" + }, +/area/station/maintenance/asmaint) +"cse" = ( +/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" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"csi" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Toxins Mixing Room" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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/effect/mapping_helpers/airlock/windoor/access/any/science/tox{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"csp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"csq" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"csr" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"cst" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"csv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/explab) +"csw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + id_tag = "blueshieldofficedoor"; + name = "Blueshield's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/blueshield, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/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/wood/oak, +/area/station/command/office/blueshield) +"csB" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/soda{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"csC" = ( +/turf/simulated/floor/plasteel/stairs/right, +/area/station/hallway/primary/aft) +"csD" = ( +/turf/simulated/wall, +/area/station/engineering/controlroom) +"csE" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"csF" = ( +/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 = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" + }, +/area/station/science/server/coldroom) +"csH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/reinforced/normal{ + dir = 4; + name = "Server Exterior Door" + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 8; + name = "Server Interior Door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/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/plasteel/dark, +/area/station/science/server/coldroom) +"csI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/detective) +"csK" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"csL" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"csM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"csN" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/hallway) +"csO" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id_tag = "engsm2"; + name = "SM Radiation Security Lock" + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"csQ" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/service/janitor) +"csS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Emergency Entrance" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"csX" = ( +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cta" = ( +/turf/simulated/wall/r_wall, +/area/station/medical/surgery/secondary) +"cth" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"ctj" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"ctk" = ( +/obj/machinery/smartfridge/secure/chemistry/virology/preloaded, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"ctl" = ( +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"cto" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = -30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"ctq" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"ctr" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"ctt" = ( +/obj/structure/cable{ + 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 = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"ctu" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/explab) +"cty" = ( +/obj/machinery/optable, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"ctz" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"ctC" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/science/server/coldroom) +"ctE" = ( +/obj/item/lighter/random, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "purple" + }, +/area/station/maintenance/asmaint) +"ctG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/machinery/door/airlock/multi_tile/security/glass{ + id_tag = "BrigRight"; + name = "Brig Foyer Right Entrance" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/brig) +"ctH" = ( +/obj/structure/cable{ + 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/station/maintenance/fsmaint) +"ctI" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"ctJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"ctL" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"ctN" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/meter, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"ctO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"ctQ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/toxins/mixing) +"ctX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"ctY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/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/plasteel, +/area/station/maintenance/aft) +"ctZ" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cua" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"cuc" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/aft) +"cud" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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/plasteel{ + dir = 10; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"cuf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/ward) +"cuh" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/safe, +/obj/effect/spawner/lootdrop/maintenance/eight, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cui" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"cuj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/maintenance/aft) +"cul" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"cum" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/brute{ + pixel_y = 4 + }, +/obj/item/storage/firstaid/brute{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"cuo" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"cup" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"cus" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/o2{ + pixel_y = 4 + }, +/obj/item/storage/firstaid/o2{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"cut" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"cuu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"cuv" = ( +/obj/structure/closet/walllocker/emerglocker/east, +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"cuw" = ( +/obj/machinery/suit_storage_unit/cmo, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"cux" = ( +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"cuy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/start/doctor, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cryo) +"cuA" = ( +/obj/machinery/camera{ + c_tag = "Chief Medical Officer's Quarters"; + dir = 1; + network = list("Medical","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"cuB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/ward) +"cuE" = ( +/obj/structure/grille/broken, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cuF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyerPort"; + name = "Medbay Entrance" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"cuG" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"cuI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cuJ" = ( +/obj/structure/bed, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"cuL" = ( +/obj/machinery/door/airlock/medical/glass{ + id = "paramedic"; + name = "Paramedic" + }, +/obj/machinery/door/firedoor, +/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/mapping_helpers/airlock/polarized{ + id = "paramedic" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/paramedic, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/paramedic) +"cuM" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"cuN" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cuQ" = ( +/turf/simulated/wall, +/area/station/maintenance/asmaint2) +"cuS" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/asmaint2) +"cuW" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"cuZ" = ( +/obj/machinery/light/directional/south, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"cva" = ( +/obj/structure/closet/l3closet/scientist, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"cvb" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"cvc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research Storage" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"cve" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/entry) +"cvf" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"cvl" = ( +/mob/living/simple_animal/mouse/gray, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cvm" = ( +/obj/item/clothing/gloves/color/rainbow, +/obj/item/clothing/shoes/rainbow, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/head/soft/rainbow, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cvp" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/apmaint) +"cvr" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"cvs" = ( +/obj/machinery/door/poddoor{ + id_tag = "toxinsdriver"; + name = "Toxins Launcher Bay Door"; + protected = 0 + }, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"cvt" = ( +/turf/simulated/wall/indestructible/riveted, +/area/station/science/toxins/test) +"cvu" = ( +/obj/structure/table, +/obj/item/analyzer, +/obj/item/healthanalyzer, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cvv" = ( +/obj/machinery/camera{ + c_tag = "Research Toxins Test Chamber East"; + dir = 8; + network = list("Toxins","Research","SS13") + }, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"cvw" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"cvx" = ( +/turf/simulated/wall, +/area/station/engineering/tech_storage) +"cvy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/storage) +"cvz" = ( +/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/station/engineering/supermatter_room) +"cvA" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id_tag = "engsm2"; + name = "SM Radiation Security Lock" + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"cvB" = ( +/obj/effect/spawner/window/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) +"cvC" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/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/station/maintenance/aft) +"cvD" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cvI" = ( +/turf/simulated/wall, +/area/station/public/construction) +"cvM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cvO" = ( +/obj/item/storage/box/monkeycubes/wolpincubes{ + pixel_x = -6 + }, +/obj/item/storage/box/monkeycubes/neaeracubes{ + pixel_x = 8 + }, +/obj/item/storage/box/monkeycubes/farwacubes{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/storage/box/monkeycubes/stokcubes{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/structure/table/glass, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"cvP" = ( +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"cvQ" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"cvS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"cvT" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"cvU" = ( +/obj/structure/table/tray, +/obj/item/storage/firstaid/surgery{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"cvV" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cvW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + 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/plasteel, +/area/station/hallway/primary/port) +"cvY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"cvZ" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "paramedic" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/medical/paramedic) +"cwc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cryo) +"cwg" = ( +/obj/effect/decal/warning_stripes/blue, +/obj/machinery/atmospherics/portable/canister/oxygen{ + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"cwk" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"cwl" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cwo" = ( +/obj/machinery/dna_scannernew, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkpurple" + }, +/area/station/science/genetics) +"cwr" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"cwx" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/incinerator) +"cwy" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/decal/warning_stripes/north, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"cwz" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cwB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos{ + name = "Aft-Port Atmospherics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cwG" = ( +/obj/effect/decal/cleanable/dirt, +/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" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"cwJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"cwK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cwN" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"cwO" = ( +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cwR" = ( +/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/plasteel, +/area/station/maintenance/aft) +"cwS" = ( +/obj/machinery/door/airlock/engineering{ + name = "Toxin Testing EVA Maintenance" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/equipment, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cwU" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"cwY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"cxb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"cxd" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"cxe" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"cxf" = ( +/obj/structure/table, +/obj/item/ashtray/glass{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/machinery/light/directional/north, +/obj/item/reagent_containers/food/drinks/mug/sci{ + desc = "A purple mug with a small piece of duct tape on it that has 'Janitor's' written on it in sharpie. Looks a bit too.. scientific to belong to the Janitor."; + name = "Janitor's mug"; + pixel_x = 6; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/service/janitor) +"cxj" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cloning) +"cxk" = ( +/obj/machinery/atmospherics/binary/valve/digital{ + color = ""; + name = "Gas Mix Inlet Valve" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/station/engineering/atmos) +"cxn" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"cxo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"cxt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/nightshifted/north, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cxu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"cxx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"cxz" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/construction) +"cxA" = ( +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cxB" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"cxD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/storage/paramedic, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cxE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/body_bag, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cxF" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cxH" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"cxJ" = ( +/obj/machinery/door/airlock/virology{ + name = "Virology Bedroom" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/medical/virology, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"cxL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"cxN" = ( +/turf/simulated/wall, +/area/station/science/xenobiology) +"cxO" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/aft) +"cxP" = ( +/obj/machinery/light_switch/north, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"cxT" = ( +/obj/effect/spawner/window/reinforced/tinted/grilled, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/science/genetics) +"cxU" = ( +/obj/machinery/door/window/classic/reversed{ + name = "Primate Pen" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/geneticist, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/genetics, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/station/science/genetics) +"cxW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"cxX" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/station/maintenance/incinerator) +"cyb" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/incinerator) +"cyc" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/vacuum/external{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/incinerator) +"cyd" = ( +/obj/machinery/atmospherics/unary/tank/toxins{ + volume = 3200 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"cye" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/tank/oxygen{ + volume = 3200 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"cyf" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"cyg" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cyh" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cyj" = ( +/obj/structure/grille/broken, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cyk" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/maintenance/apmaint) +"cyn" = ( +/obj/structure/closet/emcloset, +/obj/machinery/alarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/incinerator) +"cyo" = ( +/obj/effect/spawner/window/reinforced/tinted/grilled, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/incinerator) +"cyp" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cyq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"cys" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"cyt" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"cyv" = ( +/obj/structure/chair/comfy/beige, +/obj/effect/landmark/start/chief_engineer, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/break_room) +"cyw" = ( +/obj/machinery/power/apc/engineering/south, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkyellow" + }, +/area/station/engineering/break_room) +"cyx" = ( +/obj/machinery/alarm/directional/north, +/obj/structure/closet/l3closet/janitor, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"cyy" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"cyz" = ( +/obj/machinery/door/airlock/external{ + id_tag = "aisat_door_int"; + locked = 1; + name = "MiniSat External Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"cyA" = ( +/obj/machinery/alarm/directional/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cyB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"cyC" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 14 + }, +/obj/item/storage/box/disks, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"cyD" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"cyF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/item/melee/cultblade/dagger, +/obj/item/skeleton{ + icon_state = "torso" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fsmaint) +"cyG" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/secure_closet/atmos_personal, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"cyH" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cyI" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"cyJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cyK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"cyM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"cyN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"cyO" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/port) +"cyP" = ( +/obj/effect/spawner/random_barrier/obstruction, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cyQ" = ( +/obj/structure/table, +/obj/item/plant_analyzer, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cyS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"cyV" = ( +/obj/effect/spawner/window/reinforced/tinted/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cyW" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/item/reagent_containers/food/drinks/britcup{ + initialized = 1; + list_reagents = list("tea"=15); + pixel_x = 4; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/medbay2) +"cyX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"cyZ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"czb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/medbay2) +"czc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"czd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"cze" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/science/hallway) +"czf" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"czg" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/maintenance/aft) +"czh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Medical Delivery" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"czi" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"czj" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"czn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"czq" = ( +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"czr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"czu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"czw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"czA" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"czB" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/janitor, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/service/janitor) +"czC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"czD" = ( +/obj/structure/closet/radiation, +/obj/machinery/light/directional/north, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"czG" = ( +/obj/structure/table, +/obj/item/kitchen/utensil/pspork, +/obj/item/kitchen/knife/plastic, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/patients_rooms) +"czH" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/incinerator) +"czJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"czK" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"czN" = ( +/obj/machinery/door/airlock{ + name = "Port Emergency Storage" + }, +/obj/structure/cable{ + 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/station/public/storage/emergency/port) +"czO" = ( +/obj/machinery/bodyscanner{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"czQ" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/incinerator) +"czR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/maintenance/apmaint) +"czS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"czT" = ( +/obj/machinery/camera{ + c_tag = "Construction Area"; + dir = 4; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"czV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"czW" = ( +/obj/structure/closet/secure_closet/medical3, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/primary) +"czY" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"cAb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"cAd" = ( +/obj/item/flashlight, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cAe" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cAg" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/turretid/stun{ + control_area = "\improper AI Satellite Antechamber"; + name = "AI Antechamber Turret Control"; + pixel_y = -24; + req_one_access_txt = "75" + }, +/obj/machinery/camera/motion{ + c_tag = "Mini Satellite Antechamber Center"; + dir = 1; + network = list("SS13","MiniSat") + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"cAi" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"cAl" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/service/janitor) +"cAm" = ( +/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/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"cAo" = ( +/obj/machinery/light/small/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/atmos) +"cAp" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cAq" = ( +/obj/machinery/light_switch/south, +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"cAu" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cAv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"cAw" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cAz" = ( +/obj/effect/spawner/random_barrier/possibly_welded_airlock, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cAB" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/aft) +"cAC" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Virology Lobby"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/medbay2) +"cAD" = ( +/obj/structure/table/glass, +/obj/item/storage/box/syringes, +/obj/machinery/newscaster/directional/south, +/obj/item/book/manual/wiki/sop_science, +/turf/simulated/floor/plasteel{ + icon_state = "darkpurple" + }, +/area/station/science/genetics) +"cAG" = ( +/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/plasteel{ + dir = 4; + icon_state = "darkpurple" + }, +/area/station/science/genetics) +"cAI" = ( +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/hallway/primary/central/se) +"cAK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cAL" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/railing{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cAN" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cAO" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"cAP" = ( +/turf/simulated/wall/r_wall, +/area/station/science/misc_lab) +"cAR" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + autolink_id = "o2_in"; + dir = 1 + }, +/turf/simulated/floor/engine/o2, +/area/station/engineering/atmos) +"cAS" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"cAT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Closet" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"cAU" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cAW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"cAY" = ( +/obj/structure/chair, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cBe" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cBi" = ( +/obj/machinery/door/poddoor{ + id_tag = "disvent"; + name = "Incinerator Vent" + }, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"cBj" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/sign/fire{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8 + }, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"cBk" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/station/engineering/tech_storage) +"cBl" = ( +/obj/machinery/alarm/directional/west, +/obj/machinery/camera/motion{ + c_tag = "AI Satellite Hallway"; + dir = 4; + network = list("SS13","MiniSat") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/bluegrid, +/area/station/aisat/hall) +"cBn" = ( +/obj/machinery/light_switch/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"cBp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"cBq" = ( +/obj/structure/table, +/obj/item/mounted/frame/apc_frame, +/obj/machinery/alarm/directional/west, +/obj/machinery/camera{ + c_tag = "Engineering Drone Fabricator Room"; + dir = 4; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"cBr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/electricshock{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cBs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"cBt" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/smes) +"cBu" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cBv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"cBB" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"cBC" = ( +/obj/structure/table, +/obj/item/electropack, +/obj/item/assembly/signaler, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/misc_lab) +"cBD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/security/lobby) +"cBE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"cBF" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"cBG" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/maintenance/asmaint2) +"cBH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"cBJ" = ( +/obj/machinery/light_switch/south, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"cBL" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/closet/jcloset, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"cBN" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cBQ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cBR" = ( +/turf/simulated/wall/r_wall, +/area/station/science/xenobiology) +"cBS" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "telescienceblast"; + name = "test chamber blast doors" + }, +/turf/simulated/floor/plating, +/area/station/science/explab) +"cBU" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"cBY" = ( +/turf/simulated/wall/r_wall, +/area/station/aisat/atmos) +"cBZ" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/landmark/start/janitor, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/service/janitor) +"cCa" = ( +/obj/item/storage/bag/trash{ + pixel_x = 6 + }, +/obj/structure/closet/crate/trashcart, +/obj/item/storage/bag/trash{ + pixel_y = 5 + }, +/obj/item/storage/bag/trash{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/service/janitor) +"cCc" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "testlab"; + name = "Testing Lab Shutters" + }, +/turf/simulated/floor/plating, +/area/station/science/misc_lab) +"cCf" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"cCh" = ( +/obj/structure/transit_tube{ + icon_state = "N-SE" + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"cCi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Test Lab" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/science/tox, +/turf/simulated/floor/plasteel, +/area/station/science/misc_lab) +"cCo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cCp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" + }, +/area/station/engineering/aitransit) +"cCq" = ( +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"cCw" = ( +/obj/machinery/igniter{ + id = "Incinerator" + }, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"cCz" = ( +/obj/effect/decal/remains/human{ + desc = "This guy seemed to have died in terrible way! Half his remains are dust."; + name = "Human remains" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/spawner/xeno, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"cCC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + name = "Incinerator Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/incinerator) +"cCD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"cCI" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"cCJ" = ( +/obj/item/bedsheet/purple, +/obj/structure/bed, +/obj/item/toy/plushie/purple_fox, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"cCK" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/service/janitor) +"cCL" = ( +/obj/structure/closet/crate/can, +/turf/simulated/floor/plating, +/area/station/service/janitor) +"cCO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/turretid/stun{ + control_area = "\improper AI Satellite Hallway"; + name = "AI Chamber Hallway Turret Control"; + pixel_x = 24; + pixel_y = -24; + req_one_access_txt = "75" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"cCQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"cCR" = ( +/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" + }, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"cCT" = ( +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"cCU" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"cCV" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"cCW" = ( +/turf/simulated/wall, +/area/station/medical/surgery/primary) +"cCX" = ( +/obj/structure/closet/emcloset, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"cDa" = ( +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/service/janitor) +"cDc" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + autolink_id = "tox_in"; + dir = 1 + }, +/turf/simulated/floor/engine/plasma, +/area/station/engineering/atmos) +"cDe" = ( +/obj/structure/rack, +/obj/item/assembly/igniter{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/assembly/igniter{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/assembly/igniter{ + pixel_x = -2 + }, +/obj/item/assembly/igniter{ + pixel_y = -1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/misc_lab) +"cDf" = ( +/turf/simulated/wall, +/area/station/medical/surgery/secondary) +"cDg" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/obj/item/clothing/glasses/welding, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "purple" + }, +/area/station/maintenance/asmaint2) +"cDi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"cDj" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/structure/closet/crate/can, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"cDk" = ( +/turf/simulated/wall, +/area/station/aisat/hall) +"cDl" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/station/engineering/supermatter_room) +"cDm" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/aft) +"cDo" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cDp" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"cDt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/misc_lab) +"cDv" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/camera{ + c_tag = "Research Genetics"; + dir = 1; + network = list("SS13","Research") + }, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkpurple" + }, +/area/station/science/genetics) +"cDw" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/misc_lab) +"cDx" = ( +/turf/simulated/floor/plasteel/stairs/left, +/area/station/hallway/primary/aft) +"cDz" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"cDA" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cDC" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"cDD" = ( +/obj/structure/table, +/obj/item/healthanalyzer/advanced, +/obj/machinery/camera{ + c_tag = "Research Test Lab"; + network = list("Research","SS13") + }, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/misc_lab) +"cDE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/gravitygenerator) +"cDF" = ( +/obj/machinery/chem_heater, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"cDG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/misc_lab) +"cDH" = ( +/obj/machinery/chem_dispenser, +/obj/item/reagent_containers/glass/beaker/large, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"cDI" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"cDL" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"cDN" = ( +/obj/machinery/camera{ + c_tag = "Research Toxins Test Chamber South"; + dir = 1; + network = list("Toxins","Research","SS13") + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"cDO" = ( +/obj/structure/sign/poster/contraband/random/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"cDP" = ( +/obj/machinery/atmospherics/unary/passive_vent{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"cDQ" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"cDR" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cDS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"cDU" = ( +/obj/structure/sign/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"cDV" = ( +/obj/machinery/door_control/shutter/south{ + id = "disvent"; + name = "Incinerator Vent Control"; + req_one_access_txt = "12" + }, +/obj/machinery/atmospherics/meter, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"cDW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"cDX" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"cDY" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cDZ" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"cEa" = ( +/obj/machinery/door/airlock/external{ + id_tag = "aisat_door_ext"; + locked = 1; + name = "MiniSat External Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"cEb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cEd" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"cEe" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/t_scanner, +/obj/item/clothing/glasses/meson, +/obj/item/multitool, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cEi" = ( +/obj/machinery/power/emitter, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"cEj" = ( +/obj/machinery/light/directional/south, +/obj/machinery/economy/vending/janidrobe, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"cEk" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"cEn" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 30 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"cEp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/maintenance/aft) +"cEr" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/break_room) +"cEs" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"cEu" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/misc_lab) +"cEv" = ( +/obj/machinery/space_heater, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cEx" = ( +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/aft) +"cEy" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/loading_area, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/engineering/control) +"cEz" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Custodial Closet" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/janitor{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + location = "Janitor" + }, +/turf/simulated/floor/plating, +/area/station/service/janitor) +"cEB" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/maintenance/aft) +"cED" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table_frame, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/poster/official/healthy{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitehall" + }, +/area/station/maintenance/aft) +"cEE" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cEH" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"cEJ" = ( +/obj/effect/decal/warning_stripes/white/hollow, +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"cEL" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA" + }, +/turf/simulated/wall, +/area/station/hallway/secondary/entry) +"cEM" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/engineering/control) +"cES" = ( +/obj/structure/table, +/obj/item/rcs, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"cEV" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/permabrig) +"cFb" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"cFc" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/safety_eye_protection{ + pixel_x = -29 + }, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"cFh" = ( +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"cFm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"cFn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"cFo" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/portables_connector{ + layer = 2 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cFu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/portables_connector{ + layer = 2 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cFz" = ( +/obj/machinery/hologram/holopad, +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/landmark/start/chief_medical_officer, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"cFA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cFB" = ( +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"cFF" = ( +/obj/structure/chair/stool, +/obj/structure/sign/pods{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"cFG" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"cFI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Test Lab" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/tox, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/misc_lab) +"cFJ" = ( +/obj/machinery/status_display/directional/north, +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"cFM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/meter{ + layer = 2.9 + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos) +"cFP" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cFQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/meter, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/maintcentral2) +"cFT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/kitchen/utensil/fork{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/kitchen/utensil/spoon{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Kitchen" + }, +/obj/item/kitchen/utensil/fork{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/kitchen/utensil/fork{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/kitchen/utensil/fork{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/kitchen/utensil/fork{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/kitchen/utensil/spoon{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/kitchen/utensil/spoon{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/kitchen/utensil/spoon{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/kitchen/utensil/spoon{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "kitchenbar"; + name = "Kitchen Shutters" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"cFU" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/misc_lab) +"cFX" = ( +/obj/machinery/door/airlock/welded{ + name = "Maintenance Airlock" + }, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cFY" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/misc_lab) +"cFZ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/beakers, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"cGa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/misc_lab) +"cGd" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/syringes, +/obj/item/storage/box/syringes, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper/precision, +/obj/item/reagent_containers/dropper/precision, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"cGi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/engineering/atmos) +"cGl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cGq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"cGr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"cGs" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"cGt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/mob/living/simple_animal/bot/floorbot{ + on = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/atmos) +"cGv" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/borgupload{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/circuitboard/aiupload{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkyellow" + }, +/area/station/engineering/tech_storage) +"cGw" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medical Supplies" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) +"cGz" = ( +/obj/machinery/computer/rdconsole/experiment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"cGB" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/explab) +"cGD" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/eftpos/register, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cGE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"cGJ" = ( +/obj/item/kirbyplants, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cGK" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos/control) +"cGL" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay2) +"cGN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/portables_connector{ + layer = 2 + }, +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cGR" = ( +/obj/machinery/photocopier{ + toner = 0 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"cGS" = ( +/obj/structure/table, +/obj/item/camera, +/obj/machinery/light_switch/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"cGT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/landmark/start/explorer, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"cGU" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"cGV" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/closet/secure_closet/expedition, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"cGW" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "scibomb_vent"; + dir = 8 + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "scibomb_btn_ext"; + ext_door_link_id = "scibomb_door_ext"; + int_button_link_id = "scibomb_btn_int"; + int_door_link_id = "scibomb_door_int"; + pixel_y = 27; + req_one_access_txt = "13"; + vent_link_id = "scibomb_vent" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cGY" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"cGZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start/explorer, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"cHa" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/break_room) +"cHb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/ai_status_display/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cHd" = ( +/obj/structure/table_frame, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cHe" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/aft) +"cHf" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cHk" = ( +/turf/simulated/wall, +/area/station/engineering/equipmentstorage) +"cHm" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"cHn" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/folder, +/obj/item/radio, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"cHo" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/misc_lab) +"cHp" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/misc_lab) +"cHq" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/misc_lab) +"cHr" = ( +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"cHs" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"cHt" = ( +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"cHu" = ( +/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/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"cHv" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cHw" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/misc_lab) +"cHz" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/explab) +"cHA" = ( +/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/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/explab) +"cHC" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"cHD" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"cHG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"cHH" = ( +/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/plasteel{ + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cHL" = ( +/obj/item/radio/intercom/locked/prison{ + dir = 8; + name = "Prison Intercom (General)"; + pixel_x = 22 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"cHM" = ( +/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/plasteel{ + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cHN" = ( +/obj/effect/decal/warning_stripes/east, +/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/plating/airless, +/area/space/nearstation) +"cHO" = ( +/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/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cHP" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"cHQ" = ( +/turf/simulated/wall, +/area/station/engineering/break_room) +"cHR" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"cHS" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 4; + filter_type = 4; + name = "Gas filter (N2O tank)"; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"cHT" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"cHU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"cHW" = ( +/obj/machinery/door/airlock/bathroom{ + name = "Private Restroom"; + id_tag = "toilet_sec_2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/security/main) +"cHX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"cHZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table_frame, +/obj/structure/sign/chemistry{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/station/maintenance/aft) +"cIa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/splatter, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/aft) +"cId" = ( +/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/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"cIf" = ( +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/turf/simulated/floor/engine/n20, +/area/station/engineering/atmos) +"cIg" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/cloning{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/circuitboard/clonescanner{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/circuitboard/clonepod{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/circuitboard/cryo_tube{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/circuitboard/pandemic{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/circuitboard/bodyscanner{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/circuitboard/sleeper{ + pixel_x = 9; + pixel_y = -9 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cIh" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/rdconsole{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/circuitboard/rdserver{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/destructive_analyzer, +/obj/item/circuitboard/protolathe{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/circuitboard/circuit_imprinter{ + pixel_x = 6; + pixel_y = -6 + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cIi" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cIj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"cIl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/shreds, +/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, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cIm" = ( +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"cIn" = ( +/obj/structure/table, +/obj/item/storage/bag/money, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/aft) +"cIo" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/key/janitor, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/structure/reagent_dispensers/spacecleanertank/north, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"cIp" = ( +/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/carpet, +/area/station/service/library) +"cIr" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cIs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/binary/valve{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"cIt" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Containment Pen" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio6"; + name = "Chamber 6 Containment Blast Doors" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"cIu" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cIv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"cIw" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"cIy" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"cIC" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 1 + }, +/obj/effect/turf_decal/bot_red, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Testing Chamber Delivery Chute" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/tox{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/misc_lab) +"cID" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/computer/security/telescreen/research{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/misc_lab) +"cIE" = ( +/obj/structure/table/reinforced, +/obj/machinery/ignition_switch{ + id = "testigniter"; + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/door_control/shutter{ + id = "RnDChem"; + name = "Chamber Blast Doors"; + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/misc_lab) +"cIF" = ( +/obj/structure/table/reinforced, +/obj/item/taperecorder, +/obj/item/tape/random{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/simple/insulated, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/misc_lab) +"cIK" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"cIL" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/robotics) +"cIN" = ( +/obj/machinery/door/airlock/maintenance{ + name = "E.X.P.E.R.I-MENTOR Lab Maintenance" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cIO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door_control/shutter/south{ + id = "telescienceblast"; + name = "Test Chamber Blast Doors" + }, +/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/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/explab) +"cIS" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/door_control/shutter/north{ + desc = "A remote control-switch for the engineering lobby emergency supply room."; + id = "engemergencyeva"; + name = "Lobby Emergency Supply"; + pixel_x = -6; + req_access_txt = "32" + }, +/obj/machinery/door_control/normal/north{ + desc = "A remote control-switch for the engineering lobby doors."; + id = "englobby"; + name = "Lobby Entrance"; + pixel_x = 6; + req_access_txt = "32" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/controlroom) +"cIT" = ( +/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, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"cIV" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cIW" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/secure_data{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/circuitboard/camera{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/circuitboard/prisoner{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cIX" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/autolathe{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/circuitboard/ore_redemption{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cIY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cIZ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "stairs-r" + }, +/area/station/hallway/primary/central/ne) +"cJa" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cJb" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"cJg" = ( +/obj/structure/table, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/machinery/camera{ + c_tag = "Engineering Atmos SM Equipment Room"; + dir = 1; + network = list("SS13","Engineering") + }, +/obj/machinery/door_control/shutter/south{ + desc = "A remote control-switch for the SM Radiation Security Shutters"; + id = "engsm2"; + name = "SM Door Radiation Shutters Control" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"cJi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/maintenance/apmaint) +"cJo" = ( +/obj/machinery/door/firedoor, +/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/machinery/door/airlock/engineering/glass{ + id_tag = "englobby"; + name = "Engineering" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/hallway) +"cJp" = ( +/obj/structure/table, +/obj/item/t_scanner, +/obj/item/multitool{ + pixel_x = 5 + }, +/obj/item/radio/headset/headset_eng, +/obj/item/t_scanner, +/obj/item/wrench, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/storage) +"cJq" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/message_monitor{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/circuitboard/aifixer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/teleporter, +/obj/item/circuitboard/teleporter_hub{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/circuitboard/teleporter_station{ + pixel_x = 6; + pixel_y = -6 + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cJt" = ( +/turf/simulated/floor/carpet, +/area/station/maintenance/aft) +"cJu" = ( +/obj/structure/closet/secure_closet/reagents, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cJv" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/maintenance/aft) +"cJx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"cJy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cJz" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door_control/shutter{ + id = "xenobio6"; + name = "Chamber 6 Containment Blast Doors"; + pixel_y = 4; + req_one_access_txt = "55" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cJA" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm/directional/west, +/obj/machinery/camera/motion{ + c_tag = "EVA Motion Sensor"; + dir = 4 + }, +/obj/item/book/manual/evaguide, +/obj/item/stack/tape_roll, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"cJC" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"cJD" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cJE" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"cJF" = ( +/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/plasteel, +/area/station/engineering/hallway) +"cJG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/splatter, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cJH" = ( +/obj/structure/table/reinforced, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"cJK" = ( +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"cJL" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Module Chamber 5"; + network = list("Research","SS13") + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"cJM" = ( +/obj/item/radio/intercom/custom{ + pixel_x = -28; + pixel_y = -10 + }, +/obj/item/radio/intercom/private{ + pixel_x = 28; + pixel_y = -10 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + name = "AI Requests Console"; + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/landmark/start/ai, +/obj/machinery/newscaster/security_unit{ + name = "AI newscaster"; + pixel_x = -32; + pixel_y = -32 + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai) +"cJO" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cJP" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "RnDChem"; + name = "Biohazard Shutter" + }, +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"cJQ" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cJT" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "RnDChem"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/airlock/research/glass{ + name = "Test Chamber" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/tox, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/misc_lab) +"cKb" = ( +/turf/simulated/wall, +/area/station/maintenance/assembly_line) +"cKc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cKg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"cKi" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/effect/decal/cleanable/dirt, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cKk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction/reversed{ + dir = 8; + name = "Eng Atmospherics"; + sort_type_txt = "6" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"cKr" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cKs" = ( +/obj/structure/closet, +/obj/item/storage/bag/trash, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cKu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"cKv" = ( +/obj/machinery/light/directional/north, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"cKy" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cKz" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/cyborgrecharger{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/circuitboard/mech_bay_power_console{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/circuitboard/mech_recharger, +/obj/item/circuitboard/mechfab{ + pixel_y = 3 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cKD" = ( +/obj/machinery/door/airlock/medical{ + locked = 1; + name = "Abandoned Chemistry"; + req_one_access_txt = "33" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cKE" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/asmaint) +"cKF" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cKK" = ( +/obj/effect/decal/warning_stripes/north, +/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/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"cKO" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cKQ" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cKS" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"cKT" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"cKU" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cKV" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay South"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/storage) +"cKX" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/tech_storage) +"cLa" = ( +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"cLb" = ( +/turf/simulated/wall/r_wall, +/area/station/science/test_chamber) +"cLc" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cLd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/assembly_line) +"cLe" = ( +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"cLf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/south{ + id = "Skynet_heavy" + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"cLh" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cLi" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cLj" = ( +/obj/effect/turf_decal/bot_red, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"cLn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"cLq" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on{ + autolink_id = "tox_out"; + dir = 1; + external_pressure_bound = 0; + internal_pressure_bound = 2000; + pressure_checks = 2 + }, +/turf/simulated/floor/engine/plasma, +/area/station/engineering/atmos) +"cLu" = ( +/obj/effect/spawner/window/reinforced/tinted/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cLw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cLx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cLy" = ( +/obj/structure/sign/vacuum/external{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"cLz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + locked = 1; + name = "Assembly Line (KEEP OUT)" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"cLA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Atmospherics" + }, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/atmos) +"cLB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"cLC" = ( +/obj/machinery/power/grounding_rod{ + anchored = 1 + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cLD" = ( +/obj/structure/table, +/obj/item/lightreplacer, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cLE" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/wrench, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"cLF" = ( +/obj/structure/largecrate, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"cLG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/assembly_line) +"cLJ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cLK" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/computer/monitor{ + dir = 8; + name = "Grid Power Monitoring Computer" + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/atmos) +"cLM" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cLR" = ( +/obj/item/storage/toolbox/emergency, +/obj/structure/table, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cLS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"cLT" = ( +/obj/structure/dispenser, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"cLV" = ( +/obj/machinery/atmospherics/portable/canister/toxins, +/turf/simulated/floor/engine/plasma, +/area/station/engineering/atmos) +"cMa" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/trinary/filter/flipped{ + dir = 4; + filter_type = -1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"cMd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/storage/box/syringes, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/maintenance/aft) +"cMr" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cMx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/south{ + id = "Skynet_heavy" + }, +/obj/machinery/camera{ + c_tag = "Engineering Assembly Line"; + dir = 9; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"cMy" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/assembly_line) +"cMz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start/explorer, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"cMB" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = 3; + pixel_y = -5 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"cME" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/south{ + id = "Skynet_heavy" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"cMG" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cMJ" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Containment Pen" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio7"; + name = "Chamber 7 Containment Blast Doors" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"cMK" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"cMN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"cMO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/maintenance/aft) +"cMQ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio7"; + name = "Chamber 7 Containment Blast Doors" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"cMS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cMU" = ( +/obj/structure/table/reinforced, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"cMV" = ( +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"cMX" = ( +/obj/machinery/camera{ + c_tag = "Secure Tech Storage"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/tech_storage) +"cMY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"cNh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cNi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/alarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/station/maintenance/asmaint2) +"cNl" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cNt" = ( +/obj/machinery/atmospherics/portable/pump, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cNv" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "aisat_vent"; + dir = 4 + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "aisat_btn_ext"; + ext_door_link_id = "aisat_door_ext"; + int_button_link_id = "aisat_btn_int"; + int_door_link_id = "aisat_door_int"; + pixel_y = 25; + vent_link_id = "aisat_vent" + }, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"cNw" = ( +/obj/machinery/atmospherics/binary/valve/digital/open{ + name = "Mixed Air Outlet Valve" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "arrival" + }, +/area/station/engineering/atmos) +"cNx" = ( +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"cNA" = ( +/obj/machinery/atmospherics/binary/valve/open{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cNB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cND" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"cNE" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"cNG" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/assembly_line) +"cNJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"cNK" = ( +/obj/structure/barricade/wooden{ + layer = 4 + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/station/maintenance/assembly_line) +"cNM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/space, +/area/station/engineering/solar/port) +"cNO" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/hallway) +"cNP" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/tech_storage) +"cNS" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"cNT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"cNU" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"cNV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"cNX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"cNY" = ( +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"cNZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/assembly_line) +"cOb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"cOd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/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 + }, +/turf/simulated/floor/carpet, +/area/station/service/library) +"cOe" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/aitransit) +"cOf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/hallway) +"cOh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cOi" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/hallway) +"cOj" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter South"; + dir = 1; + network = list("SS13","engine","Engineering") + }, +/obj/structure/sign/poster/official/random/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"cOk" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/engineering/hallway) +"cOl" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/crew{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/circuitboard/card{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/circuitboard/communications{ + pixel_x = 5; + pixel_y = -5 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellow" + }, +/area/station/engineering/tech_storage) +"cOm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cOn" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"cOq" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cOr" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/assembly_line) +"cOt" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cOu" = ( +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"cOx" = ( +/obj/machinery/door/poddoor/shutters{ + id_tag = "maint_house" + }, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/obj/machinery/door_control/shutter/north{ + id = "maint_house"; + name = "shutter door controller" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cOy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/east{ + id = "Skynet_heavy" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"cOz" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/grilled, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/assembly_line) +"cOA" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"cOB" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Unfiltered to Mix" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cOC" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"cOE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Drone Fabricator Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/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/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"cOF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/break_room) +"cOG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"cOH" = ( +/obj/structure/particle_accelerator/particle_emitter/right{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/control) +"cOI" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"cON" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"cOT" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cOU" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cOW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"cOY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/general{ + dir = 4 + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 4; + name = "Suit Storage" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/equipmentstorage) +"cOZ" = ( +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"cPb" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "paramedic" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/medical/paramedic) +"cPc" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cPj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cPk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/station/engineering/control) +"cPn" = ( +/obj/machinery/power/grounding_rod{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cPo" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/hallway) +"cPq" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/hall) +"cPr" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Singularity"; + name = "Singularity Blast Doors" + }, +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"cPs" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/break_room) +"cPu" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/portsolar) +"cPx" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_4) +"cPy" = ( +/obj/machinery/power/apc/super/north, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"cPz" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm/directional/south, +/obj/item/clothing/mask/gas, +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Area control access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/tox{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"cPA" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/power/apc/directional/south, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"cPB" = ( +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/controlroom) +"cPD" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/sign/atmosplaque{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"cPE" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"cPG" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cPH" = ( +/obj/structure/railing/cap/normal{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"cPI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cPM" = ( +/obj/machinery/door/firedoor, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cPN" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Engineering Lobby West"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"cPO" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cPP" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/break_room) +"cPQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"cPS" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"cPT" = ( +/obj/structure/cable, +/obj/machinery/power/turbine, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/engine/vacuum, +/area/station/maintenance/turbine) +"cPU" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cPV" = ( +/obj/structure/particle_accelerator/particle_emitter/center{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/control) +"cPW" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cPX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"cPZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cQe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/supermatter_room) +"cQg" = ( +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Engineering Atmos East"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"cQi" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Singularity"; + name = "Singularity Blast Doors" + }, +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"cQj" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable{ + 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/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/control) +"cQk" = ( +/turf/simulated/wall/r_wall, +/area/station/medical/virology) +"cQm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/storage/belt/utility, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"cQn" = ( +/turf/simulated/wall, +/area/station/medical/virology) +"cQo" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cQp" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Port"; + dir = 4; + network = list("SS13","engine","Engineering") + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"cQr" = ( +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cQs" = ( +/obj/item/wrench, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cQu" = ( +/obj/item/toy/plushie/slimeplushie, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cQw" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/asmaint) +"cQx" = ( +/obj/effect/spawner/random_barrier/possibly_welded_airlock, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"cQy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cQB" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "purple" + }, +/area/station/science/hallway) +"cQC" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cQE" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cQH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"cQI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/storage) +"cQJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/plasteel/stairs/left, +/area/station/engineering/control) +"cQK" = ( +/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/machinery/hologram/holopad{ + pixel_x = 16 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cQL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cQM" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cQN" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/hallway) +"cQO" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/hallway) +"cQP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/hallway) +"cQR" = ( +/obj/structure/chair/wheelchair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"cQS" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"cQT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"cQU" = ( +/obj/machinery/light/directional/north, +/obj/machinery/status_display/directional/north, +/obj/structure/engineeringcart, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"cQW" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/engineering/break_room) +"cQX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/service) +"cQZ" = ( +/obj/structure/curtain/open/shower{ + anchored = 1 + }, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/effect/decal/cleanable/dust, +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/fsmaint) +"cRa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"cRe" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"cRf" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "yellow" + }, +/area/station/engineering/smes) +"cRh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"cRi" = ( +/obj/machinery/atmospherics/portable/canister/carbon_dioxide, +/turf/simulated/floor/engine/co2, +/area/station/engineering/atmos) +"cRj" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "External Gas to Loop" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"cRk" = ( +/obj/machinery/power/tesla_coil{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cRl" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"cRo" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/alarm/directional/north, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"cRp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"cRq" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"cRr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"cRw" = ( +/obj/structure/dispenser{ + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes/blue/hollow, +/obj/machinery/power/apc/engineering/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"cRy" = ( +/obj/effect/decal/cleanable/blood/gibs/robot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/extinguisher{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cRz" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cRA" = ( +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cRB" = ( +/obj/item/pickaxe, +/turf/simulated/floor/plating, +/area/station/command/office/ntrep) +"cRC" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cRE" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cRJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cRK" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/effect/landmark/spawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cRL" = ( +/obj/structure/girder, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cRM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cRN" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/head/welding, +/obj/item/storage/belt/utility, +/obj/item/multitool, +/obj/item/radio/intercom/directional/east, +/obj/effect/decal/warning_stripes/white/hollow, +/obj/item/storage/belt/utility, +/obj/item/multitool, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"cRO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cRP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cRR" = ( +/turf/simulated/wall/r_wall, +/area/station/command/office/ce) +"cRS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/hallway) +"cRT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/station/engineering/hallway) +"cRU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/hallway) +"cRV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/hallway) +"cRX" = ( +/obj/structure/sign/poster/official/random/north, +/obj/machinery/camera{ + c_tag = "Engineering Foyer East"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/station/engineering/hallway) +"cRY" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio7"; + name = "Chamber 7 Containment Blast Doors" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio6"; + name = "Chamber 6 Containment Blast Doors" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"cSa" = ( +/obj/item/radio/intercom/directional/south, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cSb" = ( +/obj/structure/table, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/wirecutters, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"cSd" = ( +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cSf" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cSh" = ( +/obj/structure/table, +/obj/item/clothing/glasses/science{ + pixel_y = 4 + }, +/obj/item/clothing/glasses/science, +/obj/structure/sign/poster/official/safety_eye_protection{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cSl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/atmos/control) +"cSm" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"cSp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "escape" + }, +/area/station/engineering/atmos) +"cSq" = ( +/obj/machinery/power/apc/engineering/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/hallway) +"cSr" = ( +/obj/effect/decal/warning_stripes/yellow/partial, +/obj/machinery/door_control/shutter/west{ + desc = "A remote control-switch for the engineering lobby emergency supply room."; + id = "engemergencyeva"; + name = "Lobby Emergency Supply"; + pixel_y = 6; + req_access_txt = "32" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"cSs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/wrench, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/engineering/gravitygenerator) +"cSt" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"cSv" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"cSw" = ( +/turf/simulated/floor/engine/vacuum, +/area/station/engineering/atmos) +"cSx" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/smes) +"cSz" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cSA" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"cSE" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"cSF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/engineering/gravitygenerator) +"cSG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cSH" = ( +/obj/machinery/processor{ + name = "Slime Processor" + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Module North"; + network = list("Research","SS13") + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cSI" = ( +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"cSJ" = ( +/obj/machinery/door/firedoor, +/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, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cSK" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/effect/decal/warning_stripes/south, +/obj/machinery/computer/general_air_control/large_tank_control{ + autolink_sensors = list("tox_sensor"="Tank"); + dir = 1; + inlet_injector_autolink_id = "tox_in"; + name = "Toxin Supply Control"; + outlet_vent_autolink_id = "tox_out" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cSM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/atmos/control) +"cSN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/gravitygenerator) +"cSO" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Fore"; + dir = 1; + network = list("SS13","engine","Engineering") + }, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"cSP" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"cSQ" = ( +/obj/structure/table/glass, +/obj/item/paper{ + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"cSR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"cST" = ( +/obj/item/beach_ball/holoball, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cSU" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/control) +"cSV" = ( +/obj/machinery/ai_status_display/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/station/public/mrchangs) +"cSW" = ( +/obj/structure/statue/chickenstatue, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/carpet, +/area/station/public/mrchangs) +"cSX" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"cSY" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/stairs{ + icon_state = "rampbottom" + }, +/area/station/engineering/supermatter_room) +"cSZ" = ( +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/break_room) +"cTa" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/break_room) +"cTf" = ( +/obj/structure/table, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/item/storage/belt/utility{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/belt/utility, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"cTg" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/service) +"cTh" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cTi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/service) +"cTj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cTl" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cTm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"cTn" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/space, +/area/space/nearstation) +"cTo" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/gravitygenerator) +"cTp" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/field/generator, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"cTq" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/break_room) +"cTr" = ( +/obj/machinery/camera{ + active_power_consumption = 0; + c_tag = "Turbine Vent"; + dir = 6; + network = list("Turbine") + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"cTs" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"cTt" = ( +/obj/machinery/atmospherics/binary/volume_pump/on{ + dir = 8; + name = "Mix to Filter" + }, +/obj/machinery/camera{ + c_tag = "Engineering Atmospherics Control Room"; + network = list("SS13","Engineering") + }, +/obj/structure/closet/fireaxecabinet{ + pixel_y = 28 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/atmos/control) +"cTv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/papershredder, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"cTw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"cTA" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Mix to Distro" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"cTB" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cTD" = ( +/obj/machinery/field/generator, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"cTE" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"cTF" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/item/radio/alternative{ + pixel_y = 4; + pixel_x = -8 + }, +/obj/item/radio/alternative{ + pixel_y = 4 + }, +/obj/item/radio/alternative{ + pixel_x = 8; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"cTG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"cTH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/equipmentstorage) +"cTI" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/equipmentstorage) +"cTM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"cTN" = ( +/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, +/turf/simulated/floor/plasteel/stairs/left, +/area/station/engineering/hallway) +"cTO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"cTP" = ( +/obj/structure/table, +/obj/item/apc_electronics, +/obj/item/airlock_electronics, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"cTT" = ( +/obj/structure/table, +/obj/machinery/status_display/directional/north, +/obj/item/radio/alternative{ + pixel_y = 6; + pixel_x = -8 + }, +/obj/item/radio/alternative{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/radio/alternative{ + pixel_y = 12 + }, +/obj/item/radio/alternative, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/hallway) +"cTU" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cTV" = ( +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Engineering Chief Engineer's Office"; + dir = 1 + }, +/obj/machinery/keycard_auth/south, +/obj/machinery/computer/security/engineering{ + dir = 1; + network = list("Power Alarms","Atmosphere Alarms","Fire Alarms","Engineering","Singularity","engine") + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/office/ce) +"cTW" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/starboard) +"cUc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/southeast/ccw{ + id = "Skynet_heavy" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"cUd" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cUe" = ( +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "n2o_sensor"; + output = 127 + }, +/turf/simulated/floor/engine/n20, +/area/station/engineering/atmos) +"cUg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"cUh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cUi" = ( +/obj/structure/chair/wood, +/turf/simulated/floor/carpet, +/area/station/public/mrchangs) +"cUj" = ( +/obj/machinery/power/apc/engineering/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/engineering/gravitygenerator) +"cUk" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/engineering/hallway) +"cUl" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/atmos/control) +"cUm" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/hallway) +"cUo" = ( +/obj/machinery/computer/atmoscontrol{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"cUq" = ( +/obj/structure/disposalpipe/junction/y{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"cUs" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/economy/vending/tool/free, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/hallway) +"cUt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cUu" = ( +/obj/structure/sign/vacuum, +/turf/simulated/wall/r_wall, +/area/station/engineering/control) +"cUv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cUw" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cUx" = ( +/turf/simulated/wall, +/area/station/engineering/emergency) +"cUy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 8 + }, +/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/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"cUz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"cUL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"cUM" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"cUN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cUQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cUR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"cUS" = ( +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cUT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/virology) +"cUV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cVb" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "enginestorage"; + name = "Engine Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/control) +"cVd" = ( +/turf/simulated/wall/r_wall, +/area/station/aisat/hall) +"cVh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cVi" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cVj" = ( +/obj/structure/table, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/storage/belt/utility, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/equipmentstorage) +"cVk" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + density = 0; + dir = 8; + icon_state = "open"; + id_tag = "blueshield"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/office/blueshield) +"cVl" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cVm" = ( +/obj/machinery/power/emitter{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cVn" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/access_button{ + autolink_id = "eng_n_tesla_btn_ext"; + pixel_x = 25; + pixel_y = -25; + req_access_txt = "10;13" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cVo" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "enginestorage"; + name = "Engine Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/control) +"cVp" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"cVs" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on{ + autolink_id = "waste_out"; + dir = 1; + external_pressure_bound = 0; + internal_pressure_bound = 2000; + pressure_checks = 2 + }, +/turf/simulated/floor/engine/vacuum, +/area/station/engineering/atmos) +"cVw" = ( +/obj/machinery/camera{ + c_tag = "Engineering SMES Room"; + dir = 1; + network = list("SS13","Engineering") + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/smes) +"cVy" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/engineering/south, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/engineering/smes) +"cVB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/space/nearstation) +"cVE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"cVF" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/geiger_counter, +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"cVH" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/engineering/aitransit) +"cVI" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/break_room) +"cVJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/break_room) +"cVL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/turf/simulated/floor/plating, +/area/station/engineering/break_room) +"cVM" = ( +/turf/simulated/floor/plating, +/area/station/engineering/break_room) +"cVN" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"cVP" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"cVQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/equipmentstorage) +"cVR" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cVS" = ( +/obj/machinery/alarm/directional/north, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/machinery/camera{ + c_tag = "Engineering Atmos Storage"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"cVT" = ( +/obj/structure/sign/fire, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"cVU" = ( +/obj/structure/table, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding{ + layer = 8 + }, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/storage) +"cVV" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"cWf" = ( +/obj/machinery/power/tesla_coil{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cWh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"cWj" = ( +/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, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/hallway) +"cWl" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"cWm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/atmospherics/portable/canister, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"cWp" = ( +/obj/machinery/camera{ + c_tag = "Engineering Break Room"; + dir = 4; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/break_room) +"cWq" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/maintenance/fsmaint) +"cWr" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cWt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cWx" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/engineering/aitransit) +"cWz" = ( +/obj/machinery/light/small/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"cWB" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"cWC" = ( +/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" + }, +/obj/machinery/hologram/holopad{ + pixel_x = -16 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"cWD" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/window/classic/normal{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/general{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ + dir = 1 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"cWE" = ( +/obj/structure/flora/tree/palm{ + pixel_x = 0 + }, +/obj/effect/overlay/coconut{ + pixel_y = -6 + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/beach/sand, +/area/station/hallway/secondary/exit) +"cWI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/hallway) +"cWJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"cWL" = ( +/obj/item/reagent_containers/food/drinks/cans/beer, +/turf/simulated/floor/plating, +/area/station/command/office/blueshield) +"cWM" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Equipment Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/equipmentstorage) +"cWO" = ( +/obj/structure/particle_accelerator/particle_emitter/left{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/control) +"cWQ" = ( +/obj/item/clothing/glasses/sunglasses/yeah, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/beach/sand, +/area/station/hallway/secondary/exit) +"cWR" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/engineering/break_room) +"cWU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"cWV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/break_room) +"cWW" = ( +/obj/machinery/door/airlock/external{ + id_tag = "eng_atmos_door_int"; + locked = 1; + name = "Atmospherics External Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"cWX" = ( +/obj/machinery/status_display/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"cWY" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/computer/general_air_control/large_tank_control{ + autolink_sensors = list("n2_sensor"="Tank"); + dir = 1; + inlet_injector_autolink_id = "n2_in"; + name = "Nitrogen Supply Control"; + outlet_vent_autolink_id = "n2_out" + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/engineering/atmos) +"cWZ" = ( +/turf/simulated/floor/engine/n20, +/area/station/engineering/atmos) +"cXa" = ( +/obj/machinery/camera{ + c_tag = "Engineering Singularity South-East"; + dir = 8; + network = list("SS13","Singularity","Engineering") + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cXb" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cXd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/hall) +"cXh" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/primary/starboard/east) +"cXj" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/secondary/exit) +"cXm" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"cXp" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"cXq" = ( +/obj/machinery/camera{ + c_tag = "Bridge Conference Room" + }, +/obj/structure/table/wood, +/obj/item/lighter/zippo/engraved, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"cXs" = ( +/obj/machinery/status_display/directional/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"cXw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cXx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"cXA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"cXE" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/rollingpapers, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"cXF" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"cXG" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/equipmentstorage) +"cXJ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"cXL" = ( +/obj/effect/spawner/window/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/equipmentstorage) +"cXO" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"cXP" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"cXQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/break_room) +"cXR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/chair/comfy/teal{ + dir = 8 + }, +/obj/effect/landmark/start/atmospheric, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/break_room) +"cXS" = ( +/obj/machinery/computer/security/engineering{ + dir = 1; + network = list("Power Alarms","Atmosphere Alarms","Fire Alarms","Singularity") + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"cXT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cXU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"cXV" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/ashtray/glass{ + pixel_x = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/break_room) +"cXW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cXX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"cXY" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 0; + name = "Air to Port" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cXZ" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/access_button{ + autolink_id = "eng_atmos_btn_ext"; + pixel_x = 25; + pixel_y = 25; + req_access_txt = "10;13" + }, +/turf/space, +/area/space/nearstation) +"cYa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/ce) +"cYb" = ( +/obj/machinery/door/firedoor, +/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 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"cYe" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"cYg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"cYh" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "rdlab2"; + name = "Research and Development Lab Shutters" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/station/science/rnd) +"cYj" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"cYl" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/security/main) +"cYn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"cYq" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/station/engineering/control) +"cYr" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"cYs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/controlroom) +"cYv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/catwalk, +/area/station/maintenance/storage) +"cYy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"cYC" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cYH" = ( +/obj/item/kirbyplants, +/obj/item/radio/intercom/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"cYK" = ( +/obj/structure/table, +/obj/item/toner{ + pixel_y = 6 + }, +/obj/item/toner{ + pixel_y = 3 + }, +/obj/item/toner, +/obj/item/toner{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"cYM" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Gravity Generator Area" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/rd, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/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{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"cYN" = ( +/obj/structure/closet/secure_closet/expedition, +/obj/machinery/camera/motion{ + c_tag = "Gateway Motion Sensor"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"cYO" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"cYP" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway West"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/west) +"cYQ" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cYT" = ( +/obj/structure/chair/comfy/teal{ + dir = 8 + }, +/obj/effect/landmark/start/atmospheric, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/break_room) +"cYU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"cYV" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"cYW" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"cYX" = ( +/obj/item/chair/stool{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"cZa" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light_switch/south, +/obj/structure/closet/secure_closet/expedition, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"cZb" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"cZc" = ( +/obj/structure/table, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"cZd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/engineering/utility) +"cZg" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"cZh" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cZj" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/west) +"cZn" = ( +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/exit) +"cZp" = ( +/obj/item/stack/cable_coil, +/obj/structure/table/glass, +/obj/machinery/power/apc/directional/north, +/obj/item/weldingtool/research, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"cZq" = ( +/obj/machinery/light/directional/north, +/obj/structure/closet/l3closet/scientist, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cZs" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door_control/shutter{ + id = "xenobio7"; + name = "Chamber 7 Containment Blast Doors"; + pixel_y = 4; + req_one_access_txt = "55" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cZt" = ( +/obj/structure/rack, +/obj/item/storage/box/syringes, +/obj/machinery/light/directional/north, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cZu" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/abandonedbar) +"cZv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"cZw" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"cZy" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cZz" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cZD" = ( +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/science/rnd) +"cZF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/space, +/area/space/nearstation) +"cZG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/control) +"cZL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"cZM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"cZP" = ( +/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/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"cZS" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos) +"cZT" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/scientist, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/rnd) +"cZU" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"cZV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/fsmaint) +"cZW" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/break_room) +"cZX" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cZY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"cZZ" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"daa" = ( +/obj/machinery/light_switch/west, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"dab" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/hallway) +"dac" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"daf" = ( +/obj/machinery/requests_console{ + department = "EVA"; + name = "EVA Requests Console"; + pixel_x = -32 + }, +/obj/effect/decal/warning_stripes/white/hollow, +/obj/structure/closet/secure_closet/exile, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"dag" = ( +/obj/machinery/atmospherics/binary/volume_pump/on{ + dir = 8; + name = "Port to Filter" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dah" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Gas to Filter" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/supermatter_room) +"dar" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/secure_storage) +"dau" = ( +/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/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"dav" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall, +/area/station/engineering/solar/port) +"daw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"day" = ( +/obj/structure/cable{ + 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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"daB" = ( +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"daG" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"daH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"daI" = ( +/obj/structure/table/glass, +/obj/item/hand_labeler{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"daK" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"daM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"daN" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/ai_status_display/south, +/obj/machinery/disposal, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/break_room) +"daO" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"daP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"daQ" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"daR" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/directional/south, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"daT" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/decal/warning_stripes/white/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"daV" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"daW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"daX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/binary/valve{ + dir = 4; + name = "Exhaust Reuse" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"daY" = ( +/obj/structure/closet/crate, +/obj/item/vending_refill/cargodrobe, +/obj/item/vending_refill/boozeomat, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dba" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/engineering/atmos) +"dbb" = ( +/turf/simulated/floor/engine/plasma, +/area/station/engineering/atmos) +"dbg" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"dbh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"dbi" = ( +/obj/structure/table, +/obj/item/newspaper, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dbo" = ( +/obj/structure/closet/crate/freezer, +/obj/item/organ/internal/heart/vox, +/obj/item/organ/internal/liver/vox, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/organ/internal/heart/vox, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/asmaint) +"dbq" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dbr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/aft) +"dbt" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"dbv" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/decal/warning_stripes/white/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"dbx" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Science Maintenance" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dby" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CE" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/command/office/ce) +"dbz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dbD" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluecorners" + }, +/area/station/engineering/aitransit) +"dbI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public{ + name = "Kitchen" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"dbJ" = ( +/obj/item/clothing/ears/earmuffs{ + pixel_y = 6 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/structure/table, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/hallway) +"dbK" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/break_room) +"dbL" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/break_room) +"dbM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/storage/belt/utility, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dbN" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall/r_wall, +/area/station/engineering/utility) +"dbO" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/machinery/light_switch/south, +/obj/effect/decal/warning_stripes/white/hollow, +/obj/machinery/camera{ + c_tag = "EVA"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"dbR" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Module Chamber 4"; + dir = 1; + network = list("Research","SS13") + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"dbW" = ( +/obj/structure/reflector/single{ + anchored = 1; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dbX" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dbZ" = ( +/obj/machinery/door/airlock/external{ + id_tag = "eng_s_tesla_door_int"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/control) +"dcb" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/hallway/primary/central/north) +"dce" = ( +/obj/structure/sign/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"dcf" = ( +/obj/structure/window/plasmareinforced{ + dir = 4 + }, +/obj/machinery/power/rad_collector{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"dci" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dcj" = ( +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"dcl" = ( +/obj/machinery/power/apc/engineering/north, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"dcm" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Starboard Solar Access" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"dcn" = ( +/mob/living/simple_animal/parrot/Poly, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"dcq" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/storage) +"dcr" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/control) +"dcs" = ( +/obj/effect/decal/cleanable/dirt, +/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/plasteel, +/area/station/maintenance/aft) +"dct" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/break_room) +"dcv" = ( +/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/machinery/door/airlock/engineering/glass{ + name = "Engineering" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/hallway) +"dcy" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"dcz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Mix to Gas" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dcB" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/engineering/dronefabricator) +"dcE" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/powermonitor{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/stationalert, +/obj/item/circuitboard/atmos_alert{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/circuitboard/smes{ + pixel_x = 6; + pixel_y = -6 + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"dcF" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"dcH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"dcK" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"dcN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"dcO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"dcP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"dcR" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/break_room) +"dcS" = ( +/obj/machinery/shower{ + pixel_y = 20 + }, +/obj/structure/curtain/open/shower/engineering, +/obj/effect/turf_decal/siding/yellow/end, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"dcV" = ( +/obj/effect/decal/warning_stripes/west, +/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/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"ddf" = ( +/obj/effect/decal/warning_stripes/west, +/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/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"ddk" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"ddm" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"ddn" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Mix Bypass" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"ddp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"ddq" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"ddr" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"ddt" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/metal/fifty, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"ddv" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"ddx" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/portable/canister/nitrogen, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"ddD" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"ddE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/starboard) +"ddF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"ddG" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"ddN" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/starboard) +"ddP" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/starboard) +"ddQ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/starboard) +"ddR" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/starboard) +"ddT" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/starboard) +"ddU" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/starboard) +"ddY" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"dea" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"deb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/starboard) +"dec" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"ded" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/starboard) +"dee" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/starboard) +"def" = ( +/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 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/starboard) +"deg" = ( +/obj/structure/cable, +/obj/machinery/power/tracker, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/starboard) +"deh" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/control) +"dei" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/space, +/area/space/nearstation) +"dej" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"dek" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/computer/monitor{ + dir = 4; + name = "Grid Power Monitoring Computer" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"dem" = ( +/turf/simulated/floor/engine/co2, +/area/station/engineering/atmos) +"der" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/status_display/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"deu" = ( +/obj/machinery/power/apc/super/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"dev" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/atmosia_independence{ + pixel_y = 32 + }, +/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/catwalk, +/area/station/maintenance/storage) +"dew" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"dex" = ( +/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 + }, +/obj/machinery/light_switch/north, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"deA" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/smes) +"deB" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/smes) +"deD" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/cable{ + 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/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"deE" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/station/maintenance/starboardsolar) +"deF" = ( +/obj/machinery/power/grounding_rod, +/obj/effect/decal/warning_stripes/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"deG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/assembly_line) +"deH" = ( +/obj/machinery/atmospherics/binary/pump{ + desc = "A pump used for transfering from pure circuit to the Engines circuit"; + dir = 4; + name = "Pure to Engines"; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"deI" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"deJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"deK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/remains/mouse, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"deL" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/directional/east, +/obj/item/megaphone, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd/preloaded, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"deM" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"deN" = ( +/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/plating, +/area/station/maintenance/starboardsolar) +"deO" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos/storage) +"deP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random/south, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"deQ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Mix to Gas Turbine" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"deR" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "N2 to Pure" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"deS" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/engineering/west, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"deU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"deW" = ( +/obj/structure/sign/nosmoking_2, +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos/control) +"deX" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/poddoor{ + id_tag = "hos_secure_doors" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"deY" = ( +/obj/structure/table/reinforced, +/obj/item/lighter/zippo/ce, +/obj/item/storage/fancy/cigarettes{ + pixel_x = 10; + pixel_y = 4 + }, +/obj/machinery/button/windowtint/west{ + id = "CE"; + pixel_y = 8; + req_access_txt = "56" + }, +/obj/machinery/door_control/normal/west{ + id = "ceofficedoor"; + name = "Office Doors"; + pixel_y = -2; + req_access_txt = "56" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/lootdrop/officetoys, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/ce) +"deZ" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"dfa" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/remains/mouse, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"dfb" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Control"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"dfc" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"dfg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkyellow" + }, +/area/station/engineering/break_room) +"dfh" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"dfj" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"dfn" = ( +/obj/machinery/power/solar_control{ + dir = 1; + name = "Aft Starboard Solar Control" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"dfo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"dfp" = ( +/obj/structure/sign/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"dfq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"dfr" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/cans/sodawater, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/break_room) +"dfs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"dft" = ( +/obj/machinery/disposal, +/obj/machinery/alarm/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"dfu" = ( +/obj/machinery/atmospherics/binary/volume_pump/on{ + dir = 1; + name = "Mix to Filter" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dfx" = ( +/obj/structure/sign/nosmoking_1, +/turf/simulated/wall, +/area/station/engineering/equipmentstorage) +"dfA" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"dfB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dfC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/station/aisat/atmos) +"dfD" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"dfE" = ( +/obj/machinery/camera/motion{ + c_tag = "AI Core South"; + network = list("SS13","MiniSat"); + start_active = 1 + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai) +"dfF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dfG" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"dfH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "O2 to Pure" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dfI" = ( +/obj/machinery/atmospherics/trinary/mixer{ + dir = 4; + name = "Gas mixer (N2/O2)"; + node1_concentration = 0.8; + node2_concentration = 0.2; + on = 1; + target_pressure = 4500 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dfJ" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"dfK" = ( +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"dfN" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"dfQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dfR" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"dfT" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Mix to Port" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dfU" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dfW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/spawner/xeno, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"dfZ" = ( +/obj/item/extinguisher, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dgc" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"dgd" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dgg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dgi" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"dgj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dgm" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dgn" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/equipmentstorage) +"dgp" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"dgq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/catwalk, +/area/station/maintenance/storage) +"dgr" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CE" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/command/office/ce) +"dgs" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"dgt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id_tag = "engsm2"; + name = "SM Radiation Security Lock" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dgy" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"dgz" = ( +/obj/structure/table/holotable/wood, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 10 + }, +/turf/simulated/floor/beach/sand, +/area/station/hallway/secondary/exit) +"dgC" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 8 + }, +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_4) +"dgH" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mug, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/wood/oak, +/area/station/public/mrchangs) +"dgI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"dgM" = ( +/obj/effect/decal/warning_stripes/eastnorthwest, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dgN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"dgP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id_tag = "engsm2"; + name = "SM Radiation Security Lock" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dgQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dgR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"dgS" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/turbine) +"dgT" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/transit_tube{ + dir = 4; + icon_state = "Block" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/engineering/aitransit) +"dgU" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/decal/warning_stripes/north, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"dgV" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"dgW" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/trinary/filter/flipped{ + dir = 8; + filter_type = -1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"dgX" = ( +/obj/structure/transit_tube{ + icon_state = "W-SE" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"dgZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/engineering/atmos/control) +"dha" = ( +/obj/structure/mopbucket, +/obj/item/caution, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dhf" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"dhk" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/transit_tube, +/turf/simulated/floor/plating, +/area/station/engineering/aitransit) +"dhp" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/public/mrchangs) +"dhq" = ( +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/machinery/light_switch/east, +/turf/simulated/floor/wood/oak, +/area/station/public/mrchangs) +"dhv" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/secure_closet/atmos_personal, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"dhx" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"dhB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/engineering/atmos) +"dhC" = ( +/obj/machinery/atmospherics/binary/valve/digital/open{ + name = "Nitrogen Outlet Valve" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/engineering/atmos) +"dhE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "blue" + }, +/area/station/engineering/atmos) +"dhF" = ( +/obj/machinery/atmospherics/binary/valve/digital/open{ + name = "Oxygen Outlet Valve" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "blue" + }, +/area/station/engineering/atmos) +"dhH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "arrival" + }, +/area/station/engineering/atmos) +"dhI" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dhJ" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/obj/item/wrench, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dhL" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"dhM" = ( +/obj/item/stack/sheet/wood, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/fsmaint) +"dhQ" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dhY" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"dib" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"dig" = ( +/obj/machinery/requests_console{ + department = "Locker Room"; + name = "Locker Room Requests Console"; + pixel_x = -32 + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"dij" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"dik" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plating, +/area/station/aisat/service) +"dil" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/obj/effect/decal/cleanable/dirt, +/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, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"dim" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/storage/office) +"dio" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/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/wood/fancy/cherry, +/area/station/command/office/captain) +"diq" = ( +/obj/machinery/power/tesla_coil{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"dis" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Hallway West" + }, +/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/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"diu" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"div" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Gateway Access" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/expedition, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"diw" = ( +/obj/item/flag/nt, +/obj/machinery/camera{ + c_tag = "Central Hallway North" + }, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/station/hallway/primary/central/north) +"dix" = ( +/obj/item/kirbyplants, +/obj/machinery/alarm/directional/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/station/hallway/primary/central/north) +"diB" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"diC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"diD" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/rack, +/obj/item/screwdriver, +/obj/item/radio, +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"diE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start/cyborg, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat/interior) +"diF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat/interior) +"diG" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"diI" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat/interior) +"diJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"diK" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Singularity"; + name = "Singularity Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"diL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "teledoor"; + name = "AI Satellite Teleport Access" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"diM" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/landmark/start/cyborg, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat/interior) +"diN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"diO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat/interior) +"diQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"diU" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/landmark/start/atmospheric, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/atmos/control) +"diV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"dja" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"djb" = ( +/obj/machinery/ai_status_display/south, +/obj/structure/table, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/reagent_containers/food/drinks/mug/eng{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"djc" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"dje" = ( +/obj/item/kirbyplants, +/obj/machinery/power/apc/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/station/hallway/primary/central/north) +"djf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/catwalk, +/area/station/maintenance/storage) +"djg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Dormitories" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/public/dorms) +"djh" = ( +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/service/hydroponics) +"djl" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"djp" = ( +/obj/structure/table, +/obj/item/storage/briefcase/inflatable{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/storage/briefcase/inflatable, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching engines."; + layer = 4; + name = "Engine Telescreen"; + network = list("Singularity","engine"); + pixel_y = 30 + }, +/obj/machinery/requests_console{ + department = "Engineering"; + departmentType = 3; + name = "Engineering Requests Console"; + pixel_x = -30 + }, +/obj/machinery/camera{ + c_tag = "Engineering Reception"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"djq" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"djr" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"djs" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Singularity"; + name = "Singularity Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"djv" = ( +/obj/machinery/light/directional/north, +/obj/machinery/power/apc/engineering/north, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/atmos/control) +"djC" = ( +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Access"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"djD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start/cyborg, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat/interior) +"djE" = ( +/obj/structure/chair/office/dark, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/engineering/gravitygenerator) +"djG" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/chair, +/obj/machinery/power/apc/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"djH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat/interior) +"djI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"djJ" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"djL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"djM" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"djO" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/nw) +"djP" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"djQ" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/starboardsolar) +"djR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"djV" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) +"djW" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway North-West" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/nw) +"djZ" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/nw) +"dka" = ( +/obj/structure/reflector/single{ + anchored = 1; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dkb" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkbluecorners" + }, +/area/station/turret_protected/aisat/interior) +"dkd" = ( +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/station/turret_protected/aisat/interior) +"dke" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/station/engineering/supermatter_room) +"dkf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"dkg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/atmos/control) +"dkm" = ( +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"dkn" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"dkr" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"dku" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"dkv" = ( +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dky" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway North-East" + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"dkz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dkA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dkB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dkC" = ( +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Engineering Atmos Center North"; + network = list("SS13","Engineering") + }, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"dkD" = ( +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"dkH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"dkI" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"dkJ" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/equipmentstorage) +"dkK" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"dkM" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/meter{ + layer = 2.9 + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos) +"dkO" = ( +/turf/simulated/floor/engine/n2, +/area/station/engineering/atmos) +"dkP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"dkQ" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"dkR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance" + }, +/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" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"dkT" = ( +/turf/simulated/floor/engine/o2, +/area/station/engineering/atmos) +"dkU" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"dkV" = ( +/turf/simulated/floor/engine/air, +/area/station/engineering/atmos) +"dkW" = ( +/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 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"dkX" = ( +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"dkZ" = ( +/obj/structure/transit_tube{ + icon_state = "N-S-Pass" + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"dlb" = ( +/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/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"dlc" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"dld" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"dle" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dlg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dlj" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dlk" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"dll" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"dlo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/atmos) +"dlq" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/door_control/normal/south{ + id = "blueshieldofficedoor"; + name = "Office Door"; + pixel_x = 6; + req_access_txt = "67" + }, +/obj/machinery/door_control/shutter/south{ + id = "blueshield"; + name = "Privacy Shutters Control"; + pixel_x = -6; + req_access_txt = "67" + }, +/obj/machinery/keycard_auth/south{ + pixel_y = -34 + }, +/obj/effect/landmark/start/blueshield, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"dlt" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA" + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"dlu" = ( +/obj/machinery/porta_turret{ + dir = 1 + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluecorners" + }, +/area/station/turret_protected/aisat/interior) +"dlv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"dlw" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"dlx" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"dlz" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dlD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"dlK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/full, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"dlP" = ( +/obj/effect/landmark/spawner/xeno, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dlR" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"dlS" = ( +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"dlT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"dlU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Hallway East"; + network = list("SS13","Engineering") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"dlX" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"dlZ" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dma" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"dmb" = ( +/obj/structure/table/wood, +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"dmd" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Atmos to Loop" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dme" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Pure to Mix" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dmg" = ( +/obj/structure/chair/comfy/brown, +/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 = 5 + }, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"dmk" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/atmospheric, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/atmos/control) +"dml" = ( +/obj/machinery/atmospherics/binary/pump{ + name = "Waste Out" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dmm" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + autolink_id = "waste_in"; + dir = 1 + }, +/turf/simulated/floor/engine/vacuum, +/area/station/engineering/atmos) +"dmn" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Captain's Quarters"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/station/command/office/captain/bedroom) +"dmp" = ( +/obj/machinery/kitchen_machine/grill, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"dmr" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dms" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"dmw" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"dmy" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/access_button{ + autolink_id = "eng_sm_btn_int"; + pixel_x = 25; + pixel_y = 25; + req_access_txt = "10;13" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluecorners" + }, +/area/station/engineering/aitransit) +"dmz" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/supermatter_room) +"dmA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/door/airlock/atmos/glass{ + name = "Supermatter Atmospheric Supplies" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos) +"dmB" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"dmD" = ( +/turf/simulated/wall/r_wall, +/area/space/nearstation) +"dmE" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"dmG" = ( +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "tox_sensor"; + output = 127 + }, +/turf/simulated/floor/engine/plasma, +/area/station/engineering/atmos) +"dmH" = ( +/obj/structure/computerframe{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"dmI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/assembly_line) +"dmJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dmK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"dmL" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"dmP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"dmQ" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + dir = 2; + id_tag = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/simulated/floor/plating, +/area/station/engineering/engine/supermatter) +"dmR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dmS" = ( +/obj/machinery/light/directional/east, +/obj/machinery/door_control/shutter/east{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + req_access_txt = "11" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"dmT" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"dmU" = ( +/obj/machinery/photocopier, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 7; + name = "Chief Engineer Requests Console"; + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"dmV" = ( +/obj/structure/table, +/obj/item/apc_electronics, +/obj/item/airlock_electronics, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"dmW" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dmX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"dmY" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dnc" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/station/turret_protected/ai) +"dnd" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"dne" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dnf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dng" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/station/maintenance/aft) +"dnh" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dni" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dnj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dnk" = ( +/obj/machinery/economy/atm/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"dnl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dnm" = ( +/obj/machinery/atmospherics/trinary/filter/flipped{ + dir = 4; + filter_type = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dnq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/ai_slipper, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dnr" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dnt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dnw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dnx" = ( +/obj/structure/sign/fire, +/turf/simulated/wall/r_wall, +/area/station/maintenance/turbine) +"dny" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dnz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/ai_slipper, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dnA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/ai_slipper, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dnB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dnF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dnG" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"dnI" = ( +/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/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/service) +"dnM" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/item/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "Camera"; + pictures_left = 30 + }, +/obj/item/book/codex_gigas, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/service/library) +"dnN" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "stairs-l" + }, +/area/station/hallway/primary/central/nw) +"dnR" = ( +/obj/structure/table/wood, +/obj/item/candle, +/turf/simulated/floor/carpet, +/area/station/maintenance/aft) +"dnV" = ( +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"dnW" = ( +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"dnY" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "purple" + }, +/area/station/science/hallway) +"dnZ" = ( +/turf/simulated/wall, +/area/station/turret_protected/aisat/interior) +"dob" = ( +/obj/structure/girder, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"doe" = ( +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"doh" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + name = "Starboard Solar Array" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/engineering/solar/starboard) +"doi" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/computer/card, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"doj" = ( +/obj/machinery/light_switch/east, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"dop" = ( +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"dor" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"dos" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"dot" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/item/restraints/legcuffs/beartrap, +/obj/item/restraints/legcuffs/beartrap, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"dou" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_4) +"dox" = ( +/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/plating, +/area/station/maintenance/electrical) +"doy" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/table, +/obj/item/folder, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/pen/multi, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"doz" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/pod_4) +"doE" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"doF" = ( +/obj/machinery/atmospherics/portable/pump, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"doG" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + name = "Starboard Solar Array" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/engineering/solar/starboard) +"doH" = ( +/obj/machinery/teleport/hub, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"doI" = ( +/obj/machinery/atmospherics/binary/volume_pump/on{ + name = "Space Loop In" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"doK" = ( +/obj/item/transfer_valve{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/transfer_valve{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/transfer_valve{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/table, +/obj/item/transfer_valve{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"doL" = ( +/obj/docking_port/mobile/pod{ + dir = 4; + id = "pod4"; + name = "escape pod 4" + }, +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock"; + name = "Escape Pod Hatch" + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_4) +"doM" = ( +/obj/machinery/status_display/directional/north, +/obj/machinery/light/directional/south, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_4) +"doN" = ( +/obj/machinery/alarm/directional/west, +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"doY" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat/interior) +"dpb" = ( +/obj/machinery/computer/teleporter{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"dpd" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/equipmentstorage) +"dpf" = ( +/turf/simulated/wall/r_wall, +/area/station/turret_protected/aisat/interior) +"dpg" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/teleport/station, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"dph" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"dpl" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"dpm" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"dpp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/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/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"dpq" = ( +/obj/machinery/camera{ + c_tag = "NT Representative's Office"; + dir = 1 + }, +/obj/structure/table/wood, +/obj/machinery/newscaster/security_unit/south, +/obj/item/taperecorder, +/obj/item/lighter/zippo/nt_rep, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"dpu" = ( +/obj/structure/rack, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/status_display/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat/interior) +"dpw" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/power/apc/engineering/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"dpx" = ( +/obj/structure/table, +/obj/machinery/status_display/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"dpA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dpC" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dpD" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/smes) +"dpE" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dpF" = ( +/obj/structure/reflector/double{ + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dpJ" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/door_control/shutter/west{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + req_access_txt = "11" + }, +/obj/machinery/the_singularitygen, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"dpK" = ( +/obj/machinery/light/directional/east, +/obj/machinery/porta_turret{ + dir = 8; + installation = /obj/item/gun/energy/gun; + name = "hallway turret" + }, +/turf/simulated/floor/bluegrid, +/area/station/aisat/hall) +"dpL" = ( +/turf/simulated/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"dpM" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"dpO" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"dpP" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"dpT" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dpV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"dpY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"dpZ" = ( +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/office/ce) +"dqh" = ( +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"dqk" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"dql" = ( +/obj/structure/bed, +/obj/item/toy/plushie/voxplushie, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/asmaint) +"dqm" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Singularity"; + name = "Singularity Blast Doors" + }, +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"dqn" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on{ + autolink_id = "n2o_out"; + dir = 1; + external_pressure_bound = 0; + internal_pressure_bound = 2000; + pressure_checks = 2 + }, +/turf/simulated/floor/engine/n20, +/area/station/engineering/atmos) +"dqp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/service) +"dqq" = ( +/obj/machinery/shower{ + pixel_y = 20 + }, +/obj/structure/curtain/open/shower/engineering, +/obj/effect/turf_decal/siding/yellow/end, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"dqv" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Port to Filter" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dqw" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"dqx" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellow" + }, +/area/station/engineering/break_room) +"dqA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/station/engineering/aitransit) +"dqD" = ( +/obj/machinery/atmospherics/binary/valve{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dqE" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"dqF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"dqL" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/northeast, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"dqM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/hall) +"dqO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/storage) +"dqQ" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "AI Satellite Exterior East"; + dir = 4; + network = list("SS13","MiniSat") + }, +/turf/space, +/area/station/aisat) +"dqT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"dqX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/catwalk, +/area/station/maintenance/storage) +"drf" = ( +/turf/simulated/wall/r_wall, +/area/station/turret_protected/ai) +"drg" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/station/turret_protected/ai) +"drh" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sink/kitchen/north, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"dro" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen/multi, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"drq" = ( +/obj/machinery/alarm/directional/north, +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"drt" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"drv" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/turret_protected/ai) +"dry" = ( +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai) +"drA" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/chair/office/dark, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"drB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"drE" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"drG" = ( +/obj/machinery/light/directional/west, +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai) +"drI" = ( +/obj/machinery/porta_turret{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai) +"drK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"drM" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai) +"drN" = ( +/turf/simulated/wall, +/area/station/turret_protected/ai) +"drO" = ( +/obj/machinery/light/directional/east, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai) +"drP" = ( +/turf/simulated/floor/plating, +/area/station/aisat/service) +"drQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall, +/area/station/maintenance/aft) +"drR" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Core"; + dir = 1; + network = list("SS13","MiniSat"); + start_active = 1 + }, +/obj/machinery/power/apc/important/south, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai) +"drS" = ( +/obj/machinery/light/directional/north, +/obj/machinery/ai_status_display/north, +/obj/machinery/camera{ + c_tag = "Engineering Atmos Northeast"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"drT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "engemergencyeva"; + name = "Emergency Supplies" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"drV" = ( +/obj/machinery/atmospherics/binary/valve/digital{ + color = ""; + name = "CO2 Outlet Valve" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"drX" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "AI Satellite Exterior South West"; + dir = 8; + network = list("SS13","MiniSat") + }, +/turf/space, +/area/station/turret_protected/ai) +"dsa" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "AI Satellite Exterior South East"; + dir = 4; + network = list("SS13","MiniSat") + }, +/turf/space, +/area/station/turret_protected/ai) +"dsb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dsc" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai) +"dsd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall, +/area/station/turret_protected/ai) +"dse" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/ai_slipper, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai) +"dsg" = ( +/obj/machinery/alarm/directional/west, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"dsh" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dsi" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"dsj" = ( +/obj/machinery/camera{ + c_tag = "AI Satellite Exterior South"; + network = list("SS13","MiniSat") + }, +/turf/space, +/area/station/turret_protected/ai) +"dsx" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"dsy" = ( +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"dsz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Server Room" + }, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/rd, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/server) +"dsG" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"dsH" = ( +/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, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"dsI" = ( +/obj/structure/transit_tube{ + icon_state = "E-NW" + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"dsJ" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"dsK" = ( +/obj/machinery/camera{ + c_tag = "Engineering Foyer West"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"dsL" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"dsN" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"dsT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"dsU" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/meter, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"dsY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Equipment Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/equipmentstorage) +"dta" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/equipmentstorage) +"dtb" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/stairs/left, +/area/station/engineering/equipmentstorage) +"dtc" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/break_room) +"dtg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"dtk" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/equipmentstorage) +"dtl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"dtn" = ( +/obj/machinery/computer/station_alert, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"dto" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"dtp" = ( +/obj/machinery/computer/station_alert, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"dtq" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/directional/north, +/obj/machinery/computer/monitor{ + name = "Engine Power Monitoring Computer" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"dts" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"dtt" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"dtv" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"dtw" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera{ + c_tag = "Tech Storage"; + network = list("SS13","Engineering") + }, +/obj/machinery/power/apc/engineering/north, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"dtF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/station/command/office/captain/bedroom) +"dtH" = ( +/obj/structure/closet/radiation, +/obj/machinery/light/directional/north, +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"dtL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"dtN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"dud" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dup" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/maintenance/asmaint) +"duq" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"dur" = ( +/obj/machinery/door/airlock/external{ + id_tag = "arrivalsmaint_door_int"; + locked = 1; + name = "Engineering External Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"duF" = ( +/obj/effect/spawner/wire_splicing/thirty, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dve" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/port_gen/pacman, +/obj/machinery/power/apc/directional/east, +/turf/simulated/floor/plating, +/area/station/aisat/service) +"dvv" = ( +/mob/living/simple_animal/pet/sloth/paperwork, +/turf/simulated/floor/carpet, +/area/station/legal/lawoffice) +"dvz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"dvC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"dvD" = ( +/obj/machinery/camera{ + c_tag = "Prison Cafeteria External"; + dir = 8; + network = list("Prison","SS13") + }, +/turf/space, +/area/space) +"dvM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"dvY" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/port) +"dwg" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"dwA" = ( +/obj/machinery/floodlight, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"dwT" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"dwZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dxa" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"dxe" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/closet/l3closet/janitor, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"dxt" = ( +/obj/structure/cable{ + 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/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"dxw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"dxK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dxN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dxX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"dyh" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/door/window/classic/normal{ + dir = 1; + name = "Kitchen"; + req_one_access_txt = "28" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"dyn" = ( +/obj/effect/spawner/random_barrier/obstruction, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"dyw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"dyA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"dyH" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/engineering/smes) +"dzg" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/maintenance/turbine) +"dzn" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/starboard/west) +"dzp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab" + }, +/obj/structure/disposalpipe/segment, +/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/mapping_helpers/airlock/access/any/science/robotics, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/robotics) +"dzA" = ( +/obj/machinery/door/airlock/hydroponics{ + name = "Hydroponics" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"dzE" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/soda{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"dzN" = ( +/obj/structure/mopbucket/full, +/obj/item/mop, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dzO" = ( +/obj/structure/disposalpipe/segment/corner{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"dzS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"dAh" = ( +/obj/structure/sink/kitchen/north, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"dAq" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) +"dAw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/command/office/rd) +"dAD" = ( +/obj/structure/disposalpipe/junction/reversed, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"dAH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/spawner/window/reinforced/tinted/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"dBd" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Storage" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/storage) +"dBt" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"dBB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/prison/cell_block/A) +"dBR" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hos) +"dBW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"dCA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"dCN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"dCV" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/sw) +"dDc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"dDd" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/landmark/start/roboticist, +/turf/simulated/floor/plasteel{ + icon_state = "darkpurple" + }, +/area/station/science/robotics) +"dDk" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"dDw" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"dDy" = ( +/obj/structure/door_assembly/door_assembly_mai{ + anchored = 1 + }, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dDB" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"dDI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"dDQ" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/effect/landmark/start/roboticist, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/science/robotics) +"dDZ" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"dEb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/snacks/meat/slab, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"dEc" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/atmos/control) +"dEj" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/lobby) +"dEq" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"dEv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"dEw" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Kitchen" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "kitchenbar"; + name = "Kitchen Shutters" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"dEz" = ( +/obj/effect/decal/cleanable/dirt, +/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/plasteel, +/area/station/security/processing) +"dEG" = ( +/obj/structure/table, +/obj/item/pizzabox/vegetable, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"dEI" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/interrogation) +"dET" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/break_room) +"dFd" = ( +/obj/machinery/mass_driver{ + dir = 4; + id_tag = "toxinsdriver" + }, +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"dFG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/permabrig) +"dFI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + density = 0; + desc = "Lube off, pal."; + icon_state = "open"; + id_tag = "imnotmakingyoulubepissoff"; + name = "Chemistry Privacy Shutter"; + opacity = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "Chemistry Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"dFK" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/security/prisonlockers) +"dGa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"dGj" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"dGn" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + id_tag = "eng_n_tesla_door_int"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/control) +"dGF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dGR" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/xenobiology) +"dHc" = ( +/obj/structure/sink/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dHp" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/main) +"dHv" = ( +/obj/effect/spawner/window/reinforced/grilled, +/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/plating, +/area/station/engineering/smes) +"dHF" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/light_switch/south, +/turf/simulated/floor/engine, +/area/station/science/explab/chamber) +"dHU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/machinery/light/small/built/north, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"dIa" = ( +/obj/machinery/alarm/directional/east, +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Head of Personnel's Office"; + pixel_y = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"dIh" = ( +/obj/structure/dresser, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dIY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/coatrack, +/obj/item/storage/belt/chef, +/obj/item/clothing/head/chefhat, +/turf/simulated/floor/plasteel{ + icon_state = "stage_bleft" + }, +/area/station/maintenance/fsmaint) +"dJg" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/economy/slot_machine, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"dJl" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"dJW" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on{ + autolink_id = "n2_out"; + dir = 1; + external_pressure_bound = 0; + internal_pressure_bound = 4000; + pressure_checks = 2 + }, +/turf/simulated/floor/engine/n2, +/area/station/engineering/atmos) +"dKa" = ( +/obj/effect/spawner/window/grilled, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/engineering/emergency) +"dKh" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 8 + }, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/glass/bottle/facid, +/obj/machinery/door_control/shutter/west{ + id = "justice_blast"; + name = "Space Vent"; + req_one_access_txt = "2" + }, +/obj/machinery/flasher_button{ + id = "Execution"; + pixel_x = -32; + pixel_y = 7 + }, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"dKq" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + dir = 2; + id_tag = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/simulated/floor/plating, +/area/station/engineering/engine/supermatter) +"dKy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/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/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"dKH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/service/chapel/office) +"dLo" = ( +/obj/effect/spawner/wire_splicing/thirty, +/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/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"dLF" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/poddoor/preopen{ + id_tag = "bridge blast east"; + name = "Bridge Blast Doors" + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"dLJ" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "robotics"; + name = "Robotics Lab Shutters" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "robo" + }, +/turf/simulated/floor/plating, +/area/station/science/robotics/chargebay) +"dLK" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"dLN" = ( +/obj/effect/decal/cleanable/molten_object/large, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dLZ" = ( +/obj/item/flashlight{ + pixel_y = 4 + }, +/obj/structure/table/wood, +/obj/structure/cable{ + 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/station/maintenance/aft) +"dMb" = ( +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/fsmaint) +"dMc" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/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/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"dMr" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/engineering/controlroom) +"dMy" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"dMJ" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "purplecorner" + }, +/area/station/hallway/primary/starboard/east) +"dMS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"dNc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/abandonedbar) +"dNi" = ( +/obj/effect/landmark/start/shaft_miner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"dNX" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"dOb" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/rum, +/obj/item/reagent_containers/glass/rag{ + pixel_x = -7 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/aft) +"dOd" = ( +/obj/structure/marker_beacon/dock_marker, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"dOh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"dOo" = ( +/obj/effect/decal/warning_stripes/blue/hollow, +/obj/machinery/bodyscanner, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"dOs" = ( +/obj/structure/table/glass, +/obj/item/soap/nanotrasen, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"dPe" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dPw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"dPA" = ( +/obj/machinery/door/airlock/engineering/glass{ + heat_proof = 1; + name = "Supermatter Chamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"dQa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"dQe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/sw) +"dQC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/bluegrid, +/area/station/telecomms/chamber) +"dQM" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Module Chamber 6"; + network = list("Research","SS13") + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"dQR" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space/nearstation) +"dRb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"dRf" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"dRi" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"dRk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dRz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"dSf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"dSj" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dust, +/obj/item/eftpos, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fsmaint) +"dSu" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/asmaint) +"dTF" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/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/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"dTG" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/station/engineering/aitransit) +"dTL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"dTO" = ( +/obj/structure/closet/secure_closet/captains, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/carpet, +/area/station/command/office/captain/bedroom) +"dTW" = ( +/obj/structure/dresser, +/obj/item/lipstick/random, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"dUm" = ( +/obj/effect/decal/cleanable/dirt, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"dUv" = ( +/obj/structure/table/wood, +/obj/item/book/random, +/turf/simulated/floor/carpet, +/area/station/maintenance/asmaint) +"dUW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"dVb" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"dVg" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"dVG" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"dVQ" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/rnd) +"dWs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/west) +"dWK" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"dWP" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/regular{ + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular{ + pixel_y = 2 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"dWT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/aft) +"dXm" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dXo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_x = -2 + }, +/obj/item/storage/belt/utility, +/obj/item/multitool, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "purple" + }, +/area/station/maintenance/asmaint2) +"dXp" = ( +/obj/machinery/door/firedoor, +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"dXx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/item/storage/wallet, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/abandonedbar) +"dXC" = ( +/obj/effect/landmark/damageturf, +/obj/item/stack/rods{ + amount = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/maintenance/apmaint) +"dXX" = ( +/obj/structure/sink/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"dYl" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"dYq" = ( +/obj/structure/door_assembly/door_assembly_public{ + anchored = 1; + name = "Chapel" + }, +/obj/structure/barricade/wooden/crude{ + layer = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"dYJ" = ( +/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/plasteel, +/area/station/command/bridge) +"dYQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/engineering/controlroom) +"dYR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"dYX" = ( +/obj/machinery/door/airlock/external{ + id_tag = "evamaint_door_ext"; + locked = 1; + name = "EVA External Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"dZs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/west) +"dZA" = ( +/obj/machinery/door/airlock/wood, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"dZB" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"eah" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 2" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"eal" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/poddoor{ + id_tag = "maint2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"eaT" = ( +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"eba" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mecha_wreckage/durand/old, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"ebh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"ebu" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/misc_lab) +"ebI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"ebP" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"ebS" = ( +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper/precision, +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ece" = ( +/obj/structure/table, +/obj/item/candle, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"ech" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ecq" = ( +/obj/effect/decal/warning_stripes/yellow/partial, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"ecs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"ecy" = ( +/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/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"ecH" = ( +/turf/simulated/wall, +/area/station/engineering/aitransit) +"ecI" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/server) +"ecT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/legal/courtroom) +"ecV" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/hallway/secondary/exit) +"ecW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"ecZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall/r_wall, +/area/station/maintenance/asmaint) +"edf" = ( +/obj/structure/table, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding{ + layer = 8 + }, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"edk" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"edp" = ( +/obj/item/cartridge/engineering{ + pixel_x = 3 + }, +/obj/item/cartridge/engineering{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/cartridge/engineering{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/structure/table, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/break_room) +"edz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"edM" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/public/dorms) +"edQ" = ( +/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 = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/hallway/secondary/exit) +"edS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"edY" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"eei" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/weightmachine/weightlifter, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "black" + }, +/area/station/security/permabrig) +"eel" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"eew" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + dir = 2; + id_tag = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/simulated/floor/plating, +/area/station/engineering/engine/supermatter) +"eez" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"eeF" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/flask/barflask{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/lighter/zippo{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/obj/item/eftpos{ + pixel_x = 9; + pixel_y = 5 + }, +/turf/simulated/floor/light/purple, +/area/station/service/bar) +"eeJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"efk" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/sign/poster/contraband/red_rum{ + pixel_y = 30 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"efl" = ( +/turf/simulated/floor/plasteel{ + icon_state = "stairs-m" + }, +/area/station/service/expedition) +"efn" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/light/purple, +/area/station/service/bar) +"efD" = ( +/obj/machinery/optable{ + name = "Robotics Operating Table" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/assembly_line) +"efJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/splatter, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"efN" = ( +/obj/structure/table/wood/poker, +/obj/item/stack/spacecash/c10, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ega" = ( +/obj/structure/chair/sofa/pew/left{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/maintenance/fsmaint) +"egl" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable, +/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/plating, +/area/station/security/lobby) +"egq" = ( +/obj/structure/closet/secure_closet/brig, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/prisonlockers) +"egu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"egI" = ( +/obj/structure/table, +/obj/item/storage/box/monkeycubes{ + pixel_y = 3 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = -6 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"egK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/maintenance/apmaint) +"egM" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"egO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"egR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/fsmaint) +"egW" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall/r_wall, +/area/station/maintenance/aft) +"ehb" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Vacant Office" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"ehi" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "conference" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "heads_meeting"; + name = "Privacy Shutters" + }, +/turf/simulated/floor/plating, +/area/station/command/meeting_room) +"ehl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"ehs" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"ehv" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/meter, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"ehE" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Air to Port" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"ehK" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ehQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/maintenance/aft) +"ehT" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/directional/south, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" + }, +/area/station/engineering/aitransit) +"eic" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/fsmaint) +"eie" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"eiq" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 39 + }, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = 32 + }, +/obj/structure/sign/directions/science{ + pixel_y = 25 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"eiJ" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "rdlab2"; + name = "Research and Development Lab Shutters" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "rnd" + }, +/turf/simulated/floor/plating, +/area/station/science/rnd) +"eiU" = ( +/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/plasteel, +/area/station/hallway/primary/starboard/east) +"ejc" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/controlroom) +"eje" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"ejw" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"ejH" = ( +/obj/effect/spawner/random_barrier/obstruction, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"ejV" = ( +/obj/item/stack/sheet/bone, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ekd" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + name = "Sorting Office"; + sort_type_txt = "2" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"ekB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"ekQ" = ( +/obj/machinery/atmospherics/portable/canister/toxins, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"ekY" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/simulated/floor/transparent/glass, +/area/station/service/bar/atrium) +"eln" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"elB" = ( +/obj/machinery/door/morgue{ + name = "Interrogation Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/interrogation) +"elC" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"elE" = ( +/obj/machinery/hologram/holopad{ + pixel_y = 16 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"ema" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"emr" = ( +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"emy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id_tag = "maintcham2"; + name = "Containment Pen" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"emD" = ( +/obj/structure/sign/poster/contraband/random, +/turf/simulated/wall, +/area/station/maintenance/aft) +"emL" = ( +/obj/structure/closet/masks, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/station/public/dorms) +"eng" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"enk" = ( +/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/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"enG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"enJ" = ( +/obj/machinery/door/airlock/bathroom{ + id_tag = "toilet_unit1"; + name = "Unit 1" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"enO" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"eof" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/station/service/chapel) +"eoP" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/entry) +"eoR" = ( +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"eoT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"eoX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"epd" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/stairs{ + icon_state = "rampbottom" + }, +/area/station/maintenance/fsmaint) +"epp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Primary Tool Storage" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"epu" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"epT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/ce) +"eqb" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"eqs" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"eqJ" = ( +/obj/structure/disposalpipe/sortjunction/reversed{ + dir = 4; + name = "Brig Equipment Storage"; + sort_type_txt = "8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"eqL" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 8 + }, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"eqO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"erd" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ere" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"eri" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/public/toilet) +"erj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"erp" = ( +/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/plasteel, +/area/station/hallway/primary/central/north) +"erN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/station/maintenance/turbine) +"erU" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"esC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"esD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"esG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/atmos) +"esJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/maintenance/turbine) +"esK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"esL" = ( +/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 = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"esN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/prisonlockers) +"esO" = ( +/obj/structure/closet/secure_closet/medical3, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/secondary) +"esP" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/clothing/head/welding, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plating, +/area/station/aisat/atmos) +"esS" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"esT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"esV" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8; + pixel_y = 1 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 11 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"etb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"etL" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/effect/spawner/lootdrop/officetoys, +/turf/simulated/floor/carpet, +/area/station/command/office/captain) +"etR" = ( +/obj/machinery/door/airlock/external{ + id_tag = "fpsolar_door_int"; + locked = 1; + name = "Engineering External Access" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"eui" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall/r_wall, +/area/station/engineering/control) +"eup" = ( +/obj/effect/spawner/window/reinforced/grilled, +/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, +/turf/simulated/floor/plating, +/area/station/ai_monitored/storage/eva) +"euu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"euy" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"euD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"euQ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"euT" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"euX" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"evo" = ( +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkpurple" + }, +/area/station/science/genetics) +"evw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/insulated, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"evA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"evC" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/science/rnd) +"evS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"ewf" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel/stairs/left, +/area/station/command/bridge) +"ewu" = ( +/obj/effect/turf_decal/bot, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"ewz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall, +/area/station/service/library) +"ewS" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"ewU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"ewY" = ( +/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/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"exe" = ( +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/structure/sink/directional/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/security/main) +"exh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "black" + }, +/area/station/security/permabrig) +"exm" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/warning_stripes/green/hollow, +/obj/machinery/camera{ + c_tag = "Hydroponics"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"exu" = ( +/obj/structure/chair/sofa/left, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"exC" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_one_access_txt = "26" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"exD" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"exN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"exT" = ( +/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/carpet/blue, +/area/station/command/office/blueshield) +"eyg" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/se) +"eyi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/primary/port) +"eyp" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"eyB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"ezc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"ezf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/disposal) +"ezg" = ( +/obj/machinery/shieldwallgen, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"ezy" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/papershredder, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"ezG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/seeds/banana, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"ezU" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"eAi" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"eAk" = ( +/obj/structure/kitchenspike, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"eAt" = ( +/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/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"eAu" = ( +/obj/effect/spawner/random_barrier/obstruction, +/turf/simulated/floor/plating, +/area/station/medical/patients_rooms) +"eAF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"eBx" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/wood/fancy/oak, +/area/station/service/bar) +"eBy" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"eBE" = ( +/obj/structure/table/glass/reinforced/plastitanium, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ + pixel_y = 12; + pixel_x = 6; + initialized = 1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_y = 8; + pixel_x = -1; + initialized = 1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_y = 2; + pixel_x = -1; + initialized = 1 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"eBF" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio1"; + name = "Chamber 1 Containment Blast Doors" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"eBX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"eCl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Foyer" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"eDs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/atmos/control) +"eDB" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall/r_wall, +/area/station/ai_monitored/storage/eva) +"eDE" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/maintenance/fsmaint) +"eEj" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/main) +"eEE" = ( +/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, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"eEO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"eER" = ( +/obj/structure/sign/poster/official/random/north, +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"eES" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"eEU" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"eFn" = ( +/obj/machinery/light/directional/north, +/obj/structure/sign/poster/official/help_others{ + pixel_y = 32 + }, +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"eFs" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dust, +/obj/item/lighter/random, +/obj/item/rollingpaper, +/obj/item/reagent_containers/food/snacks/grown/cannabis, +/obj/item/ashtray/plastic, +/turf/simulated/floor/carpet/orange, +/area/station/maintenance/fsmaint) +"eFV" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"eFY" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"eGm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"eGo" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"eGs" = ( +/obj/effect/turf_decal/bot, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/entry) +"eGC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"eGJ" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"eGU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + 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 = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"eGX" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"eGZ" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"eHI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"eHX" = ( +/obj/structure/table, +/obj/item/taperecorder{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"eIk" = ( +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"eIm" = ( +/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/plasteel, +/area/station/supply/storage) +"eIN" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/engineering/gravitygenerator) +"eIP" = ( +/obj/structure/table/wood, +/obj/item/paper/safe_code{ + owner = "captain" + }, +/turf/simulated/floor/carpet/royalblue, +/area/station/command/office/captain) +"eJo" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"eJr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/atmos/control) +"eJt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"eJI" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"eJL" = ( +/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/plasteel, +/area/station/hallway/primary/central/sw) +"eJY" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"eKd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"eKe" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/station/engineering/equipmentstorage) +"eKz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"eKA" = ( +/obj/structure/sign/poster/contraband/ambrosia_vulgaris{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/economy/vending/cola, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"eKC" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/asmaint) +"eKH" = ( +/obj/machinery/door/airlock/bathroom{ + id_tag = "toilet_unitc"; + name = "Unit C" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"eKL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment/corner{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"eLa" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/medbay2) +"eLe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"eLi" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"eLk" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"eLu" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/item/eftpos{ + pixel_x = -13; + pixel_y = 2 + }, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"eLz" = ( +/obj/machinery/disposal, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"eLE" = ( +/obj/machinery/camera{ + c_tag = "Research Research and Development Lab"; + dir = 8; + network = list("Research","SS13") + }, +/obj/machinery/newscaster/directional/east, +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/item/reagent_containers/dropper, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "purple" + }, +/area/station/science/rnd) +"eLL" = ( +/obj/machinery/photocopier, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer Requests Console"; + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"eMe" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/evidence) +"eMu" = ( +/obj/machinery/door/airlock/vault{ + locked = 1; + name = "abandoned vault" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"eMw" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"eMV" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/detective) +"eMZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"eNi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"eNn" = ( +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"eNs" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/folder/blue, +/obj/item/megaphone, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"eND" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"eOd" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"eOI" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/decal/cleanable/dirt, +/obj/item/wirerod, +/obj/item/wirecutters, +/obj/item/crowbar/large, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"eOQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"ePp" = ( +/obj/structure/sign/explosives{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/asmaint) +"ePu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"ePE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"ePP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"ePV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/public/dorms) +"ePY" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/control) +"eQo" = ( +/obj/machinery/atmospherics/binary/volume_pump/on{ + name = "Waste In" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/atmos/control) +"eQB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"eQH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/maintenance/fsmaint) +"eQY" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"eRh" = ( +/obj/structure/table/wood, +/obj/machinery/smartfridge/id, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"eRn" = ( +/mob/living/simple_animal/mouse/gray, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"eSa" = ( +/obj/structure/chair/sofa/corp/right, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"eSg" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"eSr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/apmaint) +"eSw" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + 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/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"eSz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"eTj" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/equipmentstorage) +"eTn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hos) +"eTp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"eTO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/security/storage) +"eTV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"eUh" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"eUi" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/camera{ + c_tag = "Engineering Secure Storage West"; + dir = 4; + network = list("SS13","Engineering") + }, +/obj/machinery/the_singularitygen/tesla, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"eUk" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/spawner/lootdrop/three_course_meal, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"eUq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table_frame, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/aft) +"eUA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"eUC" = ( +/obj/structure/morgue, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"eUF" = ( +/obj/machinery/camera{ + c_tag = "Fore Starboard Solar Access" + }, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/maintenance/fsmaint) +"eVD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"eVK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/sw) +"eVQ" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"eWx" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"eWA" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"eWB" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor{ + id_tag = "hos_secure_doors" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"eWC" = ( +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/simulated/floor/beach/sand, +/area/station/hallway/secondary/exit) +"eWH" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"eWK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"eXr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"eXy" = ( +/obj/machinery/alarm/directional/south, +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"eXA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"eXO" = ( +/obj/machinery/computer/card{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"eYV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + id = "xenobio2"; + name = "Chamber 2 Containment Blast Doors"; + pixel_y = 4; + req_one_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"eYY" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id_tag = "mechbay_outer"; + name = "Mech Bay Public Shutter" + }, +/obj/machinery/door_control/shutter/east{ + id = "mechbay_outer"; + name = "Outer Mech Bay Shutters Control"; + req_one_access_txt = "29" + }, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"eZi" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/engineering/control) +"eZo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"eZu" = ( +/obj/structure/chair/sofa/bench/left{ + cover_color = "#85130b"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/permabrig) +"eZM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"fah" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"fav" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/effect/spawner/lootdrop/officetoys, +/turf/simulated/floor/carpet, +/area/station/supply/qm) +"faB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"faK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id_tag = "mechbay_inner"; + name = "Mech Bay" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door_control/shutter/south{ + id = "mechbay_inner"; + name = "Inner Mech Bay Shutter Control"; + req_one_access_txt = "29" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"fbn" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"fbp" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/beaker/waterbottle/empty, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"fbz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"fbA" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/radio/intercom/locked/confessional{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"fbT" = ( +/obj/machinery/computer/general_air_control{ + autolink_sensors = list("mair_in_meter"="Mixed Air In","air_sensor"="Mixed Air Supply Tank","mair_out_meter"="Mixed Air Out","dloop_atm_meter"="Distribution Loop","wloop_atm_meter"="Waste Loop"); + dir = 1; + level = 3; + name = "Distribution and Waste Monitor" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"fbX" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/economy/vending/wallmed/directional/north, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/interrogation) +"fcb" = ( +/obj/machinery/porta_turret{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/aisat/atmos) +"fcd" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"fck" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"fct" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"fcH" = ( +/obj/item/latexballon, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"fcM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_barrier/possibly_welded_airlock, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"fcQ" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/door_control/bolt_control/south{ + id = "toilet_sec_2" + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/security/main) +"fda" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"fdb" = ( +/obj/machinery/door/airlock/command/cap, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/office/captain) +"fdd" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"fdg" = ( +/obj/machinery/atmospherics/trinary/tvalve/flipped{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"fdo" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"fdz" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "eng_s_tesla_vent"; + dir = 4 + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "eng_s_tesla_btn_ext"; + ext_door_link_id = "eng_s_tesla_door_ext"; + int_button_link_id = "eng_s_tesla_btn_int"; + int_door_link_id = "eng_s_tesla_door_int"; + pixel_y = 25; + req_access_txt = "10;13"; + vent_link_id = "eng_s_tesla_vent" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/engineering/control) +"fdC" = ( +/obj/effect/decal/warning_stripes/north, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"fdF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"fdN" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"fdX" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "cloning" + }, +/turf/simulated/floor/plating, +/area/station/medical/cloning) +"fea" = ( +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/obj/item/clothing/gloves/color/fyellow/old, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"feq" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/item/reagent_containers/food/condiment/enzyme, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"fes" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/computer/mob_battle_terminal/red, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"feA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"feH" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"feR" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/research_director, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/rd) +"feU" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"ffY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"fgr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/science/rnd) +"fgv" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"fhe" = ( +/obj/item/kirbyplants, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"fho" = ( +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"fhx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"fhE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"fhH" = ( +/obj/structure/table/glass/reinforced/plastitanium, +/obj/item/razor{ + pixel_x = 8; + pixel_y = -8 + }, +/obj/item/reagent_containers/glass/bottle/frostoil{ + pixel_y = 8; + pixel_x = 8 + }, +/obj/item/reagent_containers/glass/bottle/mutagen{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/reagent/hairgrownium{ + pixel_y = -10 + }, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = -10; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dust, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"fhY" = ( +/obj/item/tank/internals/emergency_oxygen/engi/empty, +/obj/item/tank/internals/emergency_oxygen/engi/empty, +/obj/structure/closet/crate/freezer/iv_storage, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"fig" = ( +/obj/machinery/disposal, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"fin" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/camera{ + c_tag = "Bar South"; + dir = 1 + }, +/obj/machinery/economy/slot_machine, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"fio" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"fiM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"fjd" = ( +/obj/structure/chair/sofa/corp/left, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"fjf" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"fjx" = ( +/obj/structure/closet/secure_closet/research_reagents, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"fjE" = ( +/obj/effect/spawner/window/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/hallway) +"fjM" = ( +/obj/machinery/hydroponics/constructable{ + desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays."; + name = "Prison hydroponics tray"; + using_irrigation = 1 + }, +/obj/item/seeds/onion, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"fjN" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"fjO" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = 32; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"fke" = ( +/obj/machinery/atmospherics/binary/valve/open, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"fki" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/maintcentral2) +"fko" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"fkC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/nightshifted/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/maintenance/aft) +"fkF" = ( +/obj/machinery/ai_slipper, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"fkT" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/bluegrid, +/area/station/aisat/hall) +"flm" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/generic, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"flW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"fma" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"fmd" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"fmg" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"fmk" = ( +/obj/machinery/hologram/holopad{ + pixel_x = -16 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/service/hydroponics) +"fmn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/asmaint) +"fmp" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"fmG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"fmH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"fmN" = ( +/obj/machinery/computer/arcade/battle{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"fmT" = ( +/obj/item/stack/tile/mineral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"fnd" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id_tag = "engsm2"; + name = "SM Radiation Security Lock" + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"fnP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/random/north, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"fnT" = ( +/obj/machinery/porta_turret{ + dir = 1 + }, +/obj/item/radio/intercom/locked/ai_private{ + broadcasting = 1; + dir = 1; + listening = 0; + pixel_y = -22 + }, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" + }, +/area/station/turret_protected/aisat/interior) +"fnV" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"fnX" = ( +/obj/machinery/door/airlock/command/qm/glass, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "qm" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/qm, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel, +/area/station/supply/qm) +"foi" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio3"; + name = "Chamber 3 Containment Blast Doors" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio2"; + name = "Chamber 2 Containment Blast Doors" + }, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"foC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"fpa" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"fpd" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"fpe" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"fpl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"fpG" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"fpO" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/space, +/area/space) +"fpT" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"fqk" = ( +/obj/structure/table/glass/reinforced/plastitanium, +/obj/item/instrument/bikehorn{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dust, +/obj/item/storage/firstaid/surgery{ + icon_state = "duffel-syndimed" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"fqq" = ( +/obj/machinery/light/directional/east, +/obj/machinery/light_switch/east, +/obj/machinery/camera{ + c_tag = "Brig Cell Block A South"; + dir = 8 + }, +/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/sortjunction{ + dir = 2; + name = "Detective"; + sort_type_txt = "24" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "rampbottom" + }, +/area/station/security/prison/cell_block/A) +"fqt" = ( +/obj/item/storage/bag/plasticbag, +/obj/item/trash/fried_vox, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"fqI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"fqJ" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/coin/plasma, +/obj/item/book/manual/wiki/sop_general, +/obj/item/book/manual/wiki/sop_command, +/obj/item/megaphone, +/turf/simulated/floor/carpet/royalblue, +/area/station/command/office/captain) +"fqN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/terminal, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/engineering/gravitygenerator) +"fqR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"fqV" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"fqZ" = ( +/obj/effect/decal/warning_stripes/white, +/obj/machinery/kitchen_machine/oven{ + pixel_y = 3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"frm" = ( +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"fry" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"frM" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/mask/balaclava, +/obj/effect/decal/warning_stripes/red, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"fsm" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/survival, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/abandonedbar) +"fsI" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/directional/north, +/obj/machinery/alarm/directional/north, +/obj/machinery/camera{ + c_tag = "Engineering Tesling Engine Room North"; + network = list("Singularity","SS13","Engineering") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"fsM" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio7"; + name = "Chamber 7 Containment Blast Doors" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio6"; + name = "Chamber 6 Containment Blast Doors" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"fsQ" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"fsR" = ( +/obj/item/kirbyplants, +/obj/machinery/status_display/directional/west, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"fsW" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Engineering Lobby East"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"ftl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/east) +"ftm" = ( +/obj/machinery/hydroponics/constructable{ + desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays."; + name = "Prison hydroponics tray"; + using_irrigation = 1 + }, +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/item/seeds/amanita, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"ftt" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"ftM" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/light_switch/west, +/obj/machinery/photocopier, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"ftW" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/computer/general_air_control/large_tank_control{ + autolink_sensors = list("waste_sensor"="Tank"); + dir = 1; + inlet_injector_autolink_id = "waste_in"; + name = "Gas Mix Tank Control"; + outlet_vent_autolink_id = "waste_out" + }, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/engineering/atmos) +"fuy" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"fuz" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel, +/area/station/hallway/primary/central/nw) +"fuH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"fvf" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"fvi" = ( +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"fvq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"fvs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/structure/rack, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"fvy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/brig) +"fvT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/robotics) +"fvV" = ( +/obj/structure/table, +/obj/item/toy/crayon/spraycan, +/obj/item/deck/cards, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"fwa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"fwc" = ( +/obj/machinery/door_control/shutter/north{ + id = "smstorage"; + name = "Supermatter Storage"; + pixel_x = 24; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"fwf" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"fwy" = ( +/obj/item/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"fwA" = ( +/obj/machinery/requests_console{ + department = "Detective"; + departmentType = 5; + name = "Detective Requests Console"; + pixel_y = -30 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/wood/oak, +/area/station/security/detective) +"fwF" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"fwZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"fxr" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plasteel, +/area/station/security/storage) +"fxu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"fxD" = ( +/obj/machinery/camera{ + c_tag = "Research Access"; + network = list("Research","SS13") + }, +/obj/structure/sink/directional/west, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"fxN" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"fxP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/bedsheet/orange, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/permabrig) +"fxU" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/directional/west, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"fys" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall, +/area/station/maintenance/fsmaint) +"fyM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"fyQ" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "HydroHallway"; + name = "Hydroponics Shutters" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/service/hydroponics) +"fyR" = ( +/obj/machinery/power/compressor{ + comp_id = "incineratorturbine"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/engine/vacuum, +/area/station/maintenance/turbine) +"fyV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"fza" = ( +/obj/machinery/conveyor/east{ + id = "garbage" + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"fzl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"fzq" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"fzC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"fzT" = ( +/obj/structure/table/wood, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"fAd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"fAn" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"fAt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"fAw" = ( +/obj/machinery/tcomms/core/station, +/obj/machinery/camera{ + c_tag = "Telecommunications Core"; + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/telecomms/chamber) +"fAC" = ( +/obj/machinery/power/solar{ + name = "Aft Port Solar Array" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/engineering/solar/port) +"fAH" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed{ + pixel_x = 3; + pixel_y = -5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"fAL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/service/chapel/office) +"fAN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/warden) +"fAO" = ( +/obj/structure/railing/cap/normal, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"fBj" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/public/toilet/lockerroom) +"fBk" = ( +/obj/structure/table, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/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/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/science/misc_lab) +"fBw" = ( +/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/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"fBy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/molten_object/large, +/obj/effect/decal/remains/human, +/obj/structure/railing/cap/normal{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/abandonedbar) +"fBH" = ( +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/item/grenade/chem_grenade, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"fBN" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"fCh" = ( +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/ne) +"fCA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"fCJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"fCX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"fDa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"fDc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"fDd" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"fDp" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"fDJ" = ( +/turf/simulated/wall/r_wall, +/area/station/science/toxins/launch) +"fDM" = ( +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"fDP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/fire{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/binary/pump{ + name = "Fuel Pipe to Incinerator" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"fDU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"fEx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"fEE" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"fEI" = ( +/obj/structure/sign/poster/official/safety_internals{ + pixel_x = 30 + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"fEN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"fEO" = ( +/obj/structure/chair/stool/bar{ + dir = 8 + }, +/turf/simulated/floor/beach/sand, +/area/station/hallway/secondary/exit) +"fEP" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "open"; + id_tag = "representative"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/office/ntrep) +"fET" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"fFz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"fFC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"fFF" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"fFO" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/se) +"fFY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"fGr" = ( +/turf/simulated/floor/transparent/glass, +/area/station/command/bridge) +"fGH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"fGI" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"fGT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door_control/shutter/east{ + id = "maintcham"; + name = "Containment Control" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"fHe" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "rampbottom" + }, +/area/station/security/prison/cell_block/A) +"fHg" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/carpet/black, +/area/station/maintenance/fsmaint) +"fHs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/fpmaint) +"fHA" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/black, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"fHD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"fHE" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluecorners" + }, +/area/station/science/server/coldroom) +"fIB" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/service/mime) +"fIC" = ( +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/command/bridge) +"fIP" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "scene" + }, +/turf/simulated/floor/plating, +/area/station/service/bar/atrium) +"fIU" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"fJa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/xenobio{ + pixel_x = -31 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"fJe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"fJg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/engine{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/power/apc/super/north, +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Gas to Filter" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"fJu" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"fJD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"fJK" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"fJX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"fKf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"fKW" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"fLX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/lobby) +"fMa" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"fMb" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/station/science/xenobiology) +"fMc" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/equipmentstorage) +"fMn" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"fMG" = ( +/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/plasteel, +/area/station/hallway/secondary/entry) +"fMK" = ( +/mob/living/simple_animal/mouse, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"fMM" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"fMR" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Transfer" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/prisonlockers) +"fMY" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) +"fNa" = ( +/obj/effect/decal/cleanable/dirt, +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"fNk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"fNC" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"fNH" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "stage_bleft" + }, +/area/station/maintenance/fsmaint) +"fNQ" = ( +/obj/machinery/newscaster/security_unit/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/brig) +"fOi" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"fOq" = ( +/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/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"fOP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"fOQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"fPq" = ( +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"fPr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"fPx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"fPy" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/rd) +"fPF" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/qm) +"fPR" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"fQr" = ( +/obj/structure/table, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"fQw" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/stamp/captain{ + pixel_x = -10 + }, +/obj/machinery/door_control/normal{ + id = "captainofficedoor"; + name = "Office Door"; + pixel_y = -3; + req_one_access_txt = "20" + }, +/turf/simulated/floor/carpet/royalblue, +/area/station/command/office/captain) +"fQI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"fRo" = ( +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/obj/structure/chair, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"fRp" = ( +/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/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"fRv" = ( +/turf/simulated/floor/plating, +/area/station/security/main) +"fRK" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/alarm/directional/east, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool, +/obj/machinery/camera{ + c_tag = "AI Satellite Service Bay"; + dir = 8; + network = list("SS13","MiniSat") + }, +/turf/simulated/floor/plating, +/area/station/aisat/service) +"fRL" = ( +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"fSi" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "evamaint_vent"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"fSH" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"fSJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"fSM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/station/maintenance/aft) +"fSV" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Closet Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/turf/simulated/floor/plating, +/area/station/service/janitor) +"fTc" = ( +/obj/structure/closet/crate{ + name = "solar pack crate" + }, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/circuitboard/solar_control, +/obj/item/tracker_electronics, +/obj/item/paper/solar, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"fTt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Gas to Mix" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"fTy" = ( +/obj/machinery/smartfridge/secure/extract, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"fTz" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"fTD" = ( +/obj/machinery/plantgenes, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/hydroponics) +"fTO" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"fTR" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"fTV" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"fUk" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"fUC" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/morgue{ + dir = 1 + }, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plating, +/area/station/medical/morgue) +"fUQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"fUW" = ( +/obj/structure/sign/biohazard, +/turf/simulated/wall/r_wall, +/area/station/science/toxins/mixing) +"fVg" = ( +/obj/effect/decal/cleanable/dust, +/obj/item/trash/can, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/oak, +/area/station/maintenance/abandonedbar) +"fVk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"fVq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/west) +"fVy" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"fVY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"fWj" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/landmark/start/chemist, +/obj/structure/chair/stool, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"fWk" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"fWl" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"fWu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"fWJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"fWP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"fWQ" = ( +/obj/machinery/light/directional/north, +/obj/item/storage/box/monkeycubes, +/turf/simulated/floor/plasteel, +/area/station/science/genetics) +"fXo" = ( +/mob/living/simple_animal/bot/cleanbot{ + on = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" + }, +/area/station/aisat/service) +"fXt" = ( +/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/plasteel, +/area/station/engineering/atmos) +"fXK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"fXL" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"fXQ" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/door_control/shutter/west{ + id = "teleshutter"; + name = "Teleporter Shutters Access Control"; + req_one_access_txt = "62" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"fYe" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"fYg" = ( +/obj/machinery/door_control/bolt_control/east{ + id = "toilet_unitb" + }, +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"fYu" = ( +/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" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"fYx" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/landmark/start/chemist, +/obj/structure/chair/stool, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"fYN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/remains/mouse, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"fZu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/extinguisher, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/asmaint) +"fZy" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on{ + dir = 1 + }, +/turf/simulated/floor/engine/vacuum, +/area/station/maintenance/turbine) +"fZC" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/obj/machinery/ai_status_display/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/ward) +"fZD" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/sop_engineering{ + pixel_x = -3 + }, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = 3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/break_room) +"fZM" = ( +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/airlock/command, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/command/bridge) +"fZO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/assembly/mousetrap/armed, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/maintenance/abandonedbar) +"fZX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"gan" = ( +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"gaS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"gaY" = ( +/turf/simulated/wall/r_wall, +/area/station/command/meeting_room) +"gbs" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "purple" + }, +/area/station/science/hallway) +"gby" = ( +/obj/effect/turf_decal/bot, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"gbM" = ( +/obj/structure/table, +/obj/machinery/door_control/shutter{ + id = "durka1"; + name = "Privacy Shutters Control"; + pixel_x = 6; + pixel_y = 8 + }, +/obj/machinery/door_control/shutter{ + id = "durka2"; + name = "Privacy Shutters Control"; + pixel_x = -6; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"gce" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"gdp" = ( +/obj/machinery/light/directional/north, +/obj/structure/sign/poster/official/healthy{ + pixel_y = 32 + }, +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"gdq" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"gdy" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/reinforced/normal{ + dir = 1; + name = "Engineering Checkpoint" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/general{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"gdP" = ( +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/primary/starboard/east) +"gdQ" = ( +/obj/structure/sink/directional/west, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"gdX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/mattress/dirty{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"geb" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"gei" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"geo" = ( +/obj/machinery/ai_status_display/north, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"geH" = ( +/obj/structure/chair/sofa{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"geX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/ward) +"gff" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"gfo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/lobby) +"gfC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"gfW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"ggd" = ( +/obj/machinery/computer/arcade/recruiter{ + dir = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"ggr" = ( +/obj/item/stack/rods{ + amount = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"ggB" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"ggC" = ( +/obj/structure/table/glass, +/obj/item/taperecorder{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/simulated/floor/light/purple, +/area/station/service/bar/atrium) +"ggD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"ggI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"ggO" = ( +/obj/machinery/camera{ + c_tag = "Teleporter Room" + }, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"ghg" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ghP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"ghQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/plasteel, +/area/station/hallway/primary/port) +"ghR" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/glasses/meson, +/obj/machinery/door_control/shutter/north{ + desc = "A remote control-switch for the SM Radiation Security Shutters"; + id = "engsm2"; + name = "SM Door Radiation Shutters Control" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"ghU" = ( +/obj/structure/table/glass, +/obj/item/storage/box/masks{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/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 = -8; + pixel_y = 4 + }, +/obj/item/storage/box/gloves{ + pixel_x = 5; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"gim" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Port Solar Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"gin" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"giy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"giQ" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"giR" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/poddoor{ + id_tag = "hos_secure_doors" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"giX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"gji" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"gjN" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"gjP" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/chair/sofa{ + color = "#85130b"; + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"gkf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"gkm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"gkn" = ( +/obj/machinery/light_switch/west, +/obj/item/kirbyplants, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"gkw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/spawner/xeno, +/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, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"gkC" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"gll" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"glv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/carpet/cyan, +/area/station/security/prison/cell_block/A) +"gly" = ( +/obj/machinery/economy/slot_machine, +/obj/structure/sign/poster/contraband/random/east, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/port) +"glD" = ( +/obj/machinery/camera{ + c_tag = "Departure Lounge North-West"; + dir = 4 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"glM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"glP" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"glR" = ( +/obj/machinery/door/airlock/virology{ + autoclose = 0; + id_tag = "viro_door_int"; + locked = 1; + name = "Virology Lab Internal Airlock" + }, +/obj/machinery/access_button/west{ + autolink_id = "viro_btn_int"; + name = "Virology Lab Access Button" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/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/mapping_helpers/airlock/access/any/medical/virology, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"gmn" = ( +/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/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"gmu" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"gmE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/flashlight/seclite{ + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/abandonedbar) +"gmF" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"gmU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"gmW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"gnB" = ( +/obj/structure/closet/coffin, +/obj/structure/sign/holy{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"gnG" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"gnV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/wire_splicing/thirty, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"goq" = ( +/obj/structure/largecrate, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"goy" = ( +/turf/simulated/wall, +/area/station/security/prisonlockers) +"goA" = ( +/obj/machinery/door/firedoor, +/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/machinery/door/airlock/service{ + name = "Bar Office" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar) +"goC" = ( +/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" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/hallway/primary/fore) +"goJ" = ( +/obj/structure/falsewall, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"goN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/exit) +"goS" = ( +/obj/structure/chair/comfy/black, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"goX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"gpa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/qm) +"gpk" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"gpp" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plating, +/area/station/maintenance/fsmaint) +"gpx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "Secure Storage"; + name = "Secure Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/secure_storage) +"gpB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/computerframe{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/aft) +"gpH" = ( +/obj/structure/table/wood, +/obj/item/newspaper, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"gqn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"gqq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"gqr" = ( +/obj/machinery/holosign_switch/east{ + id = "surgery2"; + pixel_y = 8 + }, +/obj/machinery/light_switch/east{ + pixel_y = -8 + }, +/obj/machinery/button/windowtint/east{ + id = "surgery2" + }, +/obj/structure/closet/crate/freezer/iv_storage, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"gqu" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"gqA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"gqN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"gqW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"gru" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + layer = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/atmos) +"grw" = ( +/obj/structure/cable{ + 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 = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"grC" = ( +/obj/structure/table, +/obj/structure/bedsheetbin{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/fsmaint) +"grH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"gsd" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/south, +/obj/item/reagent_containers/food/drinks/mug/novelty, +/obj/effect/spawner/lootdrop/officetoys, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"gsg" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"gsh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"gsx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"gsN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"gsQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blackcorner" + }, +/area/station/security/permabrig) +"gsS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"gsY" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"gta" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"gtx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "black" + }, +/area/station/security/permabrig) +"gtB" = ( +/obj/effect/decal/warning_stripes/yellow/partial, +/obj/effect/decal/warning_stripes/arrow, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"gtV" = ( +/obj/structure/cable{ + 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/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"gtW" = ( +/obj/machinery/newscaster/security_unit/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/carpet/royalblue, +/area/station/command/office/captain) +"gug" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"guy" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/permabrig) +"guJ" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/paper/tcommskey{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/stamp/ce{ + pixel_x = 7 + }, +/obj/item/pen/multi{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/ce) +"guK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/maintenance/fsmaint) +"guQ" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/saltshaker, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -7 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"guR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/economy/atm/north, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar) +"gvg" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"gvh" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/bag/tray, +/obj/item/storage/bag/tray, +/obj/item/storage/bag/tray, +/obj/item/storage/bag/tray, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/utensil/pspoon, +/obj/item/kitchen/utensil/pspoon, +/obj/item/kitchen/utensil/pspoon, +/obj/item/kitchen/utensil/pfork, +/obj/item/kitchen/utensil/pfork, +/obj/item/kitchen/utensil/pfork, +/obj/item/trash/snack_bowl, +/obj/item/trash/snack_bowl, +/obj/item/trash/snack_bowl, +/obj/item/trash/snack_bowl, +/obj/item/trash/snack_bowl, +/obj/item/trash/snack_bowl, +/obj/item/seeds/ambrosia, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"gvi" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"gvW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"gwb" = ( +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"gwo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"gww" = ( +/obj/machinery/fishtank/bowl, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"gwx" = ( +/obj/machinery/hologram/holopad{ + pixel_x = 16 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"gwz" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"gwH" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 4; + filter_type = 2; + name = "Gas filter (N2 tank)"; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"gxb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"gxl" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"gxE" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/mime, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"gxW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"gyA" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"gyR" = ( +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/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/plasteel, +/area/station/command/bridge) +"gyS" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio4"; + name = "Chamber 4 Containment Blast Doors" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio3"; + name = "Chamber 3 Containment Blast Doors" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"gzl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/nw) +"gzz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall, +/area/station/maintenance/asmaint) +"gzN" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/apmaint) +"gzQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"gzU" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"gAk" = ( +/obj/effect/landmark/start/shaft_miner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/supply/miningdock) +"gAm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/space/nearstation) +"gAt" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"gAF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"gAS" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"gAY" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"gBh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"gBF" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/southwest, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"gCl" = ( +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"gCr" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"gCU" = ( +/obj/structure/punching_bag, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"gCV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"gCX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Engineering Atmos West"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"gDp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id_tag = "telescienceblast"; + name = "test chamber blast doors" + }, +/obj/effect/turf_decal/stripes/full, +/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/engine, +/area/station/science/explab/chamber) +"gDJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/atmos) +"gDS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"gDU" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"gEb" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"gEd" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"gEj" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/structure/sign/poster/contraband/random/west, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"gEs" = ( +/obj/structure/dresser, +/obj/item/toy/figure/crew/cmo{ + pixel_y = 14 + }, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"gEH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"gEL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"gFm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"gFt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/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/plasteel, +/area/station/hallway/primary/central/sw) +"gFG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "holodeck" + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"gFS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/station/service/library) +"gFU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"gFV" = ( +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/science/hallway) +"gFW" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"gFX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"gGk" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door_control/shutter/south{ + desc = "A remote control-switch for the SM Radiation Security Shutters"; + id = "engsm2"; + name = "SM Door Radiation Shutters Control" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"gGq" = ( +/obj/machinery/door/airlock/bathroom{ + name = "Unisex Restrooms" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"gGO" = ( +/obj/structure/displaycase/captain, +/obj/machinery/light/directional/east, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"gGQ" = ( +/obj/effect/landmark/spawner/rev, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"gGR" = ( +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"gGY" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"gHg" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Chamber"; + network = list("SS13","engine","Engineering") + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"gHx" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"gHL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/engineering/atmos) +"gIn" = ( +/obj/item/lighter/random, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"gIp" = ( +/obj/effect/landmark/spawner/rev, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"gIr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"gIy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/aft) +"gIU" = ( +/obj/machinery/door/airlock/wood{ + desc = "No solicitors please."; + name = "Private Residence" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"gJa" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"gJd" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"gJl" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/station/turret_protected/aisat/interior) +"gJF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"gJH" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"gKn" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"gKs" = ( +/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/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hos) +"gKF" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"gKL" = ( +/obj/effect/spawner/wire_splicing/thirty, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"gKN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/medbay) +"gKS" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/sign/nosmoking_1, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/medical/reception) +"gLe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"gLu" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/hallway) +"gLA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"gLG" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/hallway) +"gLN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"gMa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/dough{ + desc = "A piece of dough. It looks moldy and is hard as a rock. Hope you're not planning on turning this into a pizza.."; + name = "old dough" + }, +/obj/item/kitchen/rollingpin, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fpmaint2) +"gMc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/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/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"gMl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"gMv" = ( +/obj/item/ashtray/bronze, +/obj/item/lighter/zippo/blue{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/table/wood, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"gMH" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/item/storage/secure/safe{ + pixel_x = -27; + pixel_y = 5 + }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/storage/fancy/candle_box/eternal{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/storage/fancy/candle_box/eternal{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box/eternal{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/flashlight/lamp{ + layer = 3.2 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/service/bar) +"gMP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/gravitygenerator) +"gNe" = ( +/obj/structure/table/reinforced, +/obj/machinery/flasher{ + id = "hopflash"; + pixel_x = -6; + pixel_y = 24 + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 4; + name = "Head of Personnel's Desk" + }, +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Head of Personnel's Desk" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "hop"; + name = "Privacy Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/hop{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/command/office/hop) +"gNf" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"gNs" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"gNQ" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"gNY" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"gOa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/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/plasteel, +/area/station/maintenance/aft) +"gOd" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/exit) +"gOk" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/hydroponics/soil, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"gOm" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/southeastcorner, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"gOo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"gOw" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + name = "Aft Port Solar Array" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/engineering/solar/port) +"gOE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"gOF" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"gOI" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/carpet/black, +/area/station/maintenance/fsmaint) +"gOK" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/arrow{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "hopqueue"; + name = "Privacy Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/command/office/hop) +"gPb" = ( +/obj/machinery/hydroponics/soil, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/grass, +/area/station/maintenance/asmaint) +"gPj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"gPk" = ( +/obj/structure/closet, +/obj/item/stack/spacecash/c5, +/obj/effect/spawner/lootdrop/trash, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"gPM" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"gPW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"gQi" = ( +/obj/machinery/light/small/directional/west, +/obj/item/radio/intercom/directional/west, +/obj/machinery/computer/cryopod/robot{ + pixel_x = -30; + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkbluecorners" + }, +/area/station/aisat/service) +"gQs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Equipment Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/equipmentstorage) +"gQD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/command/office/rd) +"gQK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"gQN" = ( +/obj/effect/spawner/random_barrier/possibly_welded_airlock, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"gRe" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"gRp" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/medical/patients_rooms) +"gRB" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern{ + on = 1 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/carpet/black, +/area/station/maintenance/fsmaint) +"gRE" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CE" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/command/office/ce) +"gRU" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"gSa" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"gSd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"gSE" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/exit) +"gSJ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"gSN" = ( +/obj/machinery/conveyor/east{ + id = "QMLoad2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"gSP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"gSR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "purple" + }, +/area/station/science/hallway) +"gST" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"gSU" = ( +/obj/structure/curtain/open/shower{ + anchored = 1 + }, +/obj/machinery/shower{ + pixel_y = 20 + }, +/obj/item/camera_assembly, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/abandonedbar) +"gSY" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"gTH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"gTQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/north) +"gTX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/prison/cell_block/A) +"gUh" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"gUm" = ( +/obj/machinery/camera{ + c_tag = "Departure Lounge North-East" + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"gUp" = ( +/obj/item/holder/mouse, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"gUq" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"gUO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/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/plasteel, +/area/station/supply/storage) +"gVb" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"gVp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"gVs" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"gVt" = ( +/obj/structure/table, +/obj/machinery/microscope{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/security/detective) +"gVu" = ( +/obj/machinery/camera{ + c_tag = "Research Hallway South"; + dir = 4; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"gVC" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"gVD" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/restraints/handcuffs/cable/blue, +/obj/structure/sink/kitchen/north, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"gVE" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/brig) +"gVT" = ( +/obj/structure/table, +/obj/item/ashtray/glass, +/obj/machinery/light_switch/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "purple" + }, +/area/station/science/hallway) +"gVU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellowcorners" + }, +/area/station/science/robotics/chargebay) +"gVX" = ( +/turf/simulated/floor/plasteel/stairs/right, +/area/station/engineering/equipmentstorage) +"gWp" = ( +/obj/machinery/doppler_array{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"gWv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"gWI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"gWV" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Bar Delivery" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/bar{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/service/bar) +"gWZ" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "perma_door_ext"; + locked = 1; + name = "Prison Wing" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + 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/machinery/door/firedoor, +/obj/machinery/access_button{ + autolink_id = "perma_btn_ext"; + name = "Prison Wing Access Button"; + pixel_y = 21; + req_one_access_txt = "2" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/effect/turf_decal/stripes/red/full, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"gXj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/cap/reversed{ + dir = 4 + }, +/obj/effect/decal/remains/mouse, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/abandonedbar) +"gXo" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"gXL" = ( +/obj/machinery/door/window/classic/reversed{ + name = "Toxins Launcher"; + req_one_access_txt = "7" + }, +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Toxins Launcher"; + req_one_access_txt = "7" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/tox, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/tox{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"gXX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"gYf" = ( +/obj/machinery/atmospherics/binary/volume_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/engineering/atmos) +"gYk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"gYq" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"gYr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"gYs" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/apmaint) +"gYM" = ( +/obj/structure/rack, +/obj/item/flashlight, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "vault" + }, +/area/station/engineering/aitransit) +"gYO" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"gYV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/service/chapel/office) +"gZc" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"gZg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plating, +/area/station/maintenance/fpmaint) +"gZn" = ( +/obj/effect/spawner/random_spawners/cobweb_left_rare, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"gZo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"gZH" = ( +/obj/effect/decal/remains/human, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"gZS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"gZW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"gZX" = ( +/obj/machinery/light/directional/east, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay Requests Console"; + pixel_x = 32 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/item/folder/white, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"hae" = ( +/obj/structure/reagent_dispensers/fueltank{ + desc = "Вагончик с топливом. Достаточно лёгкий, видать не полный. Интересно, кто его тут оставил..."; + tank_volume = 1000 + }, +/turf/simulated/floor/plating, +/area/station/service/bar) +"hak" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/light/small/directional/east, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/fsmaint) +"hau" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/ai_slipper, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/service) +"haz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "black" + }, +/area/station/security/permabrig) +"haD" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/power/apc/directional/west, +/obj/machinery/camera{ + c_tag = "Dormitories Toilets"; + dir = 4 + }, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/public/toilet) +"haU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"hba" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/station/command/office/captain/bedroom) +"hbb" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"hbc" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/ward) +"hbq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/hallway) +"hbu" = ( +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/structure/rack, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"hbP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"hcb" = ( +/obj/item/radio/intercom, +/turf/simulated/wall, +/area/station/engineering/atmos) +"hcz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/obj/machinery/atmospherics/meter, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"hcA" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkbluecorners" + }, +/area/station/medical/ward) +"hcE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/science/explab/chamber) +"hcZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"hdS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"hdW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "purple" + }, +/area/station/maintenance/asmaint) +"hea" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/engineering/control) +"hen" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"hes" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"het" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"hew" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/structure/sink/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/maintenance/abandonedbar) +"heL" = ( +/obj/machinery/door/airlock, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"heW" = ( +/obj/effect/decal/cleanable/dust, +/obj/item/stack/sheet/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fsmaint) +"hfb" = ( +/obj/machinery/atmospherics/binary/volume_pump/on{ + dir = 1; + name = "Space Loop Out" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"hft" = ( +/obj/structure/lattice/catwalk, +/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/space, +/area/space/nearstation) +"hfu" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"hfD" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkyellow" + }, +/area/station/science/robotics/chargebay) +"hgb" = ( +/obj/structure/chair, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"hgT" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + on = 0; + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/cane{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/west, +/obj/machinery/light/nightshifted/west, +/obj/machinery/button/windowtint/east{ + id = "psych"; + pixel_y = -2; + pixel_x = 18 + }, +/obj/item/clothing/glasses/hud/skills, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"hgU" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution/red{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"hhf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"hhh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"hhk" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/poddoor/preopen{ + id_tag = "bridge blast west"; + name = "Bridge Blast Doors" + }, +/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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"hhl" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"hhn" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"hhz" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/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/plating, +/area/station/maintenance/fpmaint2) +"hhV" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/sign/fire{ + pixel_x = 32 + }, +/obj/machinery/access_button/south{ + autolink_id = "turbine_btn_int"; + layer = 3.1; + name = "Gas Turbine Airlock Control"; + pixel_x = -8 + }, +/obj/machinery/atmospherics/binary/pump/on, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"hhW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/science/rnd) +"hhX" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Prison Cafeteria" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/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/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"hib" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/interrogation) +"hir" = ( +/obj/item/candle, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/maintenance/fsmaint) +"hit" = ( +/obj/structure/sign/securearea, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/ai_monitored/storage/eva) +"hiw" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/directional/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/west) +"hiM" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"hiO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Prison Entry"; + dir = 6; + network = list("Prison","SS13") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/obj/machinery/flasher{ + id = "prison"; + pixel_x = 16; + pixel_y = 22 + }, +/obj/machinery/flasher_button{ + id = "prison"; + pixel_x = -10; + pixel_y = 20 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"hiQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"hju" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/service/chapel/office) +"hjH" = ( +/obj/machinery/light/directional/east, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/wood, +/obj/item/toner, +/obj/item/toner{ + pixel_y = 6 + }, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"hjO" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/stamp/mime{ + pixel_x = -8 + }, +/obj/item/toy/crayon/mime, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"hjR" = ( +/obj/machinery/conveyor/east{ + id = "garbage" + }, +/obj/machinery/recycler, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"hjX" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/security/permabrig) +"hke" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"hkN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"hld" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/sign/electricshock{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"hlq" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/camera{ + c_tag = "Medbay Cryogenics"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/thermomachine/freezer/on{ + dir = 1; + name = "Temperature control unit" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"hlG" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"hlI" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + density = 0; + dir = 2; + icon_state = "open"; + id_tag = "blueshield"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/command/office/blueshield) +"hlM" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"hmj" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/remains/mouse, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/maintenance/abandonedbar) +"hmq" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"hmu" = ( +/obj/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"hmR" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/turretid/stun{ + control_area = "\improper AI Satellite Service"; + name = "AI Satellite Service Bay Turret Control"; + pixel_x = 24; + req_one_access_txt = "75" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/station/turret_protected/aisat/interior) +"hmS" = ( +/obj/effect/decal/remains/mouse, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"hnb" = ( +/obj/machinery/ai_status_display/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/exit) +"hng" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) +"hnk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"hnB" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/reagent_containers/syringe/antiviral{ + pixel_y = 4 + }, +/obj/item/reagent_containers/dropper/precision{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/reagent_dispensers/virusfood/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"hnS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"hnY" = ( +/obj/machinery/light/directional/north, +/obj/structure/table, +/obj/item/bonegel, +/obj/item/bonesetter, +/obj/item/FixOVein, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/science/robotics) +"hod" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"hoz" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/decal/warning_stripes/blue, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"hoB" = ( +/obj/docking_port/stationary{ + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + width = 9 + }, +/turf/space, +/area/space) +"hoD" = ( +/obj/machinery/access_button{ + autolink_id = "fpsolar_btn_int"; + pixel_x = 25; + pixel_y = 25; + req_one_access_txt = "13" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"hoJ" = ( +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/disposal) +"hpd" = ( +/obj/machinery/atmospherics/binary/pump{ + name = "Air Out" + }, +/turf/simulated/floor/plating, +/area/station/aisat/atmos) +"hpr" = ( +/obj/structure/cable{ + 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/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"hpP" = ( +/obj/structure/table, +/obj/item/storage/fancy/rollingpapers, +/obj/item/storage/box/matches, +/obj/item/seeds/tobacco, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"hpQ" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"hpR" = ( +/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/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"hpY" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"hqe" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP2"; + location = "Stbd" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"hqi" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/port) +"hqo" = ( +/obj/item/stack/sheet/mineral/plasma{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/table/glass, +/obj/machinery/newscaster/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"hqC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/radio/intercom/locked/prison{ + name = "Prison Intercom (General)"; + pixel_y = 22 + }, +/obj/effect/decal/warning_stripes/northeastcorner, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"hra" = ( +/obj/item/trash/tastybread, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"hrg" = ( +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "air_sensor"; + output = 127 + }, +/turf/simulated/floor/engine/air, +/area/station/engineering/atmos) +"hri" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"hrm" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"hrq" = ( +/obj/structure/janitorialcart, +/obj/machinery/light/directional/east, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/service/janitor) +"hrE" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/engineering/glass{ + id_tag = "englobby"; + name = "Engineering" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/hallway) +"hrK" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"hrS" = ( +/obj/structure/chair/comfy/black, +/obj/structure/chair/comfy/brown{ + color = "#514E58" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"hsk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"hsz" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/sign/poster/contraband/random/west, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/obj/structure/bed{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"hsB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"hsD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"hsO" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"hsP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"hsQ" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/toxins/mixing) +"hsZ" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"htr" = ( +/obj/structure/closet/walllocker/firelocker/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/command/bridge) +"htR" = ( +/obj/structure/chair/sofa/right{ + color = "#85130b"; + dir = 4 + }, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"htV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"htY" = ( +/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/plasteel, +/area/station/hallway/primary/central/west) +"hua" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/rpd, +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"hug" = ( +/obj/structure/sign/poster/official/random/east, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"huo" = ( +/obj/structure/chair/stool, +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"huD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"huR" = ( +/obj/item/crowbar/red, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/maintenance/aft) +"hvc" = ( +/obj/effect/decal/cleanable/dirt, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"hvR" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"hwC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall, +/area/station/maintenance/asmaint2) +"hwE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"hwH" = ( +/obj/structure/closet/firecloset, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"hwW" = ( +/obj/effect/decal/cleanable/dust, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"hxx" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 2 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"hxJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dust, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/structure/bed{ + dir = 1 + }, +/obj/item/bedsheet/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fsmaint) +"hyj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"hyk" = ( +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"hyv" = ( +/obj/structure/cable, +/obj/machinery/power/apc/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/computer/security{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/station/telecomms/chamber) +"hyx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"hyE" = ( +/obj/machinery/door/airlock/freezer{ + req_one_access_txt = "28" + }, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"hyH" = ( +/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/carpet, +/area/station/medical/psych) +"hyO" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/ears/earmuffs, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/decal/warning_stripes/north, +/obj/item/paper/firingrange, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"hyQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/supply/storage) +"hyR" = ( +/obj/item/toy/figure/crew/cargotech, +/obj/item/cartridge/quartermaster, +/obj/item/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/cartridge/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/secure_closet/quartermaster, +/obj/item/toy/figure/crew/qm, +/obj/item/coin/silver{ + pixel_y = 5; + pixel_x = 3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/qm) +"hzh" = ( +/obj/effect/decal/cleanable/dust, +/obj/item/kitchen/rollingpin, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"hzj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"hzy" = ( +/obj/machinery/hologram/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"hzG" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 4; + name = "Gas filter (Toxins tank)"; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"hzN" = ( +/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/station/maintenance/aft) +"hAh" = ( +/obj/structure/flora/rock/pile/largejungle, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"hAl" = ( +/obj/machinery/door/poddoor/shutters{ + id_tag = "paramedic"; + name = "Paramedic Garage" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/obj/machinery/door_control/shutter/north{ + id = "paramedic"; + name = "Garage Door Control"; + req_one_access_txt = "66" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/paramedic) +"hAx" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Kitchen Delivery" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"hAL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"hAR" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"hAX" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/power/apc/engineering/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"hBu" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/robotanalyzer, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"hBw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"hBF" = ( +/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/plasteel, +/area/station/command/bridge) +"hCn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"hCr" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"hCs" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"hCu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"hCz" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"hCF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"hCG" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"hCY" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/apmaint) +"hDd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/window/reinforced/tinted/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"hDf" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Science Maintenance" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/genetics, +/turf/simulated/floor/plating, +/area/station/science/genetics) +"hDl" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/permabrig) +"hDx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"hDI" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"hDJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/access_button{ + autolink_id = "assolar_btn_ext"; + pixel_x = 25; + pixel_y = 25; + req_one_access_txt = "13" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/starboard) +"hDN" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/effect/decal/remains/mouse/Pinkie, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"hDR" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "blue" + }, +/area/station/command/bridge) +"hDS" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/mug/sci, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"hEd" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"hEl" = ( +/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/plasteel{ + dir = 1; + icon_state = "bluered" + }, +/area/station/command/bridge) +"hEu" = ( +/obj/machinery/light_switch/west, +/obj/machinery/camera{ + c_tag = "Prisoner Lockers"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/prisonlockers) +"hEB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/science/server/coldroom) +"hEW" = ( +/obj/machinery/suit_storage_unit/ce, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"hEX" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/command/bridge) +"hFe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/aft) +"hFx" = ( +/obj/effect/spawner/window/reinforced/tinted/grilled, +/turf/simulated/floor/plating, +/area/station/service/chapel) +"hFz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"hFE" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"hFP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"hFW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"hFX" = ( +/obj/structure/bed, +/obj/item/bedsheet/cmo, +/obj/machinery/light/directional/east, +/obj/machinery/status_display/directional/east, +/obj/effect/landmark/start/chief_medical_officer, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"hGg" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "conference" + }, +/obj/machinery/door/airlock/command/glass{ + id_tag = "conference" + }, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"hGj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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/plasteel, +/area/station/maintenance/apmaint) +"hGM" = ( +/obj/structure/table/glass/reinforced/plastitanium, +/obj/item/reagent_containers/spray/cleaner{ + pixel_y = 12; + pixel_x = -8 + }, +/obj/item/bikehorn/rubberducky{ + pixel_y = 10; + pixel_x = 4 + }, +/obj/item/reagent_containers/food/snacks/grown/banana{ + pixel_x = -4; + pixel_y = -6; + initialized = 1 + }, +/obj/item/bikehorn{ + pixel_y = 4; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/dust, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"hGQ" = ( +/obj/structure/sign/poster/contraband/random/south, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"hGY" = ( +/obj/machinery/door/airlock/command/cap{ + id_tag = "captainofficedoor" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, +/obj/machinery/door/firedoor, +/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/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"hHp" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/aiModule/nanotrasen, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai_upload) +"hHt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"hHK" = ( +/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/decal/cleanable/dust, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"hIc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "black" + }, +/area/station/security/permabrig) +"hIm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/service/bar) +"hIC" = ( +/obj/machinery/door_timer/cell_1{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "rampbottom" + }, +/area/station/security/prison/cell_block/A) +"hIP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"hIY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/wire_splicing/thirty, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"hJj" = ( +/obj/machinery/computer/security/telescreen/engine, +/turf/simulated/wall/r_wall, +/area/station/engineering/supermatter_room) +"hJq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"hJA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/status_display/directional/north, +/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/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"hKc" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"hKe" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"hKw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"hKX" = ( +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/command/bridge) +"hLa" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/fsmaint) +"hLh" = ( +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/prisonlockers) +"hLk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/plating, +/area/station/maintenance/fore) +"hLl" = ( +/obj/item/restraints/handcuffs/cable/cyan, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/newscaster/directional/north, +/obj/item/storage/pill_bottle/random_drug_bottle{ + pixel_x = -12 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"hLu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"hLv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"hLB" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"hLC" = ( +/obj/machinery/door/window/classic/reversed{ + name = "Containment Pen" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio4"; + name = "Chamber 4 Containment Blast Doors" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"hLG" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "rdlab2"; + name = "Research and Development Lab Shutters" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Research and Development Desk" + }, +/obj/item/desk_bell{ + anchored = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/rnd) +"hLM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"hMr" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"hMt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/statue/cyberiad/ne, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blackcorner" + }, +/area/station/command/bridge) +"hMI" = ( +/obj/effect/spawner/window/reinforced/tinted/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"hML" = ( +/obj/machinery/camera{ + c_tag = "Prison Forestry External"; + network = list("Prison","SS13") + }, +/turf/space, +/area/space) +"hMV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/access_button{ + autolink_id = "aisat_btn_int"; + pixel_x = -25; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"hNd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"hNf" = ( +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/permabrig) +"hNr" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"hNy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"hNT" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"hOa" = ( +/obj/machinery/camera{ + c_tag = "Medbay Cloning"; + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/light_switch/west, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 10; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"hOf" = ( +/mob/living/simple_animal/pig/Sanya, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/service/hydroponics) +"hOh" = ( +/obj/machinery/door/airlock/maintenance{ + name = "E.V.A. Maintenance" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/command/eva, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"hOq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/spawner/xeno, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"hOz" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + id = "xenobio1"; + name = "Chamber 1 Containment Blast Door"; + pixel_y = 4; + req_one_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"hOA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mothroach{ + name = "Сеньйор"; + desc = "Мотылёк. Обожает светочи. Знает всю атмосферику, но из-за своего скверного характера не расскажет, даже если бы мог говорить." + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"hOJ" = ( +/obj/machinery/economy/vending/chefdrobe, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"hPx" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/structure/sign/poster/official/air1{ + pixel_x = 31 + }, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"hPB" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/break_room) +"hPE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"hPH" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkyellow" + }, +/area/station/science/robotics/chargebay) +"hPR" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"hQH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"hQV" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"hQW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/hallway) +"hRm" = ( +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"hRx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/statue/cyberiad/nw, +/turf/simulated/floor/plasteel{ + icon_state = "blackcorner" + }, +/area/station/command/bridge) +"hRF" = ( +/obj/structure/chair/sofa/bench/left, +/obj/machinery/newscaster/directional/north, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"hRN" = ( +/obj/machinery/washing_machine, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/grey_tide{ + pixel_y = 30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/maintenance/apmaint) +"hRS" = ( +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "eng_atmos_btn_ext"; + ext_door_link_id = "eng_atmos_door_ext"; + int_button_link_id = "eng_atmos_btn_int"; + int_door_link_id = "eng_atmos_door_int"; + pixel_y = 25; + req_access_txt = "10;13"; + vent_link_id = "eng_atmos_vent" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "eng_atmos_vent"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"hRY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/storage) +"hSD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/binary/pump{ + name = "Gas to Chamber" + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"hSN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"hSU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/ward) +"hTu" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"hTv" = ( +/obj/item/reagent_containers/glass/beaker/waterbottle/large, +/obj/structure/table, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"hTA" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/office) +"hTF" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Module East"; + dir = 1; + network = list("Research","SS13") + }, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"hTK" = ( +/obj/structure/sink/directional/west, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/science/hallway) +"hUa" = ( +/obj/structure/chair/stool/bar/dark{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/service/bar) +"hUh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/aft) +"hUj" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/sign/lifestar, +/turf/simulated/floor/plating, +/area/station/medical/cryo) +"hUm" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo"; + pixel_x = -5 + }, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"hUC" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"hUP" = ( +/obj/structure/closet/secure_closet/brig, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/prisonlockers) +"hUV" = ( +/obj/effect/spawner/window/reinforced/grilled, +/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/plating, +/area/station/engineering/smes) +"hUX" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/item/radio/intercom/locked/prison{ + name = "Prison Intercom (General)"; + pixel_y = 24 + }, +/mob/living/simple_animal/frog/scream{ + real_name = "лягушка-нонконформист"; + name = "лягушка-нонконформист"; + desc = "Кто-нибудь, заткните её пожалуйста!" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"hVD" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/command/office/hop) +"hVT" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/turf/space, +/area/space/nearstation) +"hWo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/engineering/gravitygenerator) +"hWr" = ( +/obj/machinery/computer/monitor{ + dir = 1; + name = "Engine Power Monitoring Computer" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"hWu" = ( +/obj/structure/table, +/obj/item/plant_analyzer, +/obj/item/storage/bag/plants/portaseeder, +/obj/structure/sign/poster/contraband/ambrosia_vulgaris{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/maintenance/asmaint) +"hWI" = ( +/obj/machinery/disposal, +/obj/machinery/light_switch/west, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/interrogation) +"hWQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"hWT" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/command/bridge) +"hXf" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"hXp" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/south, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"hXB" = ( +/obj/structure/chair/comfy/teal{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"hXR" = ( +/obj/structure/table/wood, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"hXT" = ( +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"hYf" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"hYk" = ( +/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, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"hYo" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/lighter/zippo/engraved{ + pixel_x = 8; + pixel_y = 2 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"hYr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"hYs" = ( +/obj/machinery/alarm/directional/east, +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"hZz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/ward) +"hZH" = ( +/obj/structure/closet/crate, +/obj/item/stack/nanopaste, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"hZN" = ( +/obj/structure/closet/cardboard, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"hZO" = ( +/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/plasteel, +/area/station/supply/office) +"hZR" = ( +/obj/machinery/camera{ + c_tag = "Engineering Singularity North-East"; + dir = 8; + network = list("SS13","Singularity","Engineering") + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"hZZ" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"iac" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"iag" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "prisoner supression system"; + target_pressure = 4500 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/permabrig) +"iai" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/pdapainter, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"ial" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"iam" = ( +/obj/structure/safe, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/item/grenade/smokebomb, +/obj/item/restraints/handcuffs, +/obj/item/clothing/suit/browntrenchcoat, +/obj/item/clothing/head/fedora/brownfedora, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/port) +"iat" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) +"iav" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"ibp" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/sign/kidanplaque{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"ibt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ibL" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"ibM" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/reagent_dispensers/oil, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"ibW" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"icn" = ( +/obj/structure/closet/l3closet/scientist, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"idn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/security/main) +"ido" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"idz" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"idF" = ( +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/smes) +"idY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/aft) +"ieb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"iek" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/exit) +"iev" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"iez" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/port) +"ieC" = ( +/obj/structure/table/tray, +/obj/item/storage/firstaid/surgery{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"ieI" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"ieP" = ( +/obj/item/seeds/cannabis, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/maintenance/asmaint) +"ieW" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + density = 0; + dir = 8; + icon_state = "open"; + id_tag = "blueshield"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/office/blueshield) +"ifJ" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"ifT" = ( +/obj/structure/table/wood, +/obj/machinery/bottler, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"ifV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/drinks/bottle/wine, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"ifW" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"igq" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"igV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"ihv" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"ihx" = ( +/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/plasteel, +/area/station/hallway/primary/starboard/west) +"ihJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/full, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"ihW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/atmos/control) +"iih" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + id_tag = "fssolar_door_ext"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"iip" = ( +/obj/machinery/ai_status_display/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"iis" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/maintenance/apmaint) +"iit" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"ijf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ijg" = ( +/obj/item/trash/pistachios, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"ijp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"ijw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"ijP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/binary/valve{ + dir = 4; + name = "port to heat exchange" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"ike" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/hallway/primary/central/sw) +"ikg" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/machinery/light/directional/north, +/obj/structure/sign/pods{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"iki" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/radio/intercom/directional/north, +/obj/structure/closet/crate, +/obj/item/hatchet, +/obj/item/hatchet{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/hatchet{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/storage/bag/plants/portaseeder, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"iks" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/atmos/control) +"ikx" = ( +/obj/structure/engineeringcart, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ikS" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"ilc" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/nanotrasen, +/obj/item/pen/multi/fountain, +/obj/item/hand_tele, +/turf/simulated/floor/carpet/royalblue, +/area/station/command/office/captain) +"ilj" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio4"; + name = "Chamber 4 Containment Blast Doors" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"ill" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/waterbottle/large, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"ilS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/public/dorms) +"imr" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"imB" = ( +/obj/machinery/optable, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/surgery/secondary) +"inc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"ind" = ( +/obj/structure/table/glass, +/obj/item/hand_labeler, +/obj/item/roller, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkpurple" + }, +/area/station/science/genetics) +"inj" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"inm" = ( +/obj/machinery/washing_machine, +/obj/effect/decal/cleanable/dust, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/fsmaint) +"inu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet, +/area/station/legal/magistrate) +"inv" = ( +/obj/structure/table, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 10 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 6 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = -2 + }, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"inD" = ( +/obj/effect/decal/cleanable/dirt, +/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/station/maintenance/fpmaint2) +"inP" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"inQ" = ( +/obj/structure/sign/biohazard, +/turf/simulated/wall/r_wall, +/area/station/science/xenobiology) +"inV" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"iot" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"iow" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"ioM" = ( +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/storage) +"ioU" = ( +/obj/machinery/disposal, +/obj/structure/sign/vacuum/external{ + pixel_x = -30 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/camera{ + c_tag = "Research Toxins Launch Room"; + dir = 4; + network = list("Research","SS13"); + pixel_y = -22 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"ipb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/spirit_board, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"ipe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"ipz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/security/lobby) +"ipA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ipF" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/space, +/area/space/nearstation) +"ipG" = ( +/obj/effect/decal/warning_stripes/green, +/obj/machinery/economy/vending/hydroseeds, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"ipJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/service/chapel) +"ipS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/public/dorms) +"iqf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/flasher{ + id = "Execution"; + pixel_y = 22 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"iqq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"iqI" = ( +/obj/structure/table, +/obj/item/rpd, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"iqN" = ( +/obj/machinery/door/firedoor, +/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/plasteel, +/area/station/hallway/primary/starboard/west) +"irE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Morgue" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/medical/morgue, +/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/mapping_helpers/airlock/access/any/medical/general, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/medical/morgue) +"irJ" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/station/command/office/ce) +"irV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"irY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/portables_connector{ + layer = 2 + }, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"isi" = ( +/obj/machinery/atmospherics/unary/thermomachine/heater, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/atmos) +"ism" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"isv" = ( +/obj/structure/statue/bananium/clown/unique, +/turf/simulated/floor/wood/oak, +/area/station/service/clown) +"isD" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"isE" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"isJ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/equipmentstorage) +"isK" = ( +/obj/structure/railing, +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"isZ" = ( +/obj/effect/decal/cleanable/dirt, +/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/plating, +/area/station/maintenance/fpmaint2) +"itH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"itZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/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/plating, +/area/station/maintenance/aft) +"iue" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"iun" = ( +/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" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"iuF" = ( +/obj/structure/falsewall, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"iuO" = ( +/obj/machinery/status_display/directional/north, +/obj/structure/transit_tube/station, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/engineering/aitransit) +"ivY" = ( +/obj/structure/sink/directional/west, +/obj/machinery/camera{ + c_tag = "Virology Airlock" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"ivZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio6"; + name = "Chamber 6 Containment Blast Doors" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"iwn" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "secmaint_vent"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"iws" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"iwD" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/lobby) +"iwJ" = ( +/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/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"iwP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/computer/guestpass/hop{ + pixel_x = 28 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"iwS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ixh" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ixv" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ixy" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"ixH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/station/engineering/aitransit) +"ixM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"ixW" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/computer/general_air_control/large_tank_control{ + autolink_sensors = list("o2_sensor"="Tank"); + dir = 1; + inlet_injector_autolink_id = "o2_in"; + name = "Oxygen Supply Control"; + outlet_vent_autolink_id = "o2_out" + }, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/engineering/atmos) +"iyc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Atmoshperics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/catwalk, +/area/station/maintenance/storage) +"iyh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Bartender" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"iyp" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/obj/item/flag/nt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"iyJ" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "teleshutter"; + name = "Teleport Access Shutters" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/teleporter) +"iyY" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/prisonlockers) +"izm" = ( +/obj/structure/table/glass, +/obj/item/paper, +/obj/item/pen/blue, +/turf/simulated/floor/carpet/green, +/area/station/command/bridge) +"izr" = ( +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + name = "Bar Requests Console"; + pixel_y = 30 + }, +/obj/structure/chair/comfy/black, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"izR" = ( +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"izV" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"iBD" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/public/dorms) +"iBI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/secondary/exit) +"iBM" = ( +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"iBP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"iBS" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"iBU" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/disposal) +"iBV" = ( +/obj/structure/bed/roller, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"iCq" = ( +/obj/machinery/camera{ + c_tag = "Aft Port Solar Control"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/engineering/south, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"iCD" = ( +/obj/machinery/light_construct/small/east, +/obj/item/trash/chips, +/mob/living/simple_animal/moth, +/turf/simulated/floor/carpet, +/area/station/maintenance/fsmaint) +"iDd" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/structure/disposalpipe/segment, +/turf/space, +/area/space/nearstation) +"iDg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"iDk" = ( +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "secmaint_btn_ext"; + ext_door_link_id = "secmaint_door_ext"; + int_button_link_id = "secmaint_btn_int"; + int_door_link_id = "secmaint_door_int"; + pixel_y = -25; + req_one_access_txt = "13"; + vent_link_id = "secmaint_vent" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "secmaint_vent"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"iDz" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/power/apc/important/south, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "blue" + }, +/area/station/command/bridge) +"iDD" = ( +/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/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"iDG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"iDL" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkpurple" + }, +/area/station/command/office/rd) +"iDX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"iEg" = ( +/obj/structure/table, +/obj/item/storage/box/masks{ + layer = 3.6; + pixel_x = -4; + pixel_y = -10 + }, +/obj/item/storage/box/masks{ + layer = 3.6; + pixel_x = 8; + pixel_y = -10 + }, +/obj/item/storage/box/bodybags{ + layer = 3.5; + pixel_x = -4 + }, +/obj/item/storage/box/bodybags{ + layer = 3.5; + pixel_x = 8 + }, +/obj/item/storage/box/beakers{ + layer = 3.4; + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/storage/box/beakers{ + layer = 3.4; + pixel_x = 8; + pixel_y = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) +"iED" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"iEE" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/power/apc/engineering/north{ + cell_type = 5000 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"iEJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"iFb" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + name = "Cooling Loop to Gas" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"iFh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"iFm" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"iFq" = ( +/obj/machinery/atmospherics/binary/pump{ + name = "heat exchange to port" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"iFI" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command/glass{ + name = "AI Core"; + req_one_access_txt = "16" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"iFR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"iFW" = ( +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"iGq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"iGI" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Module Chamber 7"; + network = list("Research","SS13") + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"iGP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/boxinggloves, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "caution" + }, +/area/station/public/dorms) +"iGV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/security/detective) +"iHu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"iHy" = ( +/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/plasteel{ + dir = 10; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"iHE" = ( +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/surgery/secondary) +"iHI" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"iHT" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/crowbar/large, +/obj/item/storage/box/lights/mixed, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"iHY" = ( +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitegreen" + }, +/area/station/medical/medbay2) +"iIi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"iIk" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"iIt" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"iIA" = ( +/obj/structure/chair/sofa/corp/right, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"iIB" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/exit) +"iIG" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"iIQ" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/laser/practice, +/obj/machinery/recharger, +/turf/simulated/floor/plating, +/area/station/security/range) +"iIW" = ( +/obj/structure/mineral_door/wood, +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"iJf" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Research Toxins Mixing"; + dir = 4; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"iJg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"iJA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"iKi" = ( +/obj/machinery/dnaforensics, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/security/detective) +"iKr" = ( +/obj/structure/table, +/obj/item/trash/chips, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = 7; + pixel_y = 7 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"iKN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"iKS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"iKU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"iLg" = ( +/obj/machinery/door/poddoor{ + id_tag = "turbinevent"; + name = "Turbine Vent" + }, +/turf/simulated/floor/plating/airless, +/area/station/maintenance/turbine) +"iLu" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/stairs/right, +/area/station/engineering/hallway) +"iLw" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 8; + location = "Bar" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"iLx" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"iLA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"iLP" = ( +/obj/machinery/light/directional/south, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"iMe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/port) +"iMm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"iMG" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"iMM" = ( +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"iMW" = ( +/obj/structure/table/wood, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_y = 2 + }, +/obj/item/stack/cable_coil{ + pixel_y = 4 + }, +/obj/item/stack/cable_coil{ + pixel_y = 6 + }, +/obj/item/gun/projectile/revolver/doublebarrel{ + pixel_y = 14 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -6 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/service/bar) +"iMZ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"iNe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/clothing/under/rank/medical/scrubs, +/obj/machinery/economy/vending/wallmed/directional/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/station/maintenance/aft) +"iNn" = ( +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light_switch/west, +/obj/machinery/economy/vending/dinnerware, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"iNP" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellowcorners" + }, +/area/station/science/robotics/chargebay) +"iOD" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/sop_command, +/obj/item/folder/blue, +/obj/item/pen/multi/fountain, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"iOG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"iOQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"iOV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"iOY" = ( +/obj/structure/table/wood, +/obj/structure/sign/poster/official/random/north, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -8; + pixel_y = 7 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"iPb" = ( +/obj/machinery/computer/security/telescreen/entertainment/television, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/station/maintenance/asmaint) +"iPh" = ( +/obj/machinery/camera{ + c_tag = "Port Hallway"; + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"iPz" = ( +/obj/structure/table, +/obj/machinery/computer/library, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"iPF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet, +/area/station/service/chapel) +"iPH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"iPS" = ( +/obj/machinery/door/airlock/hydroponics{ + name = "Hydroponics" + }, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/turf/simulated/floor/plasteel{ + icon_state = "asteroid" + }, +/area/station/service/hydroponics) +"iPZ" = ( +/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/plasteel, +/area/station/hallway/primary/central/ne) +"iQo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"iQq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fpmaint2) +"iQs" = ( +/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, +/turf/simulated/floor/plasteel/stairs/medium, +/area/station/hallway/primary/aft) +"iQt" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/engineering_construction, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/break_room) +"iQu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/primary/central/se) +"iQB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/station/supply/qm) +"iQI" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"iQO" = ( +/obj/machinery/door/airlock/bathroom{ + name = "Private Restroom" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/command/office/captain/bedroom) +"iRc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"iRz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/space, +/area/space/nearstation) +"iRA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"iRT" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/blue/partial{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluered" + }, +/area/station/public/dorms) +"iRV" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/command/bridge) +"iSv" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/secondary/exit) +"iTw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"iTA" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"iTB" = ( +/obj/machinery/door/firedoor, +/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/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + name = "Med. CMO"; + sort_type_txt = "10" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"iTC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"iTE" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel, +/area/station/hallway/primary/port) +"iTW" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/space_heater, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"iUc" = ( +/turf/simulated/wall/r_wall, +/area/station/telecomms/chamber) +"iUd" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/purple, +/area/station/service/bar) +"iUf" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"iUO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"iVp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"iVr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"iVE" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/light/small/built/west, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"iVU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"iWw" = ( +/obj/structure/table, +/obj/item/clothing/glasses/welding, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/assembly_line) +"iWJ" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil/random, +/obj/effect/decal/cleanable/shreds, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/maintenance/fsmaint) +"iWP" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"iWZ" = ( +/turf/simulated/wall, +/area/station/command/office/captain/bedroom) +"iXf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"iXj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"iXl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/hall) +"iXs" = ( +/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 = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"iXD" = ( +/turf/simulated/floor/light, +/area/station/maintenance/asmaint) +"iXW" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkpurple" + }, +/area/station/science/genetics) +"iYn" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"iYo" = ( +/obj/item/taperecorder, +/obj/structure/table, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"iYD" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/engineering/gravitygenerator) +"iYH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"iYO" = ( +/obj/machinery/light_switch/south, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"iYQ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"iZj" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"iZn" = ( +/obj/machinery/door/airlock/medical{ + name = "Abandoned Equipment Storage" + }, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"iZp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos{ + name = "Port-Atmospherics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"iZz" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"iZE" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"iZI" = ( +/obj/machinery/hydroponics/constructable{ + desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays."; + name = "Prison hydroponics tray"; + using_irrigation = 1 + }, +/obj/item/seeds/corn, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"iZV" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"jak" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Janitor Closet"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/service/janitor) +"jam" = ( +/obj/structure/rack, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"jar" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/maintenance/fsmaint) +"jbh" = ( +/obj/effect/decal/cleanable/dust, +/mob/living/simple_animal/hostile/lizard/croco/Gena, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/maintenance/abandonedbar) +"jbt" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/smes) +"jbB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"jbO" = ( +/obj/machinery/economy/vending/coffee, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/interrogation) +"jbR" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/prisonlockers) +"jbW" = ( +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"jcc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/engine, +/area/station/science/explab/chamber) +"jcg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"jcp" = ( +/obj/structure/musician/piano{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"jcV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old{ + icon_state = "mfloor6"; + random_icon_states = null + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"jcY" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/ward) +"jdi" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"jdz" = ( +/obj/structure/closet/emcloset, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"jdY" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/effect/landmark/start/research_director, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"jeb" = ( +/obj/effect/turf_decal/loading_area, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/structure/sign/vacuum/external{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/engineering/control) +"jer" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/security/prison/cell_block/A) +"jeG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/gravitygenerator) +"jeP" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/storage/photo_album, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/fsmaint) +"jeQ" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"jeS" = ( +/obj/item/radio/intercom/department/security{ + pixel_y = 22 + }, +/obj/item/radio/intercom/custom{ + pixel_y = 36 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/lobby) +"jeW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"jfa" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"jfb" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"jfm" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Processing" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/processing) +"jfx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/warden) +"jfJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/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/plasteel, +/area/station/command/bridge) +"jfQ" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera{ + c_tag = "Medbay Treatment East"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"jfS" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"jfW" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/telecomms/chamber) +"jgi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"jgm" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/table, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"jgx" = ( +/obj/structure/table, +/obj/item/screwdriver, +/obj/item/wrench, +/obj/item/storage/fancy/donut_box, +/obj/machinery/light_switch/west, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"jgA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"jgP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/station/aisat/hall) +"jgS" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/smes) +"jgY" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluered" + }, +/area/station/command/bridge) +"jhy" = ( +/obj/structure/table, +/obj/item/radio/beacon, +/obj/machinery/status_display/directional/north, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"jiy" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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 = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"jiC" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "rampbottom" + }, +/area/station/service/bar/atrium) +"jiG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "whitecorner" + }, +/area/station/maintenance/aft) +"jjl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"jjs" = ( +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"jjD" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"jjX" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"jkw" = ( +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"jkP" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitegreen" + }, +/area/station/medical/medbay2) +"jkZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"jlt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/wire_splicing/thirty, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"jlY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/general{ + dir = 4 + }, +/obj/machinery/door/window/reinforced/reversed{ + dir = 4; + name = "Suit Storage" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/equipmentstorage) +"jmB" = ( +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"jmU" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"jmZ" = ( +/obj/structure/cable{ + 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 = 9 + }, +/turf/simulated/floor/carpet, +/area/station/service/library) +"jnc" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"jne" = ( +/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/station/maintenance/fsmaint) +"jnm" = ( +/obj/structure/closet/crate/internals, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/camera{ + c_tag = "Engineering Secure Storage South"; + dir = 1; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"jnE" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "robotics"; + name = "Robotics Lab Shutters" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/station/science/robotics) +"joe" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/iv_bag/salglu{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/iv_bag/salglu{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"joq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"jot" = ( +/obj/structure/cable{ + 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{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"jov" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"jox" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"joA" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"jpb" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/science/robotics) +"jpc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"jpi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"jpm" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"jpn" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio2"; + name = "Chamber 2 Containment Blast Doors" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"jpy" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/command/office/rd) +"jpP" = ( +/obj/structure/dresser, +/obj/structure/sign/poster/contraband/communist_state{ + pixel_y = 32 + }, +/obj/effect/spawner/random_spawners/cobweb_left_rare, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"jqd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"jqj" = ( +/obj/machinery/camera/motion{ + c_tag = "Mini Satellite Antechamber North"; + dir = 1; + network = list("SS13","MiniSat") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"jqo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"jqB" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"jqN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/misc_lab) +"jqS" = ( +/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/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/mime, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"jqU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"jra" = ( +/obj/machinery/door_control/bolt_control/east{ + id = "vipbar_bolt"; + pixel_y = -6 + }, +/obj/machinery/button/windowtint/east{ + id = "vipbar"; + pixel_y = 6 + }, +/obj/structure/table/glass, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/lighter/zippo/fluff/purple{ + pixel_x = 8; + pixel_y = 2 + }, +/turf/simulated/floor/light/purple, +/area/station/service/bar) +"jrj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/security/main) +"jrq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/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/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/aft) +"jrt" = ( +/obj/structure/rack, +/obj/item/storage/box/monkeycubes/wolpincubes, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"jrA" = ( +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"jrD" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/abandonedbar) +"jrG" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"jrV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/aft) +"jsn" = ( +/obj/machinery/disposal, +/obj/machinery/light_switch/north, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"jsv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/snacks/disk, +/obj/item/reagent_containers/food/snacks/disk{ + pixel_y = -6; + pixel_x = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/station/maintenance/apmaint) +"jsF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"jsR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/machinery/light_construct/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/abandonedbar) +"jtc" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio2"; + name = "Chamber 2 Containment Blast Doors" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"jtl" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"jts" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"jtt" = ( +/obj/structure/cable{ + 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 = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"jtE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"jtP" = ( +/obj/item/kirbyplants, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"jtR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/engineering/gravitygenerator) +"juH" = ( +/obj/item/storage/fancy/cigarettes/cigpack_random, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"juO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"juZ" = ( +/obj/machinery/light_switch/east, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"jva" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"jvd" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"jvX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Bar East"; + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"jwb" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"jwg" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"jwn" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"jwr" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"jws" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"jxf" = ( +/obj/item/storage/toolbox/emergency, +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/multitool, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"jxj" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"jxo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Transit Tube"; + req_access_txt = "75" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/engineering/aitransit) +"jxs" = ( +/turf/simulated/floor/plating, +/area/station/engineering/utility) +"jxu" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"jxv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"jxJ" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/machinery/hydroponics/soil, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"jxS" = ( +/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/grille, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"jyo" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/slime, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"jyu" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/security/warden) +"jyy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction/reversed{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"jyE" = ( +/obj/structure/table/glass, +/obj/item/storage/box/syringes{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = -8 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"jyI" = ( +/obj/structure/table, +/obj/item/storage/belt/medical{ + pixel_y = 6 + }, +/obj/item/storage/belt/medical{ + pixel_y = 3 + }, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical{ + pixel_y = -3 + }, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"jyJ" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/engineering/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"jyO" = ( +/turf/simulated/floor/mineral/titanium, +/area/shuttle/arrival/station) +"jyP" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/maintcentral2) +"jza" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"jzn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"jzz" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"jzO" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"jzU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/warden) +"jzZ" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/psychiatrist, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"jAz" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"jAH" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/robotics) +"jAM" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/storage) +"jAX" = ( +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/item/lighter/zippo, +/obj/structure/sign/poster/contraband/random/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"jAY" = ( +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/obj/item/rack_parts, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"jBe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/magistrate) +"jBn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/plasteel/stairs{ + dir = 1 + }, +/area/station/engineering/control) +"jBo" = ( +/obj/structure/grille, +/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, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"jBA" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) +"jBC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"jBJ" = ( +/obj/structure/table/tray, +/obj/item/storage/firstaid/surgery{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"jCb" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"jCr" = ( +/obj/machinery/computer/crew, +/obj/machinery/camera{ + c_tag = "Medbay Paramedic"; + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"jCt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"jCu" = ( +/obj/machinery/economy/vending/scidrobe, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/science/hallway) +"jDf" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/prisonlockers) +"jDn" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable{ + d2 = 4; + 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" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"jDB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"jDC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"jDJ" = ( +/obj/machinery/power/port_gen/pacman, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"jDS" = ( +/obj/structure/marker_beacon/spotlight/jade, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/command/bridge) +"jEq" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"jEE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fpmaint) +"jEV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"jFf" = ( +/obj/structure/closet/crate/secure{ + req_one_access = list(33,41); + req_one_access_txt = "33;41" + }, +/obj/item/circuitboard/chem_dispenser, +/obj/item/storage/pill_bottle/random_drug_bottle, +/obj/item/storage/pill_bottle/random_drug_bottle, +/obj/item/storage/pill_bottle/random_drug_bottle, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"jFo" = ( +/obj/machinery/bodyscanner{ + dir = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"jFt" = ( +/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/plating, +/area/station/maintenance/port) +"jFF" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/spawner/wire_splicing/thirty, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"jGG" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/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/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"jGR" = ( +/obj/item/candle, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"jHG" = ( +/obj/machinery/kitchen_machine/grill, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"jIj" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/maintenance/asmaint2) +"jIy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/break_room) +"jIE" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Module Hazard Pen"; + dir = 1; + network = list("Research","SS13") + }, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"jIM" = ( +/obj/machinery/door/airlock/public/glass{ + autoclose = 0; + heat_proof = 1; + id_tag = "incinerator_door_int"; + locked = 1; + name = "Mixing Room Interior Airlock" + }, +/obj/machinery/access_button{ + autolink_id = "incinerator_btn_int"; + name = "Incinerator Airlock Control"; + pixel_y = -22 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"jIX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"jJh" = ( +/obj/machinery/economy/vending/autodrobe, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/public/dorms) +"jJn" = ( +/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/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"jJJ" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/warning_stripes/green/hollow, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"jJU" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/fsmaint) +"jKr" = ( +/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/plating, +/area/station/maintenance/fpmaint2) +"jKA" = ( +/obj/machinery/door/window/classic/reversed, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"jKH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"jKN" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "stage_bleft" + }, +/area/station/maintenance/fsmaint) +"jKP" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"jKZ" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -6 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"jLf" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"jLh" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/security/main) +"jLt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"jLy" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical{ + level = 1.4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/curtain/open{ + layer = 4.1 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"jLz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"jLT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"jMp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel, +/area/station/command/bridge) +"jMw" = ( +/obj/machinery/door/airlock/titanium, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/arrival/station) +"jMx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/dock_marker, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/turf/space, +/area/space/nearstation) +"jNl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"jNM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"jNP" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Processing" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/processing) +"jNY" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/security/permabrig) +"jOj" = ( +/obj/structure/table/wood, +/obj/item/vending_refill/boozeomat, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"jOs" = ( +/obj/machinery/door/airlock/command/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"jOx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "blue" + }, +/area/station/command/bridge) +"jOA" = ( +/obj/structure/reagent_dispensers/beerkeg/nuke{ + name = "Nanotrasen-brand nuclear fizz-sion explosive" + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/station/maintenance/apmaint) +"jPb" = ( +/obj/machinery/atmospherics/unary/thermomachine/freezer/on/coldroom{ + dir = 1 + }, +/obj/machinery/ai_status_display/east, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"jPi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"jPw" = ( +/obj/machinery/door/airlock/freezer, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"jPx" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"jPN" = ( +/obj/machinery/computer/mob_battle_terminal/blue{ + dir = 2; + pixel_y = 0; + pixel_x = -32 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"jPW" = ( +/obj/machinery/door/airlock/silver, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"jPX" = ( +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"jPY" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"jPZ" = ( +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/asmaint) +"jQc" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"jQi" = ( +/obj/machinery/light/directional/east, +/obj/machinery/icemachine{ + dir = 8; + pixel_x = -1; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"jQu" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor{ + id_tag = "hos_secure_doors" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"jQC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"jQD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"jQI" = ( +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"jQQ" = ( +/obj/item/latexballon, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"jQW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/binary/valve, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"jRb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hos) +"jRf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"jRj" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/northwest, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"jRo" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/blood/tracks, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"jRz" = ( +/obj/structure/cable{ + 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/plasteel, +/area/station/science/hallway) +"jRF" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/landmark/start/roboticist, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics) +"jRM" = ( +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"jRQ" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"jRW" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"jSa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/server) +"jSe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"jSf" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light_switch/south, +/obj/machinery/ai_status_display/west, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/command/bridge) +"jSq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"jSF" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"jSG" = ( +/obj/structure/girder, +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"jTb" = ( +/obj/structure/falsewall, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"jTo" = ( +/obj/machinery/kitchen_machine/candy_maker, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"jTq" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"jTS" = ( +/obj/structure/bed/roller, +/obj/item/organ/internal/kidneys/vox, +/obj/item/storage/box/survival_vox, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"jUf" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"jUn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"jUq" = ( +/obj/item/flag/mime, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"jUt" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"jUF" = ( +/obj/structure/table/glass, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Chief Medical Officer's Office"; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"jUM" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"jUZ" = ( +/obj/structure/window/plasmareinforced{ + dir = 4 + }, +/obj/machinery/power/rad_collector{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"jVf" = ( +/obj/vehicle/secway, +/obj/item/key/security, +/obj/machinery/newscaster/security_unit/north, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/warden) +"jVj" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"jVr" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"jVt" = ( +/obj/structure/table/wood, +/obj/machinery/cell_charger{ + pixel_x = 2 + }, +/obj/item/stock_parts/cell/high{ + pixel_x = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"jVD" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/engineering/control) +"jVE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"jWy" = ( +/obj/structure/table/wood, +/obj/item/storage/lockbox/medal, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"jWE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"jWV" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"jXg" = ( +/obj/machinery/door/airlock/external{ + id_tag = "arrivalsmaint_door_ext"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"jXI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"jYu" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/engineering/gravitygenerator) +"jYv" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"jYF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purplecorner" + }, +/area/station/maintenance/fsmaint) +"jYQ" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"jYZ" = ( +/turf/simulated/wall, +/area/station/medical/patients_rooms) +"jZh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"jZu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"jZx" = ( +/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, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/station/hallway/primary/central/nw) +"jZB" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 3"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"jZK" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"kaa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"kaD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/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/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"kaE" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"kbg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"kbv" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel/stairs/right, +/area/station/legal/courtroom) +"kcl" = ( +/obj/machinery/door_control/shutter/north{ + desc = "A remote control-switch for the engineering security doors."; + id = "teledoor"; + name = "AI Satellite Teleport Shutters Control"; + req_one_access_txt = "17;75" + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"kcr" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/closet/crate, +/obj/item/crowbar, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"kcx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"kcJ" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"kcQ" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/girder, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"kcW" = ( +/obj/structure/flora/grass/jungle, +/obj/item/radio/intercom/locked/prison{ + dir = 8; + name = "Prison Intercom (General)"; + pixel_x = 22 + }, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"kdh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/item/reagent_containers/food/snacks/grown/cannabis, +/turf/simulated/floor/carpet, +/area/station/maintenance/asmaint) +"kdx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/junction/reversed, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"kdD" = ( +/obj/effect/decal/warning_stripes/east, +/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/pipe/manifold/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"kdE" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "bridge blast north"; + name = "Bridge Blast Doors" + }, +/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{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"kdL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"kdZ" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"kee" = ( +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"kep" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"kew" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"keJ" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"keZ" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"kfk" = ( +/obj/structure/chair/comfy/black, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"kfu" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"kgc" = ( +/obj/item/reagent_containers/food/drinks/cans/badminbrew, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"kgg" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"kgC" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"kgM" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"khe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"khl" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/newscaster/directional/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/station/supply/qm) +"khv" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 7; + height = 18; + id = "trade_dock"; + name = "port bay 4 at Cyberiad"; + width = 15; + dheight = 1 + }, +/turf/space, +/area/space) +"khK" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/tank/internals/plasma, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + dir = 2; + id_tag = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/simulated/floor/plating, +/area/station/engineering/engine/supermatter) +"khQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Singularity"; + name = "Singularity Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door_control/shutter/east{ + id = "Singularity"; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"khW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Control Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"khY" = ( +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "o2_sensor" + }, +/turf/simulated/floor/engine/o2, +/area/station/engineering/atmos) +"kil" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"kiq" = ( +/obj/machinery/light_switch/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/portable/canister/air, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"kiu" = ( +/obj/structure/weightmachine/weightlifter, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"kiF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"kjf" = ( +/obj/machinery/door_control/shutter/south{ + id = "representative"; + name = "Privacy Shutters Control"; + pixel_x = -6; + req_access_txt = "73" + }, +/obj/machinery/door_control/normal/south{ + id = "ntrepofficedoor"; + name = "Office Door"; + pixel_x = 6; + req_access_txt = "73" + }, +/obj/machinery/keycard_auth/south{ + pixel_y = -34 + }, +/obj/effect/landmark/start/nanotrasen_rep, +/obj/structure/chair/comfy/corp{ + dir = 1 + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"kjp" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/reflector/double, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Storage"; + dir = 8; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"kju" = ( +/turf/simulated/floor/carpet, +/area/station/maintenance/asmaint) +"kjy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"kjG" = ( +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"kjL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"kjM" = ( +/obj/item/chair/stool, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"kjN" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/smes) +"kkd" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/kitchen/knife, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"kkv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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/plasteel, +/area/station/security/permabrig) +"kkz" = ( +/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/plating, +/area/station/maintenance/fsmaint) +"kkO" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/folder, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"kkP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"kkT" = ( +/obj/machinery/conveyor/east{ + dir = 6; + id = "QMLoad2" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"kla" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"klh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"klj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/station/legal/lawoffice) +"kll" = ( +/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, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"klA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"klN" = ( +/mob/living/simple_animal/hostile/feral_cat/forsaken, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"klS" = ( +/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/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"kmA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"kmE" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "purplecorner" + }, +/area/station/science/robotics) +"knY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"kok" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"kom" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"koD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/light/nightshifted/east, +/obj/effect/landmark/start/psychiatrist, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"kpx" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/equipmentstorage) +"kpz" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"kpA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"kpO" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"kpR" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/clothing/head/welding, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"kqh" = ( +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"kqi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"kqo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"kqv" = ( +/obj/machinery/teleport/hub, +/turf/simulated/floor/plating, +/area/station/command/teleporter) +"kqK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"kqR" = ( +/obj/machinery/atmospherics/trinary/filter/flipped{ + dir = 4; + filter_type = -1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"kqT" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"krb" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "bridge blast north"; + name = "Bridge Blast Doors" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"krv" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"krw" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"krz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/warden) +"krD" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"krG" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"krJ" = ( +/obj/effect/decal/cleanable/dirt, +/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/plating, +/area/station/maintenance/fpmaint2) +"krV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door_control/shutter/west{ + id = "maintcham2"; + name = "Containment Control" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"ksj" = ( +/obj/structure/sign/poster/contraband/random/north, +/obj/item/clothing/mask/cigarette/random, +/obj/structure/closet/secure_closet/freezer/fridge/open, +/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"kso" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/item/rollingpaper, +/obj/item/lighter, +/turf/simulated/floor/carpet, +/area/station/maintenance/asmaint) +"kst" = ( +/obj/item/cartridge/signal/toxins, +/obj/item/cartridge/signal/toxins{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/cartridge/signal/toxins{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/table/glass, +/obj/item/book/manual/wiki/sop_science, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"ksx" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "maint3"; + name = "Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ksJ" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"ksP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"kto" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/full/basic, +/turf/simulated/floor/grass/no_creep, +/area/station/command/bridge) +"ktq" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) +"ktw" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera{ + c_tag = "Research E.X.P.E.R.I-MENTOR Lab"; + dir = 1; + network = list("Research","SS13") + }, +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/explab) +"ktF" = ( +/obj/item/radio/intercom/custom{ + pixel_y = 22 + }, +/obj/item/radio/intercom/private{ + dir = 1; + pixel_y = -22 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/landmark{ + icon = 'icons/effects/spawner_icons.dmi'; + icon_state = "AI"; + name = "tripai" + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai) +"ktP" = ( +/obj/structure/bed, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/fsmaint) +"ktT" = ( +/obj/structure/table/wood, +/obj/item/pizzabox/margherita, +/obj/item/poster/random_contraband, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"kua" = ( +/obj/structure/table/wood, +/obj/machinery/power/apc/directional/west, +/obj/item/reagent_containers/food/snacks/baguette, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/toy/figure/crew/mime{ + pixel_x = -5 + }, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"kum" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + name = "QM Office"; + sort_type_txt = "3" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/supply/miningdock) +"kuA" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"kuG" = ( +/obj/structure/chair/sofa/pew{ + dir = 1 + }, +/mob/living/simple_animal/mouse/gray, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"kuW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"kvn" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/engineering/control) +"kvz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/security/prisonlockers) +"kvJ" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/oak, +/area/station/service/clown) +"kwk" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"kwo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"kwG" = ( +/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/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"kwO" = ( +/obj/structure/closet/emcloset, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"kwP" = ( +/obj/machinery/atmospherics/unary/thermomachine/heater{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"kwZ" = ( +/obj/structure/curtain/open/shower, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shower{ + pixel_y = 20 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/disposal) +"kxm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/rnd) +"kxr" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "Engineering Singularity South-West"; + dir = 4; + network = list("SS13","Singularity","Engineering") + }, +/turf/space, +/area/station/engineering/control) +"kxx" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CE" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/command/office/ce) +"kxy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/maintenance/fsmaint) +"kxL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"kyf" = ( +/obj/machinery/hologram/holopad, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"kyh" = ( +/obj/machinery/washing_machine, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"kym" = ( +/obj/machinery/economy/slot_machine, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"kyK" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "asteroid" + }, +/area/station/service/hydroponics) +"kyM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"kzf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/maintenance/apmaint) +"kzi" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"kzo" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/science/toxins/mixing) +"kzB" = ( +/obj/effect/spawner/lootdrop/three_course_meal, +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"kzX" = ( +/obj/effect/landmark/start/doctor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"kAp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"kAr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door_control/shutter/south{ + id = "Secure Armory"; + name = "Secure Armory Shutter Control"; + req_one_access_txt = "3" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"kAJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"kAS" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/item/bedsheet/hos{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/landmark/start/head_of_security, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hos) +"kBe" = ( +/obj/machinery/door/airlock{ + name = "Prison Toilets" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"kBh" = ( +/obj/structure/railing/cap/reversed{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"kBr" = ( +/obj/machinery/requests_console{ + department = "Tech Storage"; + name = "Tech Storage Requests Console"; + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"kBF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"kBH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced, +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Body Utilizer" + }, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/disposal/deliveryChute{ + dir = 4; + name = "CORPSE disposal unit" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/genetics{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"kBI" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/item/clothing/shoes/black, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"kBK" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/table/glass, +/obj/item/cartridge/medical{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/cartridge/medical{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/cartridge/chemistry{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/storage/firstaid/regular{ + pixel_y = -10 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"kBQ" = ( +/obj/structure/table/wood, +/obj/item/stack/packageWrap, +/obj/item/assembly/timer, +/obj/item/hand_labeler, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"kCd" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"kCq" = ( +/obj/structure/sink/directional/north, +/obj/machinery/light_switch{ + name = "custom placement"; + pixel_x = -10; + pixel_y = 34 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"kCw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"kCH" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"kCM" = ( +/obj/item/flag/cult, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"kCN" = ( +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"kCP" = ( +/obj/structure/chair/comfy/teal, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"kDl" = ( +/obj/machinery/washing_machine, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/security/permabrig) +"kDp" = ( +/obj/structure/sign/poster/official/random/east, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"kDx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"kDW" = ( +/obj/machinery/power/apc/important/south, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"kDY" = ( +/obj/item/kirbyplants, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"kEe" = ( +/obj/machinery/economy/vending/coffee, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"kEj" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "vipbar" + }, +/turf/simulated/floor/plating, +/area/station/service/bar) +"kEv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/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/plasteel, +/area/station/engineering/hallway) +"kEA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"kEK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/permabrig) +"kEM" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"kEV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/station/service/library) +"kFB" = ( +/obj/machinery/status_display/directional/north, +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"kFJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"kGb" = ( +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/arrival/station) +"kGo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"kGs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Emergency Supplies" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/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/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"kGB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/mob/living/carbon/human/monkey, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"kGL" = ( +/obj/structure/disposalpipe/junction/y, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"kGM" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) +"kGZ" = ( +/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" + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/carpet/royalblue, +/area/station/command/office/captain) +"kHi" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/command/office/hop) +"kHl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"kHm" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Cryo Tank Storage" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/atmos{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"kHG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"kIa" = ( +/obj/structure/cable, +/obj/machinery/power/solar_control{ + dir = 4; + name = "Aft Port Solar Control" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"kIk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/detective) +"kIT" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"kIZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"kJc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/service/library) +"kJk" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"kJs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"kJJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/station/maintenance/incinerator) +"kJQ" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external{ + id_tag = "mining_home"; + locked = 1; + name = "Mining Dock Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/turf/simulated/floor/plating, +/area/station/supply/miningdock) +"kJT" = ( +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"kKg" = ( +/obj/structure/cable{ + 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/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/qm) +"kKD" = ( +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "blue" + }, +/area/station/maintenance/aft) +"kKJ" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"kKV" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"kKW" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Isolator" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "durka2"; + layer = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/patients_rooms) +"kLc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"kLd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"kLn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/mapping_helpers/airlock/access/any/supply/general, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"kLp" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "eng_sm_vent"; + dir = 8 + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "eng_sm_btn_ext"; + ext_door_link_id = "eng_sm_door_ext"; + int_button_link_id = "eng_sm_btn_int"; + int_door_link_id = "eng_sm_door_int"; + pixel_y = 25; + req_access_txt = "10;13"; + vent_link_id = "eng_sm_vent" + }, +/turf/simulated/floor/plating, +/area/station/engineering/aitransit) +"kLR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/atmos) +"kMc" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"kMd" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"kMw" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"kMB" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio3"; + name = "Chamber 3 Containment Blast Doors" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio2"; + name = "Chamber 2 Containment Blast Doors" + }, +/obj/structure/cable, +/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/plating, +/area/station/science/xenobiology) +"kMN" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen/fancy, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"kNq" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + density = 0; + dir = 8; + icon_state = "open"; + id_tag = "blueshield"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/command/office/blueshield) +"kNE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"kNO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"kNP" = ( +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"kNS" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/assembly_line) +"kNX" = ( +/obj/structure/chair/sofa/corp/left, +/turf/simulated/floor/carpet/green, +/area/station/command/bridge) +"kNY" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellow" + }, +/area/station/science/robotics/chargebay) +"kOa" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"kOq" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/turf/simulated/floor/carpet/royalblue, +/area/station/command/office/captain) +"kPs" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"kPE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"kPF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"kPK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"kPV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"kPY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"kQb" = ( +/obj/structure/chair/sofa/bench/left{ + cover_color = "#85130b"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/brig) +"kQn" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"kQo" = ( +/obj/structure/girder, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"kQs" = ( +/obj/structure/dresser, +/obj/machinery/light_switch/west, +/obj/machinery/newscaster/security_unit/north, +/obj/item/toy/figure/crew/hop{ + layer = 4; + pixel_x = -4; + pixel_y = 14 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"kQw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = -4 + }, +/obj/item/tank/internals/air{ + pixel_x = 7 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"kQW" = ( +/obj/machinery/door/airlock/virology{ + autoclose = 0; + id_tag = "viro_door_ext"; + locked = 1; + name = "Virology Lab External Airlock" + }, +/obj/machinery/access_button/north{ + autolink_id = "viro_btn_ext"; + layer = 3.6; + name = "Virology Lab Access Button" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/virology, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"kQY" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/shaft_miner, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"kRT" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 4 + }, +/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/plasteel, +/area/station/hallway/primary/port) +"kRV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"kSe" = ( +/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" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"kSn" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"kSp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"kSz" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/lobby) +"kSI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"kSK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"kSP" = ( +/obj/structure/barricade/wooden{ + layer = 4 + }, +/obj/machinery/door/airlock/welded{ + name = "Maintenance Airlock" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"kTh" = ( +/obj/machinery/computer/operating, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"kTo" = ( +/obj/machinery/door_control/bolt_control/east{ + id = "toilet_unitc" + }, +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"kTA" = ( +/obj/machinery/light/directional/south, +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"kTP" = ( +/obj/structure/weightmachine/stacklifter, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "black" + }, +/area/station/security/permabrig) +"kTU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"kTZ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"kUo" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"kUv" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Module Chamber 2"; + dir = 1; + network = list("Research","SS13") + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"kUA" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"kVo" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/simulated/floor/carpet/purple, +/area/station/service/bar) +"kVw" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Processing" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/processing) +"kWa" = ( +/obj/machinery/camera{ + c_tag = "Medbay Morgue South"; + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"kWl" = ( +/obj/structure/toilet{ + desc = "Старый унитаз. Что он тут делает?"; + name = "Унитаз" + }, +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"kWu" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) +"kWx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"kWz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/aft) +"kWH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"kWL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"kXd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"kXe" = ( +/obj/effect/turf_decal/woodsiding/box, +/obj/structure/statue/cyberiad/c, +/turf/simulated/floor/plasteel{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding."; + dir = 4; + icon_state = "plaque"; + name = "Comemmorative Plaque" + }, +/area/station/command/bridge) +"kXp" = ( +/obj/structure/chair, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/ward) +"kXD" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"kXQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"kYd" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"kYr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"kYu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + id_tag = "assolar_door_int"; + locked = 1; + name = "Engineering External Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"kYC" = ( +/obj/structure/sink/directional/north, +/obj/structure/mirror{ + layer = 2.8; + pixel_y = 34 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"kYS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"kZv" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"laq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"lav" = ( +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"lax" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"laK" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"laL" = ( +/obj/structure/table, +/obj/item/camera, +/obj/item/radio/intercom/locked/prison{ + name = "Prison Intercom (General)"; + pixel_y = 22 + }, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"laP" = ( +/obj/structure/chair/sofa/bench/right, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"laU" = ( +/obj/machinery/access_button{ + autolink_id = "fpsolar_btn_ext"; + pixel_x = 25; + pixel_y = -25; + req_one_access_txt = "13" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxport) +"lbb" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/directional/east, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/engineering/controlroom) +"lbd" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"lbn" = ( +/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/plasteel, +/area/station/hallway/primary/central/nw) +"lbs" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/east, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"lbD" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"lbM" = ( +/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/station/maintenance/asmaint) +"lbX" = ( +/obj/structure/cable, +/obj/machinery/computer/monitor{ + name = "Grid Power Monitoring Computer" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/smes) +"lbZ" = ( +/obj/structure/table/glass, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"lcg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/prison/cell_block/A) +"lcl" = ( +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/plating, +/area/station/command/teleporter) +"lcB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"lcD" = ( +/obj/machinery/door/window{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"lcL" = ( +/obj/effect/spawner/random_barrier/wall_probably, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"lcZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/science/server/coldroom) +"ldc" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ldf" = ( +/obj/machinery/atmospherics/binary/valve{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"ldl" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/light/small/directional/south, +/obj/item/clothing/shoes/sandal, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lee" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/folder/white, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"leF" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"leL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"leS" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"lfj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"lfn" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"lfC" = ( +/obj/effect/decal/cleanable/dirt, +/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/plasteel, +/area/station/maintenance/apmaint) +"lfX" = ( +/obj/effect/spawner/random_barrier/obstruction, +/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, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"lfZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/economy/vending/engidrobe, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"lgb" = ( +/obj/machinery/access_button{ + autolink_id = "fssolar_btn_ext"; + pixel_x = -25; + pixel_y = -25; + req_one_access_txt = "10;13" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxstarboard) +"lgO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/science/robotics) +"lgQ" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"lgS" = ( +/obj/structure/closet/secure_closet/brig, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/prisonlockers) +"lgW" = ( +/obj/structure/railing/corner, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"lgY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"lhf" = ( +/obj/machinery/door/airlock/bathroom{ + name = "Unisex Restrooms" + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/public/toilet) +"lhl" = ( +/obj/item/trash/pistachios, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"lhs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"lht" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"lhy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"lhL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"lhN" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/structure/chair/sofa/corp/left, +/turf/simulated/floor/carpet/purple, +/area/station/service/bar) +"lie" = ( +/obj/effect/spawner/window/reinforced/tinted/grilled, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"liy" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"liO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/science/robotics) +"liP" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/ai_upload) +"liX" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"ljh" = ( +/obj/machinery/door/airlock/public/glass{ + autoclose = 0; + heat_proof = 1; + id_tag = "incinerator_door_ext"; + locked = 1; + name = "Mixing Room Exterior Airlock" + }, +/obj/machinery/access_button{ + autolink_id = "incinerator_btn_ext"; + layer = 3.1; + name = "Incinerator Airlock Control"; + pixel_y = -23 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"ljI" = ( +/obj/structure/table, +/obj/item/stamp/granted, +/obj/item/clothing/accessory/armband/cargo, +/obj/item/hand_labeler, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"lko" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"lkw" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"llj" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"llx" = ( +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"llD" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"llI" = ( +/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" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"llV" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/main) +"lme" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"lmi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"lmq" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"lmM" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "enginestorage"; + name = "Engine Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/control) +"lmS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/rnd) +"lmU" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"lnh" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"lnL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"lnQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"lnV" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall/r_wall, +/area/station/maintenance/incinerator) +"lon" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shovel/spade, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/maintenance/asmaint) +"lop" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"lor" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/engine, +/area/station/science/explab/chamber) +"loP" = ( +/obj/machinery/computer/med_data, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/security/detective) +"lpi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/hallway/primary/fore) +"lpu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"lpz" = ( +/obj/effect/decal/warning_stripes/east, +/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/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"lpF" = ( +/obj/machinery/optable, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/security/detective) +"lpN" = ( +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/central/south) +"lpP" = ( +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"lpV" = ( +/obj/effect/decal/cleanable/dirt, +/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/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"lqd" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/asmaint2) +"lql" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Library"; + sort_type_txt = "16" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lqm" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"lqw" = ( +/obj/structure/morgue, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"lqF" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"lrs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"lrw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/wire_splicing/thirty, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"lrF" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/flashbangs, +/obj/machinery/status_display/directional/west, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"lrJ" = ( +/obj/effect/landmark/start/atmospheric, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/storage) +"lrL" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"lrO" = ( +/obj/machinery/door/airlock/bathroom, +/obj/effect/mapping_helpers/airlock/welded, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lrQ" = ( +/mob/living/simple_animal/pet/dog/fox/Renault, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"lrW" = ( +/obj/effect/spawner/window/reinforced/tinted/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"lrY" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"lsh" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/maintcentral2) +"lsk" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "whitehall" + }, +/area/station/science/genetics) +"lsx" = ( +/obj/structure/cable{ + 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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"lsI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"lsL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"lte" = ( +/obj/machinery/light/directional/west, +/obj/machinery/papershredder, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"ltK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/hallway/primary/central/south) +"ltM" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CE" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/command/office/ce) +"ltN" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/maintenance/fsmaint) +"luh" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"luz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"luD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"luJ" = ( +/obj/effect/decal/cleanable/crayon{ + color = "#cc3300"; + initialized = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"luV" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/break_room) +"lvb" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/misc_lab) +"lvd" = ( +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/command, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/command/bridge) +"lvk" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"lvs" = ( +/obj/structure/closet/crate{ + name = "Silver Crate"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "vault" + }, +/area/station/maintenance/apmaint) +"lvE" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/effect/decal/cleanable/dust, +/obj/item/stack/cable_coil, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lvJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"lvL" = ( +/obj/machinery/atmospherics/binary/valve/open{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"lvM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"lwg" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"lwj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"lwt" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"lwY" = ( +/obj/structure/table/wood, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"lxc" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"lxA" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"lxB" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + autolink_id = "air_in"; + dir = 1 + }, +/turf/simulated/floor/engine/air, +/area/station/engineering/atmos) +"lxC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lxE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"lxH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"lxO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"lyv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) +"lyS" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"lzb" = ( +/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" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lzw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"lzA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Emergency Entrance" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"lzN" = ( +/obj/structure/closet, +/obj/item/stack/spacecash/c10, +/obj/item/coin/iron, +/obj/item/coin/iron, +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/maintenance/apmaint) +"lAb" = ( +/obj/effect/landmark/damageturf, +/obj/machinery/light_construct/small/west, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"lAc" = ( +/obj/effect/landmark/burnturf, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"lAr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"lAt" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"lAD" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"lAK" = ( +/obj/machinery/economy/vending/virodrobe, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"lAN" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/mask/balaclava, +/obj/effect/decal/warning_stripes/red, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"lBb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"lBg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"lBr" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"lBQ" = ( +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/engine, +/area/station/science/explab/chamber) +"lCk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/fsmaint) +"lCp" = ( +/obj/structure/grille/broken, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lCu" = ( +/obj/item/toy/crayon/spraycan, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lCG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + id_tag = "assolar_door_ext"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"lCQ" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"lCR" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"lDi" = ( +/obj/structure/sink/directional/east, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurple" + }, +/area/station/science/genetics) +"lDk" = ( +/obj/machinery/atmospherics/binary/valve/digital{ + color = ""; + name = "Gas Mix Outlet Valve" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/station/engineering/atmos) +"lDo" = ( +/obj/structure/table/wood, +/obj/item/camera, +/obj/item/storage/photo_album{ + pixel_y = -10 + }, +/obj/item/crowbar, +/obj/machinery/camera{ + c_tag = "Captain's Office"; + dir = 8 + }, +/obj/structure/sign/bobross{ + pixel_x = 32 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"lDx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"lDI" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"lEo" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"lED" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/maintenance/apmaint) +"lEE" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreen" + }, +/area/station/medical/medbay2) +"lEH" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stamp/clown{ + pixel_x = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/clown) +"lEM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"lEW" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lEZ" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"lFa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"lFe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"lFv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"lFz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"lFH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"lFM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"lFO" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar) +"lFP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"lGd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"lGi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"lGj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/atmos/control) +"lGP" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "hop"; + name = "Privacy Shutters" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hop) +"lGY" = ( +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"lHm" = ( +/obj/item/bodybag, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"lHs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"lHw" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/closet/crate/freezer, +/obj/item/organ/internal/lungs/vox, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/asmaint) +"lHM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"lHS" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"lHU" = ( +/obj/structure/table, +/obj/item/storage/box/gloves{ + pixel_y = 4 + }, +/obj/item/storage/box/bodybags{ + pixel_y = -7 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"lHX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"lIv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/ne) +"lIV" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"lJf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"lJs" = ( +/obj/machinery/power/emitter, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"lJK" = ( +/obj/structure/table/glass/reinforced/plastitanium, +/obj/item/storage/bible{ + pixel_y = 6; + pixel_x = 4 + }, +/obj/item/reagent_containers/food/drinks/bottle/holywater{ + pixel_y = 4; + pixel_x = -8; + initialized = 1 + }, +/obj/structure/sign/poster/official/random/north, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"lJT" = ( +/obj/structure/chair/sofa/pew, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"lJV" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"lJX" = ( +/obj/machinery/button/windowtint/east{ + id = "holodeck"; + range = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"lKj" = ( +/obj/item/soap, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"lKq" = ( +/turf/simulated/wall, +/area/station/security/permabrig) +"lKF" = ( +/obj/structure/sign/poster/contraband/missing_gloves{ + pixel_y = 30 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"lKL" = ( +/obj/structure/chair/sofa/pew/left{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4; + anchored = 1 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"lKO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/xenobiology) +"lKP" = ( +/obj/structure/rack, +/obj/item/cartridge/atmos, +/obj/item/cartridge/atmos, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"lKS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"lLC" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/break_room) +"lLH" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/ward) +"lLM" = ( +/obj/structure/closet/crate/can, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/item/reagent_containers/syringe/insulin, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/item/trash/liquidfood, +/obj/item/trash/spentcasing, +/obj/item/trash/spacetwinkie, +/obj/item/trash/raisins, +/obj/item/trash/raisins, +/obj/item/trash/tray, +/obj/item/trash/waffles, +/obj/item/trash/raisins, +/obj/item/trash/pistachios, +/obj/item/trash/gum, +/obj/item/trash/gum, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"lMl" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"lMs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"lMN" = ( +/obj/structure/sign/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/engine/vacuum, +/area/station/maintenance/turbine) +"lMP" = ( +/obj/structure/sign/poster/contraband/random/north, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"lNb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"lNg" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ants, +/turf/simulated/floor/plasteel{ + icon_state = "stage_bleft" + }, +/area/station/maintenance/fsmaint) +"lNi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/door_assembly/door_assembly_silver, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/apmaint) +"lNp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"lNE" = ( +/obj/item/storage/box/monkeycubes/wolpincubes{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/machinery/light/directional/south, +/obj/item/storage/box/monkeycubes/farwacubes{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes/stokcubes{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/storage/box/monkeycubes/neaeracubes{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"lNG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"lNS" = ( +/obj/machinery/disposal, +/obj/machinery/door_control/shutter/west{ + id = "testlab"; + name = "Test Lab Privacy Shutters"; + pixel_y = 5 + }, +/obj/machinery/light_switch/west{ + pixel_y = -6 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/misc_lab) +"lOM" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"lOY" = ( +/obj/machinery/camera{ + c_tag = "Dormitories East"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/public/dorms) +"lPa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"lPp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/poster/contraband/random/east, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/fsmaint) +"lPz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"lPL" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"lPN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/office) +"lPQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/command/bridge) +"lPR" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lPS" = ( +/obj/structure/cable{ + 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/wood/oak, +/area/station/command/office/hos) +"lPT" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"lQc" = ( +/obj/item/stack/sheet/plasteel, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lQf" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"lQh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"lQi" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"lQp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"lQx" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/legal/courtroom) +"lQE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/maintenance/apmaint) +"lQL" = ( +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/primary/central/sw) +"lQS" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 8 + }, +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_3) +"lQV" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"lQZ" = ( +/obj/structure/chair/comfy/brown{ + color = "#514E58"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/fsmaint) +"lRd" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"lRi" = ( +/obj/machinery/atmospherics/pipe/simple/insulated{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump{ + name = "cooling loop to port" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"lRt" = ( +/obj/effect/spawner/random_barrier/possibly_welded_airlock, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"lRy" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"lRS" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on{ + autolink_id = "o2_out"; + dir = 1; + external_pressure_bound = 0; + internal_pressure_bound = 4000; + pressure_checks = 2 + }, +/turf/simulated/floor/engine/o2, +/area/station/engineering/atmos) +"lSa" = ( +/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/station/maintenance/apmaint) +"lSv" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/command/office/hop) +"lSw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"lSz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"lSU" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Processing" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/processing) +"lTk" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"lTr" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "purple" + }, +/area/station/science/rnd) +"lTB" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Solitary Confinement 1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/south, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"lTU" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/door_control/shutter/west{ + desc = "A remote control-switch for the SM Radiation Security Shutters"; + id = "engsm2"; + name = "SM Door Radiation Shutters Control"; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"lUa" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/permabrig) +"lUn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) +"lUp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"lUq" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 32 + }, +/obj/machinery/computer/crew, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"lUK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Chamber Observation" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai) +"lUN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"lVk" = ( +/obj/structure/table, +/obj/item/aicard, +/obj/item/aiModule/reset, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"lVr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 10 + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"lVs" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"lVy" = ( +/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/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/qm) +"lVz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/ce) +"lVB" = ( +/obj/machinery/atmospherics/unary/passive_vent, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"lVU" = ( +/obj/structure/closet/emcloset, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"lVX" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/maintenance/aft) +"lWF" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"lWU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"lXb" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"lXd" = ( +/obj/structure/table/reinforced, +/obj/item/kitchen/utensil/pfork, +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"lXe" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/aiModule/crewsimov, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai_upload) +"lXg" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Air to Station"; + on = 1; + target_pressure = 303 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/atmos/control) +"lXh" = ( +/turf/simulated/wall, +/area/station/hallway/primary/aft) +"lXi" = ( +/obj/machinery/chem_master, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"lXA" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) +"lXF" = ( +/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 = 5 + }, +/turf/simulated/floor/carpet, +/area/station/public/mrchangs) +"lXG" = ( +/mob/living/simple_animal/mouse, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/north, +/mob/living/simple_animal/hostile/scarybat, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/apmaint) +"lXR" = ( +/obj/effect/spawner/wire_splicing/thirty, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"lXU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"lYc" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"lYm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/station/service/chapel) +"lYt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/engineering/atmos) +"lYC" = ( +/obj/structure/disposalpipe/sortjunction/reversed{ + name = "Brig HoS Office"; + sort_type_txt = "7" + }, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"lYM" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"lYX" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/station/maintenance/aft) +"lZu" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"lZw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"lZC" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"lZI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"lZS" = ( +/obj/structure/weightmachine/weightlifter, +/turf/simulated/floor/plasteel{ + icon_state = "black" + }, +/area/station/security/permabrig) +"lZV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"mac" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"maF" = ( +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) +"maP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"mba" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/garrote/improvised, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"mbb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"mbC" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/phone{ + desc = "Предположительно, это прямая линия с центральным командованием Нанотрейзен. Он даже не подключен."; + name = "красный телефон"; + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"mbP" = ( +/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/carpet/royalblack, +/area/station/command/office/ntrep) +"mbZ" = ( +/obj/structure/chair/sofa/pew/left, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"mcg" = ( +/obj/structure/table/glass/reinforced/plastitanium, +/obj/item/clothing/mask/muzzle{ + pixel_y = -12 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = 12 + }, +/obj/item/reagent_containers/syringe/calomel{ + pixel_y = 8 + }, +/obj/item/reagent_containers/syringe/heparin{ + pixel_y = 4 + }, +/obj/item/implanter/mindshield{ + pixel_y = 1; + pixel_x = -2 + }, +/obj/item/clothing/mask/muzzle/safety/shock{ + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"mcl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"mcq" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"mcw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"mcx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"mcF" = ( +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"mcM" = ( +/obj/structure/closet/crate/freezer/iv_storage, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"mcQ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/structure/sign/deathsposal{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"mdi" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/north) +"mdn" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/smes) +"mdr" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5 + }, +/obj/item/soap, +/obj/item/bikehorn/rubberducky, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/public/toilet) +"mdy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"mdX" = ( +/obj/item/reagent_containers/food/snacks/grown/cannabis, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/mask/cigarette/medical_marijuana, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"mem" = ( +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/medical/ward) +"mev" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"meB" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/item/tank/internals/oxygen/yellow, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"meN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/public/toilet) +"meO" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/interrogation) +"mfk" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"mfv" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Singularity"; + name = "Singularity Blast Doors" + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"mfy" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"mfS" = ( +/obj/machinery/hydroponics/constructable{ + desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays."; + name = "Prison hydroponics tray"; + using_irrigation = 1 + }, +/obj/item/seeds/orange, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"mgd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"mgh" = ( +/obj/machinery/economy/vending/assist/free, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"mgo" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/misc_lab) +"mgF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"mgJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/aft) +"mgZ" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"mha" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/space, +/area/space/nearstation) +"mhh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"mhm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/floodlight{ + light_power = 1 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"mhv" = ( +/obj/structure/table/reinforced, +/obj/item/lighter/zippo{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/sign/securearea{ + desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; + icon_state = "monkey_painting"; + name = "Mr. Deempisi portrait"; + pixel_y = 32 + }, +/obj/machinery/door_control/bolt_control/west{ + id = "vipbar_bolt" + }, +/obj/machinery/light/directional/north, +/obj/item/book/manual/wiki/sop_service{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/book/manual/barman_recipes{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/simulated/floor/light/purple, +/area/station/service/bar) +"mhQ" = ( +/obj/structure/railing/cap/reversed{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"mhT" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/primary) +"mhW" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/asmaint) +"mia" = ( +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"mib" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/alarm/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluefull" + }, +/area/station/maintenance/aft) +"mii" = ( +/obj/effect/landmark/start/shaft_miner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"miq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"miF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/lawyer/glass{ + name = "Internal Affairs Office" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "IAA" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/iaa, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"miN" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Access"; + network = list("Research","SS13") + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"miW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"miY" = ( +/turf/simulated/wall, +/area/station/engineering/dronefabricator) +"mjg" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall/r_wall, +/area/station/medical/virology) +"mjh" = ( +/obj/structure/table/reinforced, +/obj/machinery/defibrillator_mount/loaded, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"mjE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"mjO" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "Engineering Singularity North-West"; + dir = 4; + network = list("SS13","Singularity","Engineering") + }, +/turf/space, +/area/station/engineering/control) +"mjP" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"mjR" = ( +/obj/structure/cable{ + 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/plasteel, +/area/station/security/main) +"mjW" = ( +/obj/effect/mapping_helpers/airlock/polarized{ + id = "hos_room" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command/hos/glass{ + name = "Head of Security Bedroom" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/security/hos, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hos) +"mjZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"mkg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"mki" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/wardrobe/coroner, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"mkq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"mkE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/bluegrid, +/area/station/telecomms/chamber) +"mlv" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/closet, +/obj/item/restraints/legcuffs/beartrap, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"mlz" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/power/apc/engineering/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"mlC" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/boxing/blue{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/clothing/gloves/boxing{ + pixel_x = 5; + pixel_y = -6 + }, +/obj/machinery/economy/vending/wallmed/directional/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"mlF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/service/chapel) +"mma" = ( +/obj/structure/dresser, +/obj/machinery/camera{ + c_tag = "Brig Head of Security's Bedroom" + }, +/obj/machinery/newscaster/security_unit/north, +/obj/machinery/door_control/shutter/west{ + id = "hos_secure_doors" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hos) +"mms" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"mmt" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"mmB" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"mmV" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"mnh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Chamber Hallway" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/hall) +"moA" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/maintenance/abandonedbar) +"moH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Psychiatrist Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, +/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/station/medical/psych) +"moN" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"moS" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"mpm" = ( +/obj/machinery/door/poddoor{ + id_tag = "toxinsdriver"; + name = "Toxins Launcher Bay Door"; + protected = 0 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"mpt" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"mpK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"mpV" = ( +/obj/machinery/power/smes{ + capacity = 9e+006; + charge = 10000 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"mpX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"mqw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/y, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"mqG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"mqK" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"mqV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"mrc" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"mrd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/tech_storage) +"mrk" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"mrw" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"mrK" = ( +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/xenobiology) +"mrY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"msm" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"msr" = ( +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/maintenance/abandonedbar) +"msC" = ( +/obj/machinery/hydroponics/constructable{ + desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays."; + name = "Prison hydroponics tray"; + using_irrigation = 1 + }, +/obj/item/seeds/banana, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"msN" = ( +/obj/structure/chair/comfy/teal{ + dir = 8 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"msR" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/machinery/door_control/shutter/west{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_y = 8; + req_one_access_txt = "12" + }, +/obj/machinery/driver_button{ + id_tag = "trash"; + pixel_x = -24; + pixel_y = -8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"msU" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/structure/bedsheetbin{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/public/locker) +"msY" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + 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/station/maintenance/fpmaint) +"mtc" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/machinery/camera{ + c_tag = "Engineering Equipment Storage"; + dir = 8; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/hallway) +"mtx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"mtR" = ( +/obj/machinery/porta_turret{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai_upload) +"mtW" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"muq" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio3"; + name = "Chamber 3 Containment Blast Doors" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"mut" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"muv" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"muD" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"mvk" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/service/janitor) +"mvm" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"mvK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel, +/area/station/hallway/primary/central/se) +"mws" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/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/station/maintenance/aft) +"mwL" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/supply/storage) +"mwO" = ( +/obj/effect/decal/cleanable/dust, +/obj/item/reagent_containers/food/drinks/cans/badminbrew, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/port) +"mwY" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"mxn" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"mxz" = ( +/obj/machinery/space_heater, +/obj/effect/spawner/random_spawners/cobweb_left_rare, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"mxA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/science{ + pixel_y = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/asmaint) +"mxH" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"mxJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"mxP" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"mxZ" = ( +/obj/structure/table/wood, +/obj/item/bikehorn/rubberducky, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"myq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint2) +"myQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"mze" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/snacks/breadslice, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle/large{ + pixel_x = 7 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "durka2"; + layer = 4 + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 1; + name = "Secure Desk" + }, +/obj/machinery/door/window/reinforced/normal{ + name = "Secure Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/psychology{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/patients_rooms) +"mzj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"mzk" = ( +/obj/structure/chair/comfy/teal, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"mzC" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"mzL" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/security/permabrig) +"mzM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"mAd" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/turf/simulated/floor/carpet/royalblue, +/area/station/command/office/captain) +"mAX" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/light/small/directional/south, +/obj/effect/mapping_helpers/machinery/destroyed, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/fsmaint) +"mAY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light_switch/west, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/atmos/control) +"mAZ" = ( +/obj/machinery/door/airlock/external{ + id_tag = "scibomb_door_ext"; + locked = 1; + name = "External Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"mBl" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/port) +"mBE" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"mBZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/access_button{ + autolink_id = "eng_atmos_btn_int"; + pixel_x = -25; + pixel_y = 25; + req_access_txt = "10;13" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"mCc" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Checkpoint" + }, +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/equipment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"mCp" = ( +/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" + }, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"mCw" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall, +/area/station/maintenance/fsmaint) +"mCx" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"mCA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/sunglasses/blindfold, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/maintenance/apmaint) +"mCO" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"mCV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"mDs" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"mDv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/mob/living/simple_animal/moth, +/turf/simulated/floor/carpet, +/area/station/maintenance/fsmaint) +"mDx" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the E.X.P.E.R.I-MENTOR chamber."; + layer = 4; + name = "E.X.P.E.R.I-MENTOR Camera Screen"; + network = list("Telepad"); + pixel_x = -32 + }, +/obj/item/book/manual/wiki/sop_science{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/experimentor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"mDE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/solar/auxstarboard) +"mDO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/supermatter_room) +"mDZ" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"mEa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/service/hydroponics) +"mEh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6; + level = 1 + }, +/obj/effect/spawner/random_spawners/cobweb_left_rare, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"mEj" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/main) +"mEk" = ( +/obj/machinery/door/airlock/welded{ + name = "Maintenance Airlock" + }, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"mEs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"mEx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"mEF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"mEM" = ( +/obj/structure/displaycase/hos, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"mET" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"mFq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"mFE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet, +/area/station/command/office/captain) +"mFI" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/abandonedbar) +"mFO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"mFQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/service/bar) +"mGG" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio7"; + name = "Chamber 7 Containment Blast Doors" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio6"; + name = "Chamber 6 Containment Blast Doors" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/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/plating, +/area/station/science/xenobiology) +"mGQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"mHb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"mHh" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/poddoor{ + id_tag = "hos_secure_doors" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"mHA" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"mHO" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/hallway/secondary/exit) +"mIA" = ( +/obj/structure/table, +/obj/item/stamp/granted, +/obj/item/clothing/head/soft, +/obj/item/hand_labeler, +/obj/item/clothing/head/soft, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/storage) +"mIJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"mIM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"mIU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/effect/mapping_helpers/machinery/destroyed, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"mJi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/molten_object/large, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"mJm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"mJp" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"mJO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"mJT" = ( +/obj/structure/closet/cardboard, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"mKq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"mKA" = ( +/obj/machinery/door/firedoor, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"mKG" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"mKO" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/botanist, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"mLu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"mLw" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"mLH" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"mMk" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/fyellow{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/radio/intercom/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"mMo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"mMp" = ( +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/machinery/door/airlock/maintenance, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"mMA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"mMB" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurple" + }, +/area/station/command/office/rd) +"mMY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"mNd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"mNI" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"mNK" = ( +/obj/machinery/door/airlock/maintenance, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"mNR" = ( +/obj/machinery/hydroponics/soil, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"mNS" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"mNT" = ( +/obj/item/skeleton/r_hand, +/obj/item/skeleton/r_arm, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/maintenance/fsmaint) +"mNX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fpmaint) +"mOa" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"mOp" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"mOz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"mOG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"mOH" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/economy/vending/hydrodrobe, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"mPO" = ( +/obj/machinery/door/airlock, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/station/maintenance/fsmaint) +"mQf" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/structure/sign/poster/ripped{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"mQz" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"mQL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"mQX" = ( +/obj/structure/barricade/wooden{ + layer = 4 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"mRf" = ( +/obj/item/bedsheet/hop, +/obj/structure/bed, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"mRJ" = ( +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"mRO" = ( +/obj/structure/table, +/obj/item/roller{ + pixel_y = 6 + }, +/obj/item/roller{ + pixel_y = 12 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -12 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"mSo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"mSI" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/decal/cleanable/dust, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fsmaint) +"mSJ" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/exit) +"mTd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"mTh" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/item/watertank, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/machinery/camera{ + c_tag = "Hydroponics Storage" + }, +/obj/structure/sign/poster/contraband/have_a_puff{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"mTi" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"mTj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"mTx" = ( +/obj/item/reagent_containers/syringe/charcoal{ + pixel_y = 11 + }, +/obj/item/reagent_containers/syringe/antiviral{ + pixel_y = 7 + }, +/obj/item/reagent_containers/syringe/insulin{ + pixel_y = 3 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_y = -1 + }, +/obj/machinery/light/directional/south, +/obj/structure/table, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"mTA" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "purple" + }, +/area/station/science/rnd) +"mTT" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"mTZ" = ( +/obj/item/stack/rods{ + amount = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"mUt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"mUM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"mUT" = ( +/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, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"mVh" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/bluespace_beacon, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"mVr" = ( +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "n2_sensor" + }, +/turf/simulated/floor/engine/n2, +/area/station/engineering/atmos) +"mVG" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"mVI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"mVJ" = ( +/obj/machinery/power/solar{ + name = "Aft Port Solar Array" + }, +/obj/structure/cable, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/engineering/solar/port) +"mVO" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"mVP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"mWa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/hallway) +"mWf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "vault" + }, +/area/station/command/vault) +"mWq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"mXy" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/engineering/smes) +"mXz" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"mXS" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/structure/sink/kitchen/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"mYn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"mYv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/exit) +"mYy" = ( +/obj/machinery/camera{ + c_tag = "Bridge Lounge Zone East"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/command/bridge) +"mYL" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/trinary/filter/flipped{ + dir = 4; + filter_type = -1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"mZd" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/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, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"mZf" = ( +/obj/machinery/conveyor/west{ + id = "garbage" + }, +/obj/structure/plasticflaps, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"mZn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/sw) +"mZp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/public/glass, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/abandonedbar) +"mZs" = ( +/obj/structure/sign/custodian{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"mZC" = ( +/obj/machinery/hologram/holopad, +/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/wood/fancy/cherry, +/area/station/command/office/captain) +"mZI" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/door_control/shutter/north{ + id = "hopqueue"; + name = "Queue Privacy Shutters Control"; + pixel_x = -6; + req_one_access_txt = "57" + }, +/obj/machinery/door_control/shutter/north{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = 6; + req_one_access_txt = "57" + }, +/obj/machinery/flasher_button{ + id = "hopflash"; + pixel_y = 36 + }, +/obj/machinery/door_control/ticket_machine_button{ + pixel_x = -24; + pixel_y = -7 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"nah" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"naG" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"naU" = ( +/obj/item/skeleton/l_hand, +/obj/item/skeleton/l_arm, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/maintenance/fsmaint) +"nbj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"nbx" = ( +/obj/machinery/hydroponics/soil, +/turf/simulated/floor/grass, +/area/station/maintenance/asmaint2) +"nbz" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/poddoor/preopen{ + id_tag = "bridge blast west"; + name = "Bridge Blast Doors" + }, +/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/plasteel, +/area/station/command/bridge) +"nbA" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"nbC" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"nbE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"nbW" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom/command, +/obj/machinery/door_control/shutter/north{ + id = "heads_meeting"; + name = "Privacy Shutters Control"; + pixel_x = -11 + }, +/obj/machinery/button/windowtint/north{ + id = "conference"; + pixel_x = 11 + }, +/obj/machinery/door_control/bolt_control/north{ + id = "conference" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"nci" = ( +/obj/machinery/door/airlock/bananium{ + name = "Clown's Office" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/clown, +/turf/simulated/floor/wood/oak, +/area/station/service/clown) +"ncM" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"ncY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/directional/north, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"ndn" = ( +/obj/structure/curtain/open/shower/security{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/machinery/shower{ + pixel_y = 20 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/miscellaneous/plumbing{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/security/main) +"ndr" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/gravitygenerator) +"nds" = ( +/obj/machinery/light/directional/north, +/obj/structure/table, +/obj/item/hand_tele, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"ndt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"ndH" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"ndQ" = ( +/obj/structure/disposalpipe/junction/y{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"ndX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"neo" = ( +/obj/effect/spawner/window/reinforced/tinted/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"neF" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/entry) +"neH" = ( +/obj/structure/closet/crate/medical, +/obj/item/crutches, +/obj/item/crutches{ + pixel_x = 4 + }, +/obj/item/crutches{ + pixel_x = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"neO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"neP" = ( +/obj/structure/barricade/wooden{ + layer = 4 + }, +/obj/machinery/conveyor/east{ + id = "Skynet_heavy" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/assembly_line) +"neV" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/cable{ + 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/plating, +/area/station/maintenance/apmaint) +"nfo" = ( +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"nfE" = ( +/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/plasteel{ + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"ngO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"ngS" = ( +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/item/kirbyplants, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"ngT" = ( +/obj/structure/chair/sofa/corp/left, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"nhc" = ( +/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/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"nhm" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/control) +"nhs" = ( +/obj/machinery/atmospherics/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"nhw" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/crate/can, +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"nhF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"nhO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"nic" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/engine/supermatter) +"nif" = ( +/obj/structure/table/glass, +/obj/item/deck/cards, +/turf/simulated/floor/light/purple, +/area/station/service/bar/atrium) +"nin" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"nio" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/general{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ + dir = 4 + }, +/obj/machinery/door/window/reinforced/reversed{ + dir = 4; + name = "Drone Fabricator Room" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 8; + location = "Engineering" + }, +/turf/simulated/floor/plating, +/area/station/engineering/dronefabricator) +"nis" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/se) +"niH" = ( +/obj/structure/cable{ + 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/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"niJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"niP" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/controlroom) +"niR" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"niT" = ( +/obj/machinery/newscaster/directional/north, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel, +/area/station/command/office/hop) +"niW" = ( +/obj/machinery/atmospherics/binary/valve, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/maintcentral2) +"njM" = ( +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "hop"; + name = "Privacy Shutters" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hop) +"nkk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/hallway/secondary/exit) +"nko" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/meter, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"nkt" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"nky" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"nkO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"nkP" = ( +/obj/machinery/ignition_switch{ + id = "Turbine_igniter"; + pixel_x = 8; + pixel_y = -38 + }, +/obj/machinery/computer/security/telescreen/turbine{ + dir = 8; + pixel_x = 32 + }, +/obj/machinery/computer/turbine_computer{ + dir = 1; + id = "incineratorturbine" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door_control/shutter{ + id = "turbinevent"; + name = "Turbine Vent Control"; + pixel_x = -8; + pixel_y = -38; + req_access_txt = "12" + }, +/obj/machinery/door_control/shutter/south{ + id = "auxincineratorvent"; + name = "Auxiliary Vent Control"; + pixel_x = -8; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"nkX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"nlc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/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/carpet, +/area/station/supply/qm) +"nlj" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"nln" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blackcorner" + }, +/area/station/security/permabrig) +"nlv" = ( +/obj/effect/landmark/start/coroner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"nlI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/fsmaint) +"nlK" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/brig) +"nlT" = ( +/obj/machinery/door/firedoor, +/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/machinery/door/airlock/science{ + name = "Genetics Monkey Pen" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/genetics, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"nmc" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) +"nmk" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 35 + }, +/obj/structure/chair/stool/bar{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"nmJ" = ( +/obj/structure/chair/comfy/black, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"nmO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellowcorner" + }, +/area/station/medical/chemistry) +"nnj" = ( +/obj/effect/decal/warning_stripes/green, +/obj/machinery/chem_dispenser/botanical, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"nnC" = ( +/obj/item/radio/beacon, +/obj/effect/turf_decal/stripes/full, +/obj/machinery/camera{ + c_tag = "Research Toxins Test Chamber Center"; + dir = 8; + invuln = 1; + name = "Hardened Bomb-Test Security Camera"; + network = list("Toxins","Research","SS13") + }, +/turf/simulated/floor/plasteel/airless/indestructible, +/area/station/science/toxins/test) +"nnK" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"nnW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"nof" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"noh" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"noq" = ( +/obj/machinery/conveyor/west{ + dir = 1; + id = "QMLoad" + }, +/obj/machinery/status_display/supply_display/west, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"noy" = ( +/obj/machinery/computer/card/minor/ce{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/office/ce) +"npb" = ( +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/station/science/genetics) +"npc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"npm" = ( +/obj/item/radio/intercom/custom{ + pixel_y = 22 + }, +/obj/item/radio/intercom/private{ + dir = 1; + pixel_y = -22 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/landmark{ + icon = 'icons/effects/spawner_icons.dmi'; + icon_state = "AI"; + name = "tripai" + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai) +"nps" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"npF" = ( +/obj/item/kitchen/knife{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/clothing/under/syndicate/tacticool{ + pixel_x = -1 + }, +/obj/item/clothing/mask/balaclava{ + pixel_x = 2; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"npM" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/medbay2) +"npQ" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"npW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"nqa" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"nqn" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"nqv" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/port) +"nqC" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 8; + state = 2 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"nqG" = ( +/obj/machinery/economy/vending/cola, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/public/dorms) +"nqL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"nqN" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"nqX" = ( +/obj/structure/table, +/obj/item/paper{ + desc = ""; + info = "Brusies sustained in the holodeck can be healed simply by sleeping."; + name = "Holodeck Disclaimer" + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"nrd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/station/service/library) +"nrC" = ( +/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/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"nrD" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"nrP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/asmaint) +"nrS" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/book/manual/atmospipes, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"nsq" = ( +/obj/machinery/door/airlock/external{ + id_tag = "laborcamp_home"; + locked = 1; + name = "Labor Camp Airlock" + }, +/obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/turf/simulated/floor/plating, +/area/station/security/brig) +"nsu" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/apmaint) +"nsA" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"nsK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"nsP" = ( +/obj/structure/table/glass, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"nsZ" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/brig) +"nte" = ( +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ntg" = ( +/mob/living/simple_animal/hostile/retaliate/goat/chef, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"ntl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"ntr" = ( +/obj/machinery/cooker/deepfryer, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"ntt" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"ntD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"nuM" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"nuO" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/engineering/atmos) +"nuW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/explab) +"nvm" = ( +/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/plating, +/area/station/maintenance/fore) +"nvq" = ( +/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/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"nvy" = ( +/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" + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"nvN" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/aitransit) +"nvO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plating, +/area/station/maintenance/fpmaint) +"nwj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/maintenance/asmaint2) +"nwx" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"nwG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"nwO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"nwR" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"nxg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/qm) +"nxm" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"nxy" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fsmaint) +"nxH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"nxY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"nyh" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/eight, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"nyJ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"nyR" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"nzd" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/poddoor/preopen{ + id_tag = "bridge blast west"; + name = "Bridge Blast Doors" + }, +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"nzm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Telecommunications Access" + }, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, +/obj/effect/mapping_helpers/airlock/access/any/science/robotics, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/telecomms/chamber) +"nzp" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/fsmaint) +"nzx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"nzF" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/smartfridge/foodcart{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"nAi" = ( +/obj/machinery/conveyor/east{ + dir = 2; + id = "QMLoad2" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"nAq" = ( +/obj/structure/sink/directional/east, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"nAs" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"nAy" = ( +/obj/structure/bed/mattress/dirty, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"nAE" = ( +/obj/machinery/smartfridge, +/obj/machinery/door_control/shutter/east{ + id = "HydroHallway"; + name = "Hydroponics Privacy Shutters Control"; + req_one_access_txt = "35" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"nAL" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"nAM" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"nAN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/security/lobby) +"nBc" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/light/directional/south, +/obj/structure/sign/poster/official/random/south, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"nBq" = ( +/obj/structure/table, +/obj/machinery/firealarm/directional/south, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine{ + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"nBs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"nBw" = ( +/obj/machinery/door/airlock/command/glass, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"nBz" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/stamp/granted{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stamp/qm, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/simulated/floor/carpet, +/area/station/supply/qm) +"nBI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id_tag = "maintcham"; + name = "Containment Pen" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"nBN" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"nBZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"nCa" = ( +/obj/machinery/conveyor/west{ + dir = 1; + id = "QMLoad" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"nCk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id_tag = "mechbay_inner"; + name = "Mech Bay" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"nCm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/ce) +"nCM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel Office" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel/office) +"nCP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + id = "xenobio3"; + name = "Chamber 3 Containment Blast Doors"; + pixel_y = 4; + req_one_access_txt = "55" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"nCV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/interrogation) +"nCX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"nCZ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"nDd" = ( +/obj/structure/closet/secure_closet/hop, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"nDq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"nDZ" = ( +/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" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"nEA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"nEC" = ( +/obj/structure/sign/poster/contraband/random/south, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"nEQ" = ( +/turf/simulated/wall, +/area/station/security/prison/cell_block/A) +"nET" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door_control/shutter{ + id = "xenobio5"; + name = "Chamber 5 Containment Blast Doors"; + pixel_y = 4; + req_one_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"nFa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"nFc" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"nFx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/fsmaint) +"nFG" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "purple" + }, +/area/station/science/rnd) +"nFP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"nGo" = ( +/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/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"nGq" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"nGG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"nGL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"nGV" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"nHv" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/station/hallway/secondary/exit) +"nHx" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"nHW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"nIb" = ( +/obj/structure/chair/sofa/bench/right{ + cover_color = "#2f8faf"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluefull" + }, +/area/station/command/bridge) +"nIq" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"nIF" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"nIM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"nIU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"nIX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/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" + }, +/turf/simulated/floor/catwalk, +/area/station/maintenance/storage) +"nJf" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/closet/radiation, +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"nJl" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/thermomachine/freezer/on{ + name = "Temperature control unit" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"nJz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"nJV" = ( +/obj/machinery/access_button{ + autolink_id = "evamaint_btn_ext"; + pixel_x = 25; + req_one_access_txt = "13" + }, +/obj/machinery/door/airlock/external{ + id_tag = "evamaint_door_ext"; + locked = 1; + name = "EVA External Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"nKq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"nKv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"nKO" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/pestspray, +/obj/item/reagent_containers/spray/plantbgone, +/obj/effect/decal/cleanable/dirt, +/obj/item/cultivator/rake, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/maintenance/asmaint) +"nLa" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/metal/fifty{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "purple" + }, +/area/station/science/rnd) +"nLf" = ( +/obj/effect/decal/warning_stripes/blue/hollow, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light/directional/west, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"nLg" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"nLp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"nLC" = ( +/obj/machinery/light/directional/west, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"nLT" = ( +/obj/machinery/computer/security/engineering{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"nMd" = ( +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"nMi" = ( +/obj/machinery/atmospherics/binary/valve{ + dir = 1; + name = "port to space" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"nMz" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"nME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start/explorer, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"nMG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/asmaint) +"nMT" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"nNb" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/paper_bin, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"nNf" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"nNh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mineral/equipment_vendor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"nNv" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-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/plating, +/area/station/security/prisonlockers) +"nNX" = ( +/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 + }, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"nOo" = ( +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"nOx" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"nOD" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/status_display/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"nOE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"nOW" = ( +/obj/structure/chair/sofa/pew/left{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"nPm" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"nPD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"nPG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"nQl" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/light/purple, +/area/station/service/bar) +"nQG" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"nQT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"nQW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"nRx" = ( +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"nRB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"nRN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/east) +"nRP" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"nRS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/wire_splicing/thirty, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"nSe" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/generic, +/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/station/maintenance/fpmaint2) +"nSm" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"nSH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"nSN" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/clothing/gloves/color/black, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"nSQ" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"nTf" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"nTk" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + autolink_id = "air_in" + }, +/obj/machinery/sparker{ + id = "toxinsigniter"; + pixel_x = -20 + }, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"nTm" = ( +/obj/machinery/sparker{ + id = "testigniter"; + name = "Test Igniter"; + pixel_x = -25 + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"nTn" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"nTv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/storage/backpack/duffel/medical, +/obj/item/clothing/under/rank/medical/nurse, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/maintenance/aft) +"nTG" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"nTN" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_y = 3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"nTP" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/simulated/floor/transparent/glass, +/area/station/service/bar/atrium) +"nTQ" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"nTZ" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/window/full/basic, +/turf/simulated/floor/grass/no_creep, +/area/station/command/bridge) +"nUh" = ( +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"nUj" = ( +/obj/machinery/button/windowtint/west{ + id = "scene"; + range = 10 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Bar West"; + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"nUn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"nUZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"nVh" = ( +/obj/machinery/firealarm, +/turf/simulated/wall, +/area/station/engineering/atmos) +"nVq" = ( +/obj/machinery/light/directional/east, +/obj/structure/table, +/obj/item/cultivator, +/obj/item/shovel/spade, +/obj/item/hatchet, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/service/hydroponics) +"nVB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"nWm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"nWM" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"nWW" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + on = 0; + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/lighter/zippo/hop{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/pen/multi/fountain{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"nWZ" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"nXo" = ( +/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/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"nXr" = ( +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"nXu" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/item/hemostat, +/obj/item/scalpel, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"nXB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/engine{ + icon_state = "rampbottom"; + name = "reinforced stairs" + }, +/area/station/science/test_chamber) +"nXK" = ( +/obj/structure/closet/firecloset, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"nXN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"nXU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/science/robotics) +"nYk" = ( +/obj/machinery/reagentgrinder{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/structure/table, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"nYs" = ( +/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/decal/warning_stripes/east, +/obj/effect/turf_decal/caution{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"nYF" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/junction/y{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"nYX" = ( +/obj/structure/table/wood, +/obj/machinery/door_control/normal{ + id = "hopofficedoor"; + name = "Office Door"; + pixel_x = -6; + pixel_y = 3; + req_one_access_txt = "57" + }, +/obj/effect/spawner/lootdrop/officetoys, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"nYZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"nZI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/wall, +/area/station/maintenance/apmaint) +"nZN" = ( +/obj/machinery/door/airlock/command/hop, +/obj/effect/mapping_helpers/airlock/access/any/command/hop, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/office/hop) +"nZW" = ( +/obj/machinery/igniter{ + id = "Turbine_igniter"; + luminosity = 2 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/engine/vacuum, +/area/station/maintenance/turbine) +"oac" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction/reversed{ + dir = 8; + name = "Engineering Main"; + sort_type_txt = "4" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"oap" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fpmaint) +"oaI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"oaX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"oaY" = ( +/obj/effect/decal/warning_stripes/blue/hollow, +/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"obb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Hydroponics Desk" + }, +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Kitchen Desk" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"obE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"obX" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Botany"; + sort_type_txt = "21" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/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/plating, +/area/station/maintenance/fsmaint) +"oca" = ( +/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/plasteel, +/area/station/command/bridge) +"oce" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"ocw" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/belt/utility{ + pixel_y = 3 + }, +/obj/item/multitool, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "purple" + }, +/area/station/science/hallway) +"ocX" = ( +/obj/structure/table, +/obj/item/circular_saw, +/obj/item/surgicaldrill, +/obj/item/cautery, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/science/robotics) +"odl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/office) +"odt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"odx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"odD" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"odL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"odO" = ( +/obj/machinery/airlock_controller/access_controller{ + ext_button_link_id = "incinerator_btn_ext"; + ext_door_link_id = "incinerator_door_ext"; + int_button_link_id = "incinerator_btn_int"; + int_door_link_id = "incinerator_door_int"; + name = "Incinerator Access Console"; + pixel_x = -26; + pixel_y = 6; + req_one_access_txt = "12" + }, +/obj/machinery/ignition_switch{ + id = "Incinerator"; + pixel_x = -24; + pixel_y = -6 + }, +/obj/machinery/atmospherics/meter, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"odR" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"oes" = ( +/obj/structure/disposalpipe/sortjunction/reversed{ + dir = 8; + name = "Genetics"; + sort_type_txt = "23" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"oeO" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/crowbar, +/obj/machinery/alarm/directional/north, +/obj/item/mecha_parts/core, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"ofq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"ofu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"ofw" = ( +/obj/structure/sign/barsign, +/turf/simulated/wall, +/area/station/service/bar/atrium) +"ofy" = ( +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"ofP" = ( +/obj/structure/sign/restroom{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"ofW" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/bookcase, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"ogg" = ( +/obj/machinery/door/airlock/research{ + name = "E.X.P.E.R.I-MENTOR Lab" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/explab) +"ogr" = ( +/obj/structure/table, +/obj/item/storage/belt/medical, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/station/maintenance/aft) +"ogy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm, +/turf/simulated/wall, +/area/station/engineering/atmos) +"ogH" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/engineering/aitransit) +"ogI" = ( +/turf/simulated/wall/r_wall, +/area/station/medical/chemistry) +"ogJ" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/machinery/door/airlock/maintenance_hatch, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"ogL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ogO" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"ohp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/fsmaint) +"ohx" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio7"; + name = "Chamber 7 Containment Blast Doors" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"ohy" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/command/bridge) +"oid" = ( +/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" + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"oij" = ( +/obj/structure/chair/sofa/left{ + color = "#85130b" + }, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"oil" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Hydroponics Desk" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "HydroHallway"; + name = "Hydroponics Shutters" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/service/hydroponics) +"ois" = ( +/obj/structure/sign/restroom{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"oiA" = ( +/obj/machinery/camera{ + c_tag = "Medbay Hallway South"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"oiM" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/generic, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"oiQ" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/space, +/area/space/nearstation) +"oiR" = ( +/obj/structure/lattice, +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/turf/space, +/area/space/nearstation) +"oiS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyerPort"; + name = "Medbay Entrance" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"oja" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/junction/y{ + dir = 8 + }, +/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/plasteel{ + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"ojb" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "RnDChem"; + name = "Biohazard Shutter" + }, +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/atmospherics/pipe/simple/insulated, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"ojj" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/alarm/directional/west, +/obj/machinery/space_heater, +/obj/machinery/camera{ + c_tag = "AI Satellite Atmospherics"; + dir = 4; + network = list("SS13","MiniSat") + }, +/turf/simulated/floor/plating, +/area/station/aisat/atmos) +"ojs" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/storage) +"ojt" = ( +/obj/machinery/door/airlock/external{ + id_tag = "eng_sm_door_ext"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/simulated/floor/plating, +/area/station/engineering/aitransit) +"ojz" = ( +/obj/structure/sign/poster/contraband/random/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"ojJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/poddoor{ + id_tag = "maint1" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ojT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"ojV" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/security/warden) +"okb" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"okf" = ( +/obj/machinery/access_button{ + autolink_id = "secmaint_btn_ext"; + pixel_x = -25; + pixel_y = -25; + req_one_access_txt = "13" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"okj" = ( +/obj/machinery/door/airlock/external{ + id_tag = "eng_sm_door_int"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/engineering/aitransit) +"okB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/brig) +"olg" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"oll" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"olv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/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/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"olD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"olG" = ( +/obj/machinery/light/directional/north, +/obj/structure/rack, +/obj/item/stack/sheet/plasteel, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/engineering/gravitygenerator) +"olN" = ( +/obj/structure/chair/comfy/corp, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"olW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"omd" = ( +/obj/item/stack/sheet/metal{ + amount = 10 + }, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"omz" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"omI" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"onc" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics) +"onE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/command/bridge) +"onM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitehall" + }, +/area/station/science/hallway) +"onQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"ooa" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"ooP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"ooY" = ( +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "burn_sensor" + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"opa" = ( +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/storage) +"opf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluered" + }, +/area/station/command/bridge) +"opg" = ( +/obj/item/seeds/potato, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"oph" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"opj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitehall" + }, +/area/station/science/hallway) +"opY" = ( +/obj/machinery/door/airlock/command/qm/glass, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "qm" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/mapping_helpers/airlock/access/all/supply/qm, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel, +/area/station/supply/qm) +"oqc" = ( +/obj/machinery/disposal, +/obj/machinery/light_switch/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"oqL" = ( +/obj/machinery/door/airlock/external{ + id_tag = "secmaint_door_int"; + locked = 1; + name = "External Access" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"oqZ" = ( +/obj/effect/decal/warning_stripes/blue/partial, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"orf" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"orv" = ( +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"orA" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"orE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"orM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"orU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/security/permabrig) +"orY" = ( +/obj/effect/spawner/window/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"osa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"osm" = ( +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"osq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"osy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "apsolar_vent"; + dir = 4 + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "apsolar_btn_ext"; + ext_door_link_id = "apsolar_door_ext"; + int_button_link_id = "apsolar_btn_int"; + int_door_link_id = "apsolar_door_int"; + pixel_y = -25; + req_one_access_txt = "13"; + vent_link_id = "apsolar_vent" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"osB" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/supply/office) +"osE" = ( +/obj/structure/table, +/obj/item/paper_bin, +/turf/simulated/floor/plating, +/area/station/service/janitor) +"osN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio6"; + name = "Chamber 6 Containment Blast Doors" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio5"; + name = "Chamber 5 Containment Blast Doors" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"otc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Hydroponics"; + departmentType = 2; + name = "Hydroponics Requests Console"; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"oto" = ( +/obj/structure/sink/directional/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"otr" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"otv" = ( +/obj/structure/mecha_wreckage/ripley, +/obj/structure/sign/poster/contraband/random/north, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"otH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + density = 0; + dir = 2; + icon_state = "open"; + id_tag = "representative"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/command/office/ntrep) +"otJ" = ( +/obj/machinery/door/airlock/maintenance, +/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/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"otL" = ( +/obj/machinery/keycard_auth/west, +/obj/machinery/computer/security/mining{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"otW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"otX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/platform/corner{ + dir = 4; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blackcorner" + }, +/area/station/public/dorms) +"otY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation/observation) +"oub" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/utility) +"oum" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/air{ + filled = 1 + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"ouo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"ouw" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"ouH" = ( +/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/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "loadingareadirty1" + }, +/area/station/maintenance/fsmaint) +"ouJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"ouM" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"ouO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"ovu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fpmaint2) +"owa" = ( +/obj/machinery/ai_status_display/north, +/obj/machinery/camera{ + c_tag = "Departure Lounge Security" + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"owm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"owz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"owB" = ( +/obj/structure/chair/sofa/pew/left{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/maintenance/fsmaint) +"owJ" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"owP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/station/maintenance/asmaint) +"owR" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"oxe" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"oxf" = ( +/obj/effect/landmark/burnturf, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"oxy" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/morgue{ + dir = 1 + }, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plating, +/area/station/medical/morgue) +"oxA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"oxN" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/patients_rooms) +"oym" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"oyG" = ( +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"oyH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/binary/volume_pump/on{ + dir = 8; + name = "Gas to Cooling Loop" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"oyO" = ( +/obj/item/stack/packageWrap, +/obj/structure/table/glass, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"ozh" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"ozC" = ( +/turf/simulated/floor/plasteel{ + icon_state = "browncorner" + }, +/area/station/supply/storage) +"ozI" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"ozS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"ozX" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/breath/medical, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/science/robotics) +"oAs" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/portable/scrubber/huge/stationary, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/permabrig) +"oAD" = ( +/obj/machinery/atmospherics/portable/canister/toxins, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"oAS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"oBq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"oBs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/misc_lab) +"oBz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/mech_bay_recharge_floor, +/area/station/maintenance/asmaint) +"oBJ" = ( +/obj/machinery/shower{ + pixel_y = 20 + }, +/obj/effect/turf_decal/siding/yellow/end, +/obj/structure/curtain/open/shower/engineering, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"oBL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/holosign/surgery{ + id = "surgery2" + }, +/obj/machinery/door/airlock/medical/glass{ + id = "surgery2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "surgery2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/surgery/secondary) +"oBM" = ( +/obj/item/restraints/legcuffs/beartrap{ + armed = 1 + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"oBR" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/tape_roll, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"oBV" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 4; + state = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"oCa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"oCG" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/public/sleep) +"oDa" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/atmos/control) +"oDm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"oDq" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/aitransit) +"oDE" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"oDT" = ( +/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/junction, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"oEu" = ( +/obj/structure/sign/biohazard{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/asmaint) +"oEG" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"oEK" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + autolink_id = "air_in"; + dir = 1; + on = 1 + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"oER" = ( +/obj/structure/cable, +/obj/machinery/power/apc/directional/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/station/aisat/hall) +"oFj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"oFk" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/cyan, +/area/station/security/prison/cell_block/A) +"oFq" = ( +/obj/item/assembly/timer{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/assembly/timer{ + pixel_x = -1 + }, +/obj/item/assembly/timer{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/structure/rack, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/misc_lab) +"oFB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"oFK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/maintenance/apmaint) +"oFY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"oGf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/economy/vending/sovietsoda, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/permabrig) +"oGg" = ( +/obj/machinery/bodyscanner{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"oGi" = ( +/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{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/medbay2) +"oGl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"oGm" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "HoS" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"oGs" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio4"; + name = "Chamber 4 Containment Blast Doors" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"oGv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"oGw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump{ + name = "burn chamber to port" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"oGA" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai_upload) +"oGU" = ( +/obj/machinery/atmospherics/pipe/simple/insulated{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/valve{ + dir = 1; + name = "port to space" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"oHl" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/maintenance/asmaint2) +"oHA" = ( +/obj/machinery/atmospherics/binary/valve/open{ + dir = 4; + name = "Maintenance Air Supply" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"oHE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"oHO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"oIB" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/firealarm/directional/east, +/obj/machinery/computer/message_monitor{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/server) +"oJc" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"oJe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"oJo" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "purple" + }, +/area/station/science/hallway) +"oJr" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/asmaint) +"oJs" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/simulated/floor/transparent/glass, +/area/station/service/bar/atrium) +"oJu" = ( +/obj/machinery/newscaster/directional/north, +/obj/vehicle/janicart, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"oJw" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/robotics) +"oJF" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"oJO" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"oJZ" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/detective) +"oKl" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"oKo" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Processing" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/processing) +"oKu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"oKx" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"oLe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/misc_lab) +"oLk" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/engineering/break_room) +"oLm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"oLB" = ( +/turf/simulated/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/station/engineering/supermatter_room) +"oLJ" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"oLQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/entry) +"oLS" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"oLW" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/light_switch/south, +/obj/machinery/atmospherics/binary/valve/open{ + dir = 4; + name = "Filter to Space" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"oMc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"oMN" = ( +/obj/structure/table, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/plating, +/area/station/engineering/utility) +"oMR" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/reflector/double, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"oNu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"oNy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/office/captain) +"oND" = ( +/obj/machinery/light/directional/west, +/obj/machinery/power/apc/directional/north, +/obj/machinery/firealarm/directional/west, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"oNT" = ( +/obj/machinery/mass_driver{ + dir = 8; + id_tag = "trash" + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"oOe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"oOz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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 = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/rnd) +"oPu" = ( +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + name = "Kitchen Requests Console"; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"oPO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"oPS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"oPT" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"oPV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "conference" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/command/glass{ + id_tag = "conference" + }, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"oPX" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"oPY" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway 1"; + dir = 4; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"oQd" = ( +/obj/machinery/door/airlock/external{ + id_tag = "secmaint_door_ext"; + locked = 1; + name = "External Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"oQe" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/engine/vacuum, +/area/station/maintenance/turbine) +"oQv" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"oQB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"oQN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"oQQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"oQT" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/maintenance/abandonedbar) +"oQZ" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/maintenance/fsmaint) +"oRn" = ( +/obj/machinery/light/directional/east, +/obj/machinery/economy/atm/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"oRu" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/service/chapel) +"oRB" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"oRC" = ( +/obj/effect/spawner/wire_splicing/thirty, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"oRH" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"oRP" = ( +/obj/structure/rack, +/obj/item/extinguisher, +/obj/item/clothing/mask/gas, +/obj/item/grenade/chem_grenade/firefighting, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"oSm" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat/irish/Remi, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"oSt" = ( +/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{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"oSA" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"oSF" = ( +/obj/effect/decal/warning_stripes/west, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/brig) +"oSG" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"oSJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"oTk" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"oTy" = ( +/obj/machinery/ai_status_display{ + layer = 4 + }, +/turf/simulated/wall/r_wall, +/area/station/medical/storage) +"oTG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"oTT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"oUf" = ( +/obj/effect/decal/warning_stripes/red/hollow, +/obj/machinery/economy/vending/secdrobe, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"oUn" = ( +/obj/effect/landmark/start/doctor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"oUI" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"oUP" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/coffee{ + list_reagents = list("coffee"=0); + pixel_x = 6; + pixel_y = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/item/book/manual/wiki/sop_general{ + pixel_x = -6; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"oUV" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/permabrig) +"oUW" = ( +/obj/machinery/hologram/holopad{ + pixel_x = 16 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"oUX" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/command/bridge) +"oVr" = ( +/obj/machinery/light/directional/north, +/obj/machinery/syndicatebomb/training, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"oVs" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"oVy" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/door/airlock/public, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"oVH" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"oVJ" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Detective" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/detective) +"oVO" = ( +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"oVU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"oVY" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/item/reagent_containers/spray/waterflower, +/obj/machinery/light_switch/south, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"oWe" = ( +/obj/structure/table, +/obj/item/storage/photo_album, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"oWo" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generator Foyer" + }, +/obj/structure/closet/radiation, +/obj/structure/sign/radiation/rad_area{ + dir = 1; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/gravitygenerator) +"oWE" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"oWJ" = ( +/obj/effect/turf_decal{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"oWM" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"oWV" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"oWW" = ( +/obj/structure/cult/archives, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"oXo" = ( +/obj/structure/closet/crate/trashcart{ + desc = "A heavy, metal laundrycart with wheels."; + name = "laundry cart" + }, +/obj/item/clothing/under/color/orange/prison, +/obj/item/clothing/under/color/orange/prison, +/obj/item/clothing/shoes/orange, +/obj/item/clothing/shoes/orange, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/economy/vending/wallmed/directional/west, +/obj/item/crowbar/large, +/obj/item/clothing/under/misc/pj/red, +/obj/item/clothing/under/misc/pj/red, +/obj/item/clothing/under/misc/pj/blue, +/obj/item/clothing/under/misc/pj/blue, +/obj/item/clothing/shoes/sandal/white, +/obj/item/clothing/shoes/sandal/white, +/obj/item/clothing/shoes/sandal/white, +/obj/item/clothing/shoes/sandal/white, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/security/permabrig) +"oXr" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"oXK" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"oXN" = ( +/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/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"oYb" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/station/engineering/hallway) +"oYe" = ( +/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" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/command/bridge) +"oYo" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/machinery/light_switch/east, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"oYu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"oYC" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"oYM" = ( +/obj/structure/safe/floor{ + known_by = list("captain") + }, +/obj/item/gun/projectile/revolver/russian, +/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium, +/obj/item/storage/fancy/cigarettes/cigpack_robustgold, +/obj/item/toy/figure/crew/captain, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/station/command/office/captain/bedroom) +"oYN" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"oZa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"oZe" = ( +/obj/structure/lattice, +/turf/space, +/area/station/engineering/control) +"oZi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"oZr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"pak" = ( +/obj/structure/rack, +/obj/item/circuitboard/chem_heater{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/circuitboard/thermomachine{ + pixel_x = -5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"pao" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"paz" = ( +/obj/item/vending_refill/cigarette, +/obj/effect/decal/cleanable/dust, +/obj/structure/sign/poster/contraband/rebels_unite{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"paK" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/item/radio/intercom/locked/prison{ + dir = 8; + name = "Prison Intercom (General)"; + pixel_x = 22 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"paO" = ( +/obj/item/flag/nt{ + layer = 3.4 + }, +/obj/effect/turf_decal/woodsiding/end{ + dir = 1 + }, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/grass/jungle/no_creep, +/area/station/command/bridge) +"paW" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"pbc" = ( +/obj/item/toy/plushie/robo_corgi, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"pbv" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/security/warden) +"pbx" = ( +/obj/machinery/light/directional/west, +/obj/machinery/computer/area_atmos/area{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"pbz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"pbY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"pcu" = ( +/obj/machinery/door/airlock/public/glass{ + autoclose = 0; + heat_proof = 1; + id_tag = "turbine_door_int"; + locked = 1; + name = "Incinerator Exterior Airlock"; + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"pcF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"pcR" = ( +/obj/effect/decal/cleanable/dust, +/obj/item/storage/bible, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet/black, +/area/station/maintenance/fsmaint) +"pcX" = ( +/obj/machinery/computer/rdconsole/core, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "purple" + }, +/area/station/science/rnd) +"pdE" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"pey" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"peF" = ( +/obj/structure/sign/vacuum/external, +/turf/simulated/wall, +/area/station/supply/storage) +"pfj" = ( +/obj/effect/decal/cleanable/dirt, +/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/plasteel, +/area/station/maintenance/port) +"pfm" = ( +/obj/machinery/light/directional/south, +/mob/living/simple_animal/hostile/retaliate/carp/koi{ + name = "Лупа" + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/command/bridge) +"pfB" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/space_heater, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/maintenance/abandonedbar) +"pfE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction/reversed{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"pfF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"pfI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/station/engineering/solar/port) +"pgE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"pgT" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "eng_s_tesla_vent"; + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/engineering/control) +"pgV" = ( +/obj/effect/spawner/random_barrier/obstruction, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"pgW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"pgX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"phd" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"phl" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay2) +"phw" = ( +/obj/machinery/atmospherics/supermatter_crystal/engine, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"phG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/ticket_machine{ + layer = 4; + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/arrow{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "hopqueue"; + name = "Privacy Shutters" + }, +/turf/simulated/floor/plasteel, +/area/station/command/office/hop) +"phU" = ( +/obj/machinery/access_button{ + autolink_id = "aisat_btn_ext"; + pixel_x = 25; + pixel_y = 25 + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"pic" = ( +/obj/structure/chair/comfy/beige, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/hallway/secondary/entry) +"pij" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/sw) +"pin" = ( +/obj/item/kirbyplants, +/obj/machinery/camera{ + c_tag = "Medbay Reception Break Room" + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"pio" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"piF" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/decal/warning_stripes/white/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/storage) +"piK" = ( +/obj/structure/sign/poster/ripped{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"piL" = ( +/obj/structure/sink/kitchen/north, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/plating, +/area/station/service/janitor) +"piQ" = ( +/obj/machinery/door/airlock/external{ + id_tag = "admin_home"; + locked = 1; + name = "Arrival Airlock" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"pjc" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Morgue"; + sort_type_txt = "25" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay2) +"pji" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/holohoop{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"pjk" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/coroner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"pjq" = ( +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"pjs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/assembly_line) +"pjR" = ( +/obj/structure/table/wood, +/obj/item/poster/random_contraband{ + pixel_y = 2 + }, +/obj/item/poster/random_contraband{ + pixel_y = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"pkf" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"pko" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"pkG" = ( +/obj/machinery/economy/vending/snack, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "bluered" + }, +/area/station/command/bridge) +"pkQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Med Chemistry"; + sort_type_txt = "11" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"pkX" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Engineering Particle Accellerator"; + dir = 1; + network = list("Engineering","SS13") + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"plc" = ( +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/secondary/entry) +"plj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"plk" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/prison/cell_block/A) +"pll" = ( +/obj/structure/table/wood, +/obj/item/clipboard{ + pixel_x = -2 + }, +/obj/item/folder, +/obj/item/pen/multi/fountain, +/obj/item/stamp/rep, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"plV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"plW" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/sign/vacuum/external{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"pmj" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"pml" = ( +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"pmv" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"pmG" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/service/clown) +"pmH" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/abandonedbar) +"pmR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/item/shard, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"pni" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/station/service/clown) +"pnz" = ( +/obj/effect/decal/cleanable/blood/old{ + icon_state = "mfloor7"; + random_icon_states = null + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"pnE" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"pnG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"pnT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/computerframe{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"pnV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/chem_heater, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/maintenance/aft) +"pnX" = ( +/obj/structure/table, +/obj/item/kitchen/rollingpin{ + pixel_x = 3 + }, +/obj/item/kitchen/knife{ + pixel_x = -8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"pob" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"poe" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"pom" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/cmo{ + name = "CMO's Bedroom" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/cmo, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/command/office/cmo) +"pon" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"pop" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/ward) +"pou" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "HydroHallway"; + name = "Hydroponics Shutters" + }, +/turf/simulated/floor/plating, +/area/station/service/hydroponics) +"poC" = ( +/obj/structure/closet/secure_closet/research_reagents, +/obj/structure/sign/poster/contraband/random/east, +/obj/structure/disaster_counter/scichem{ + pixel_y = 32 + }, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"ppd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"ppm" = ( +/obj/structure/table, +/obj/item/clothing/glasses/hud/hydroponic{ + pixel_y = 8 + }, +/obj/item/clothing/glasses/hud/hydroponic{ + pixel_y = 4 + }, +/obj/item/clothing/glasses/hud/hydroponic, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"ppo" = ( +/obj/structure/disposalpipe/sortjunction/reversed{ + dir = 8; + name = "Disposals Maint"; + sort_type_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"ppH" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"ppN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"ppO" = ( +/turf/simulated/floor/plasteel{ + icon_state = "black" + }, +/area/station/security/permabrig) +"ppR" = ( +/obj/item/stack/sheet/metal{ + amount = 10 + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"ppV" = ( +/obj/machinery/economy/vending/sustenance, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"pqb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/hall) +"pql" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/portable/canister/air{ + filled = 0.1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"pqA" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"pqG" = ( +/obj/structure/table, +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Old Shop" + }, +/obj/machinery/door/poddoor/shutters{ + id_tag = "oldshop"; + name = "Old Shop Shutters" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"pqS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/station/legal/lawoffice) +"pqW" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"prr" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"prt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"prB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"prM" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + 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/junction{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"prR" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/security/detective) +"prX" = ( +/obj/structure/closet/secure_closet/cargotech, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/storage) +"psa" = ( +/obj/structure/closet/secure_closet/brig, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/prisonlockers) +"psP" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"psT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"psU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"psV" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/fsmaint) +"ptw" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/fsmaint) +"ptz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"ptK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"ptR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/mob/living/simple_animal/chicken/Wife, +/turf/simulated/floor/plasteel{ + icon_state = "asteroid" + }, +/area/station/service/hydroponics) +"pua" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"puj" = ( +/obj/structure/sign/explosives{ + pixel_x = 31 + }, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"puo" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"puy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/space, +/area/station/engineering/solar/port) +"puD" = ( +/obj/machinery/door/airlock/bathroom{ + name = "Private Restroom"; + id_tag = "toilet_sec_1" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/security/main) +"pva" = ( +/obj/machinery/hologram/holopad{ + pixel_x = 16 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/surgery/secondary) +"pvo" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"pvp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"pvL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light_switch/north, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/service/bar) +"pvM" = ( +/obj/item/reagent_containers/food/drinks/mug/med{ + pixel_y = 10 + }, +/obj/structure/table/glass, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"pvP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"pvT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/curtain, +/turf/simulated/floor/plating, +/area/station/medical/virology) +"pwc" = ( +/obj/machinery/economy/vending/cola, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "bluered" + }, +/area/station/command/bridge) +"pwf" = ( +/obj/machinery/chem_dispenser, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"pwk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"pwm" = ( +/obj/structure/sign/poster/official/random/west, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"pwD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"pwE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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/plasteel{ + icon_state = "white" + }, +/area/station/science/misc_lab) +"pwS" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id_tag = "engsm2"; + name = "SM Radiation Security Lock" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"pwU" = ( +/obj/effect/landmark/battle_mob_point, +/turf/simulated/floor/engine, +/area/holodeck/alphadeck) +"pxv" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"pxz" = ( +/obj/effect/decal/cleanable/dirt, +/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/station/maintenance/aft) +"pxD" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/reflector/box{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"pxG" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"pxL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"pxP" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"pya" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"pyl" = ( +/obj/item/kirbyplants{ + icon_state = "plant-32" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"pyq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"pyI" = ( +/obj/structure/sign/biohazard, +/turf/simulated/wall/r_wall, +/area/station/science/storage) +"pyS" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + autolink_id = "n2_in"; + dir = 1 + }, +/turf/simulated/floor/engine/n2, +/area/station/engineering/atmos) +"pzr" = ( +/obj/machinery/camera{ + c_tag = "Mining Dock External"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/computer/security/mining{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"pzF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fsmaint) +"pzN" = ( +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"pzQ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/paper/ntrep, +/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/carpet/royalblack, +/area/station/command/office/ntrep) +"pzX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"pzZ" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "perma_door_int"; + locked = 1; + name = "Prison Wing" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/full, +/obj/machinery/access_button{ + autolink_id = "perma_btn_int"; + name = "Prison Wing Access Button"; + pixel_y = -21; + req_one_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/permabrig) +"pAi" = ( +/turf/simulated/wall, +/area/station/medical/medbay2) +"pAl" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"pAp" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/electrical{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"pAv" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"pAx" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"pAM" = ( +/obj/structure/table, +/obj/item/soap/deluxe, +/obj/item/clothing/accessory/stethoscope, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"pAU" = ( +/obj/machinery/status_display/directional/north, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/sop_legal{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 3 + }, +/obj/item/book/manual/wiki/sop_security{ + pixel_x = -5 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"pAZ" = ( +/turf/simulated/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/station/engineering/equipmentstorage) +"pBf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel, +/area/station/hallway/primary/central/nw) +"pBh" = ( +/obj/machinery/status_display/directional/west, +/obj/item/flag/nt{ + layer = 3.4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "Dark_Golden_1"; + dir = 5 + }, +/area/station/legal/courtroom) +"pBP" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"pCe" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"pCv" = ( +/obj/item/shard, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"pCx" = ( +/obj/machinery/chem_heater, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"pCy" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"pCK" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"pCR" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start/captain, +/turf/simulated/floor/carpet/royalblue, +/area/station/command/office/captain) +"pCW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"pDr" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"pDz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"pDK" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/carpet/black, +/area/station/maintenance/fsmaint) +"pDZ" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"pEp" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"pEu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"pEE" = ( +/obj/machinery/flasher/portable, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/station/security/armory/secure) +"pEO" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"pET" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/light/directional/south, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "blue" + }, +/area/station/command/bridge) +"pEY" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"pFm" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/airlock_electronics, +/obj/item/airlock_electronics, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/stack/sheet/mineral/plasma/fifty, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"pGR" = ( +/obj/structure/closet/crate/can, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"pHd" = ( +/obj/structure/closet/cabinet, +/obj/item/lighter/zippo/engraved, +/obj/effect/decal/cleanable/dust, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fsmaint) +"pHs" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"pHG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"pHV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"pIe" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/explab) +"pIr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"pIx" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"pIP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"pIY" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"pJh" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + dir = 2; + id_tag = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/simulated/floor/plating, +/area/station/engineering/engine/supermatter) +"pJH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"pJV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"pJY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"pKi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/wardrobe/white, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"pKr" = ( +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Captain's Office"; + pixel_y = 4 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/carpet/royalblue, +/area/station/command/office/captain) +"pKv" = ( +/obj/machinery/newscaster/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"pKP" = ( +/obj/machinery/door/window/classic/reversed{ + name = "Containment Pen" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio2"; + name = "Chamber 2 Containment Blast Doors" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"pLy" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/command/bridge) +"pLI" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/main) +"pMg" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door_control/bolt_control/west{ + id = "psych_bolt"; + pixel_y = 7; + pixel_x = -14 + }, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"pMj" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"pMq" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/flashlight, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"pMy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Atmos Center"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"pMD" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall, +/area/station/maintenance/electrical) +"pMM" = ( +/obj/effect/decal/remains/mouse, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"pMP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/permabrig) +"pMX" = ( +/obj/structure/closet/radiation, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"pNe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"pNw" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Isolator" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "durka1"; + layer = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/patients_rooms) +"pNx" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/economy/vending/engivend, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/hallway) +"pNz" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/atmospipes, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/break_room) +"pNG" = ( +/obj/machinery/firealarm/directional/south, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"pNL" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"pNQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"pOg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/permabrig) +"pOl" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/station/science/robotics/chargebay) +"pOo" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/remains/mouse, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/maintenance/abandonedbar) +"pOt" = ( +/obj/structure/rack, +/obj/item/poster/random_contraband, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"pOw" = ( +/obj/machinery/papershredder, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"pOK" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/medbay2) +"pOY" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"pPi" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"pPj" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"pPr" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"pPw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"pPK" = ( +/obj/machinery/door/window/classic/normal{ + dir = 8 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"pQg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"pQu" = ( +/obj/effect/decal/cleanable/dust, +/obj/item/clothing/head/griffin, +/obj/item/clothing/head/cuban_hat, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/fsmaint) +"pQD" = ( +/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/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"pRf" = ( +/obj/effect/decal/cleanable/dust, +/obj/item/clothing/shoes/galoshes, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"pRg" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"pRh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"pRj" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"pRm" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"pRq" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/power/tesla_coil, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"pRv" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"pRD" = ( +/obj/machinery/computer/supplycomp, +/obj/machinery/light/directional/north, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/carpet, +/area/station/supply/qm) +"pRE" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Module Chamber 3"; + dir = 1; + network = list("Research","SS13") + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"pRP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/primary/starboard/west) +"pRS" = ( +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "waste_sensor"; + output = 127 + }, +/turf/simulated/floor/engine/vacuum, +/area/station/engineering/atmos) +"pRT" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"pSb" = ( +/obj/machinery/camera{ + c_tag = "Secure Lab - Test Chamber"; + dir = 8; + network = list("TestChamber","SS13","Research") + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"pSk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"pSs" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/security/main) +"pSW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"pTa" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "durka1"; + layer = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/window/reinforced/normal{ + name = "Secure Desk" + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 1; + name = "Secure Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/psychology{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/patients_rooms) +"pTj" = ( +/obj/structure/window/plasmareinforced{ + dir = 8 + }, +/obj/machinery/power/rad_collector{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 9 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"pTs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"pTJ" = ( +/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/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/clown, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"pTK" = ( +/obj/machinery/access_button{ + autolink_id = "arrivalsmaint_btn_int"; + pixel_x = -25; + pixel_y = 25; + req_one_access_txt = "13" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"pTX" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"pUp" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/wall/r_wall, +/area/station/maintenance/turbine) +"pUy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"pUB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"pUR" = ( +/mob/living/simple_animal/mouse, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"pUS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/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/plasteel, +/area/station/maintenance/assembly_line) +"pUX" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id_tag = "engsm2"; + name = "SM Radiation Security Lock" + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"pUZ" = ( +/obj/machinery/computer/general_air_control{ + autolink_sensors = list("n2_sensor"="Nitrogen","o2_sensor"="Oxygen","co2_sensor"="Carbon Dioxide","tox_sensor"="Toxins","n2o_sensor"="Nitrous Oxide","waste_sensor"="Gas Mix Tank"); + dir = 1; + name = "Tank Monitor" + }, +/obj/machinery/door_control/shutter/west{ + id = "atmos"; + name = "Atmospherics Lockdown"; + req_access_txt = "24" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"pVu" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/station/hallway/primary/central/south) +"pVw" = ( +/obj/structure/sink/directional/west, +/obj/item/reagent_containers/glass/bucket, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"pVW" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/space, +/area/space/nearstation) +"pVZ" = ( +/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/plasteel, +/area/station/hallway/primary/central/south) +"pWT" = ( +/obj/machinery/power/apc/directional/north, +/obj/item/flag/nt, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"pWW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/maintenance/aft) +"pXs" = ( +/obj/item/clothing/under/misc/swimsuit/black, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/beach/sand, +/area/station/hallway/secondary/exit) +"pXR" = ( +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"pXY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/storage/box/bodybags, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"pYd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"pYZ" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CE" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/office/ce) +"pZe" = ( +/obj/structure/sign/fire{ + pixel_y = -32 + }, +/obj/machinery/fishtank/tank, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"pZg" = ( +/obj/effect/decal/cleanable/dust, +/obj/item/caution, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"pZj" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"pZl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"pZA" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"pZI" = ( +/obj/structure/morgue, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"pZK" = ( +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera{ + c_tag = "Xenobiology Module West"; + dir = 4; + network = list("Research","SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"pZM" = ( +/obj/structure/closet/toolcloset, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"pZP" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"qab" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/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/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"qaq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"qat" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"qaA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"qaD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage" + }, +/obj/effect/decal/cleanable/dirt, +/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/mapping_helpers/airlock/access/any/science/tox_storage, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"qaI" = ( +/obj/item/clothing/suit/chef/classic, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"qaK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"qaU" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"qaW" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/carpet/purple, +/area/station/service/bar) +"qaX" = ( +/obj/structure/table, +/obj/item/paper/pamphlet, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"qbR" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hos) +"qbX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/command/office/rd) +"qcp" = ( +/obj/structure/rack, +/obj/item/stack/sheet/metal{ + amount = 20 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 1; + pixel_y = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"qcv" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"qcH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"qcZ" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/simulated/floor/carpet/royalblack, +/area/station/maintenance/apmaint) +"qdi" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"qdk" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"qdG" = ( +/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/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/ward) +"qdQ" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/carpet, +/area/station/command/office/captain/bedroom) +"qef" = ( +/turf/simulated/floor/wood/oak, +/area/station/service/clown) +"qei" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/server) +"qej" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/maintenance/fsmaint) +"qek" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"qen" = ( +/obj/item/radio/intercom/locked/prison{ + name = "Prison Intercom (General)"; + pixel_y = 22 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/portable/scrubber/huge/stationary, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"qeI" = ( +/obj/item/assembly/mousetrap/armed, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"qfy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"qfI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"qfJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"qfL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"qgi" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"qgy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart{ + desc = "A heavy, metal laundrycart with wheels."; + name = "laundry cart" + }, +/obj/item/clothing/under/color/grey, +/obj/item/clothing/under/color/grey, +/obj/machinery/light_construct/small/north, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/fsmaint) +"qgz" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"qgC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/space, +/area/space/nearstation) +"qgE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"qgF" = ( +/obj/structure/sink/directional/west, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/service/hydroponics) +"qgQ" = ( +/obj/item/storage/toolbox/emergency/old, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"qhq" = ( +/turf/simulated/wall, +/area/station/science/misc_lab) +"qhr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"qhC" = ( +/obj/structure/chair/sofa/bench, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"qhK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"qhO" = ( +/obj/machinery/door/airlock/bathroom{ + id_tag = "toilet_unitb"; + name = "Unit B" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"qhY" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"qig" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"qiB" = ( +/obj/structure/sign/poster/contraband/punch_shit{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"qiG" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "SMES Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/engineering/smes) +"qiN" = ( +/obj/structure/urinal{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"qiX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"qjs" = ( +/obj/structure/weightmachine/stacklifter, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "black" + }, +/area/station/security/permabrig) +"qju" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/east{ + dir = 6; + id = "Skynet_heavy" + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"qjA" = ( +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/maintenance/abandonedbar) +"qjC" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"qjE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"qjX" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"qjZ" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/storage) +"qkc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/patients_rooms) +"qky" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"qkz" = ( +/obj/structure/chair/comfy/corp, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "purple" + }, +/area/station/science/hallway) +"qkA" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"qkB" = ( +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"qkC" = ( +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"qlo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6; + level = 1 + }, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/maintcentral2) +"qlt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"qlz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"qlA" = ( +/obj/structure/platform/corner{ + dir = 8; + anchored = 1 + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"qlE" = ( +/obj/item/restraints/handcuffs/cable/green, +/obj/machinery/conveyor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"qmh" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id_tag = "engsm2"; + name = "SM Radiation Security Lock" + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"qmv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"qmw" = ( +/obj/structure/table, +/obj/item/storage/fancy/crayons, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"qmB" = ( +/obj/machinery/computer/arcade, +/obj/machinery/camera{ + c_tag = "Prison Library"; + dir = 6; + network = list("Prison","SS13") + }, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"qmH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/station/supply/qm) +"qmU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"qmW" = ( +/obj/machinery/light_switch/north, +/obj/structure/dresser, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/carpet, +/area/station/command/office/captain/bedroom) +"qmX" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos/control) +"qnk" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/computer/general_air_control{ + autolink_sensors = list("burn_sensor"="Burn Mix"); + name = "Bomb Mix Monitor" + }, +/obj/machinery/door_control/shutter/north{ + id = "ToxinsVenting"; + name = "Toxin Venting Control"; + pixel_x = -8 + }, +/obj/machinery/ignition_switch{ + id = "toxinsigniter"; + pixel_x = 6; + pixel_y = 25 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"qnq" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/supply/office) +"qnK" = ( +/obj/machinery/bodyscanner{ + dir = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"qnM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/economy/vending/atmosdrobe, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"qnW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "prison"; + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/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/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"qom" = ( +/obj/structure/table/wood, +/obj/machinery/status_display/directional/north, +/obj/item/storage/fancy/donut_box{ + pixel_y = 2 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/interrogation) +"qor" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"qot" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"qov" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"qoQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/break_room) +"qoT" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/break_room) +"qpi" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = -7 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"qpq" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"qpu" = ( +/obj/machinery/camera{ + c_tag = "Bridge Lounge Zone West"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/command/bridge) +"qpw" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"qqy" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"qqB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"qqZ" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"qrd" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = -30 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"qri" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "IAA" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/legal/lawoffice) +"qrr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"qrw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"qrI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"qrJ" = ( +/obj/machinery/camera{ + c_tag = "Research Mech Bay"; + dir = 8; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"qsi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"qsl" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/obj/item/flashlight/lamp/green{ + pixel_y = 8 + }, +/turf/simulated/floor/carpet, +/area/station/command/office/captain) +"qss" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/engineering/hallway) +"qsA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"qsQ" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"qsV" = ( +/obj/item/kirbyplants, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"qsX" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"qtc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"qtd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"qth" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"qtm" = ( +/obj/machinery/access_button{ + autolink_id = "secmaint_btn_int"; + name = "interior access button"; + pixel_x = 9; + pixel_y = -25; + req_one_access_txt = "13" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"qtr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"qtA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"qtC" = ( +/mob/living/simple_animal/crab/Coffee{ + desc = "Master of the GYM"; + name = "Billy Crabington"; + real_name = "Billy Crabington" + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"qtJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/exit) +"qtR" = ( +/obj/structure/cable{ + 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 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"qtT" = ( +/obj/structure/bookcase/random, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fsmaint) +"quc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/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/plating, +/area/station/maintenance/fsmaint) +"quj" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"qup" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"qus" = ( +/obj/structure/table, +/obj/item/toy/figure/crew/cargotech, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"qvf" = ( +/obj/structure/table, +/obj/item/melee/baton/cattleprod, +/obj/structure/sign/poster/contraband/random/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"qvo" = ( +/obj/machinery/door_control/shutter/east{ + id = "stationawaygate"; + name = "Gateway Shutters Control"; + req_one_access_txt = "62" + }, +/obj/structure/closet/secure_closet/expedition, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"qvr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals South"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"qvO" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = -2; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/science/rnd) +"qvP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/detective) +"qvV" = ( +/obj/machinery/atmospherics/portable/canister/toxins, +/obj/machinery/camera{ + c_tag = "Research Toxins Storage Room"; + dir = 4; + network = list("Research","SS13"); + pixel_y = -22 + }, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"qws" = ( +/obj/structure/marker_beacon/dock_marker, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"qwJ" = ( +/obj/effect/landmark/damageturf, +/obj/item/cultivator, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"qwM" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"qwP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"qwU" = ( +/obj/structure/chair/sofa/corp, +/obj/machinery/camera{ + c_tag = "Bridge Lounge Zone Center" + }, +/turf/simulated/floor/carpet/green, +/area/station/command/bridge) +"qwV" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"qxd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"qxF" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"qxZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"qyf" = ( +/obj/structure/sign/poster/official/random/east, +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"qyh" = ( +/obj/structure/closet, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/main) +"qyq" = ( +/obj/item/kirbyplants, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"qyy" = ( +/obj/item/holder/mouse, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"qyM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/smes) +"qyT" = ( +/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/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"qzh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"qzn" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/warning_stripes/green/hollow, +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"qzo" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + location = "Kitchen" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/station/maintenance/fsmaint) +"qzV" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Departure Lounge South-West"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/exit) +"qAg" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/maintenance/apmaint) +"qAn" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/maintenance/abandonedbar) +"qAo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"qAt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/station/engineering/solar/port) +"qAG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"qAH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/beach_ball/holoball, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"qAK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"qAU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"qAZ" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/control) +"qBk" = ( +/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, +/turf/simulated/floor/carpet/cyan, +/area/station/security/prison/cell_block/A) +"qBo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/maintenance/aft) +"qBw" = ( +/obj/structure/cable/yellow{ + 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/warning_stripes/west, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/smes) +"qCi" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/hallway) +"qCv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/primary/fore) +"qCB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/atmos/control) +"qCH" = ( +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fpmaint) +"qCJ" = ( +/obj/structure/curtain/open/shower, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shower{ + pixel_y = 20 + }, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/disposal) +"qCO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/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/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"qCZ" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"qDn" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/airlock_controller/access_controller{ + ext_button_link_id = "perma_btn_ext"; + ext_door_link_id = "perma_door_ext"; + int_button_link_id = "perma_btn_int"; + int_door_link_id = "perma_door_int"; + name = "Prison Access Console"; + pixel_x = -22; + pixel_y = 22 + }, +/obj/machinery/door_control/shutter/north{ + desc = "A remote control-switch to lock down the prison wing's blast doors"; + id = "Prison Gate"; + name = "Prison Wing Lockdown"; + pixel_x = -32; + req_one_access_txt = "2" + }, +/obj/machinery/flasher_button{ + id = "prison"; + pixel_x = -20; + pixel_y = 31 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"qDq" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dust, +/obj/effect/spawner/random_spawners/oil_often, +/obj/structure/sign/poster/contraband/tools{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/orange, +/area/station/maintenance/fsmaint) +"qDr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/black, +/area/station/service/chapel/office) +"qDM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"qEa" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/maintenance/fsmaint) +"qEe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"qEo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"qEs" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"qEt" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"qEv" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"qEE" = ( +/obj/effect/turf_decal/bot, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"qEP" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"qEW" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"qFj" = ( +/obj/structure/sign/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/outlet_injector/on{ + autolink_id = "air_in"; + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"qFr" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"qFt" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "blue" + }, +/area/station/command/bridge) +"qFw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"qFy" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"qFK" = ( +/obj/structure/table/glass/reinforced/plastitanium, +/obj/item/electropack{ + pixel_y = 8 + }, +/obj/item/assembly/signaler{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"qFN" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"qFV" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/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" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"qFW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/station/service/chapel) +"qGb" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"qGl" = ( +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random_spawners/oil_often, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"qGm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"qGK" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"qGU" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"qHc" = ( +/obj/machinery/atmospherics/unary/thermomachine/freezer, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/atmos) +"qHj" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "AI Satellite Exterior West"; + dir = 8; + network = list("SS13","MiniSat") + }, +/turf/space, +/area/station/aisat) +"qHw" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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/plasteel, +/area/station/science/toxins/mixing) +"qHO" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/toxin{ + pixel_y = 4 + }, +/obj/item/storage/firstaid/toxin{ + pixel_y = 2 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"qIg" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/quartermaster, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/station/supply/qm) +"qIl" = ( +/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/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"qIn" = ( +/obj/machinery/economy/vending/boozeomat/syndicate_access, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"qIu" = ( +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"qIy" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/hydroponics) +"qIz" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"qIL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/warden) +"qIN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"qIO" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/sw) +"qJb" = ( +/obj/structure/girder, +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"qJf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/effect/spawner/random_spawners/blood_often, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"qJg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"qJx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/hop, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/command/hop, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"qJB" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/command/bridge) +"qJH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"qJK" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"qJN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/coroner, +/turf/simulated/floor/plating, +/area/station/medical/morgue) +"qJO" = ( +/obj/machinery/power/grounding_rod{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"qKa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm/directional/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"qKu" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"qKv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"qKE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"qKG" = ( +/obj/effect/turf_decal/loading_area, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"qKN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio6"; + name = "Chamber 6 Containment Blast Doors" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio5"; + name = "Chamber 5 Containment Blast Doors" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"qKX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 4 + }, +/obj/machinery/atmospherics/portable/canister, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"qKZ" = ( +/obj/effect/landmark/spawner/rev, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/bluegrid, +/area/station/science/xenobiology) +"qLc" = ( +/obj/item/kirbyplants, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"qLd" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"qLe" = ( +/obj/structure/railing/corner{ + dir = 4; + layer = 3.9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"qLo" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"qLp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"qLB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/hallway/primary/central/south) +"qLD" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/machinery/light/small/directional/north, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"qLK" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"qMa" = ( +/obj/machinery/door/airlock/external{ + id_tag = "fpmaint_door_int"; + locked = 1; + name = "External Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"qMy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"qMB" = ( +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"qME" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"qMI" = ( +/obj/item/flag/cult, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"qMY" = ( +/obj/effect/turf_decal{ + dir = 8 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"qNa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"qNk" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "perma_door_int"; + locked = 1; + name = "Prison Wing" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + 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/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/full, +/obj/machinery/access_button{ + autolink_id = "perma_btn_int"; + name = "Prison Wing Access Button"; + pixel_y = 21; + req_one_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"qNx" = ( +/obj/structure/grille/broken, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"qNz" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/ward) +"qNB" = ( +/obj/machinery/disposal, +/obj/machinery/light_switch/south, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"qNM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"qNN" = ( +/obj/machinery/teleport/station, +/turf/simulated/floor/plating, +/area/station/command/teleporter) +"qOj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"qOs" = ( +/obj/machinery/airlock_controller/access_controller{ + ext_button_link_id = "xeno_btn_ext"; + ext_door_link_id = "xeno_door_ext"; + int_button_link_id = "xeno_btn_int"; + int_door_link_id = "xeno_door_int"; + name = "Xenobiology Access Console"; + pixel_x = 22; + pixel_y = -8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"qOx" = ( +/obj/structure/chair/wood, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"qOI" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/asmaint) +"qON" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"qOP" = ( +/obj/machinery/door/airlock/atmos{ + name = "Fore-Starboard Atmospherics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"qPa" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"qPt" = ( +/obj/machinery/conveyor/east{ + dir = 6; + id = "QMLoad2" + }, +/obj/structure/sign/securearea{ + name = "\improper STAY CLEAR HEAVY MACHINERY"; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"qPx" = ( +/obj/item/kirbyplants, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"qPI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) +"qQb" = ( +/obj/structure/table, +/obj/item/pen, +/obj/item/paper/crumpled, +/obj/machinery/door_control/shutter/east{ + id = "oldshop"; + name = "Old Shop Shutters Control" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"qQm" = ( +/obj/machinery/cryopod/robot, +/obj/machinery/computer/cryopod/robot{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/science/robotics/chargebay) +"qQx" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Engineering Equipment Storage Hardsuits"; + dir = 4; + network = list("SS13","Engineering") + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"qQy" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"qQE" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"qQO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Mixing Room" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/mapping_helpers/airlock/access/any/science/tox, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"qRs" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"qRu" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"qRS" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = -32 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"qRU" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/engineering/atmos) +"qRV" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"qSr" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/storage/belt/utility, +/obj/machinery/camera{ + c_tag = "Engineering Equipment Storage Lockers"; + network = list("SS13","Engineering") + }, +/obj/item/radio/alternative, +/obj/item/radio/alternative, +/obj/item/radio/alternative, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/equipmentstorage) +"qSB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"qSD" = ( +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"qSL" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"qTl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/service/chapel) +"qTA" = ( +/obj/structure/chair/sofa/right, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"qTK" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/item/c_tube, +/turf/simulated/floor/carpet/orange, +/area/station/maintenance/fsmaint) +"qTN" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"qTO" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA" + }, +/turf/simulated/wall, +/area/space/nearstation) +"qTQ" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"qUd" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Kitchen" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "kitchenhall"; + name = "Kitchen Shutters" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"qUp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"qUu" = ( +/obj/machinery/light_switch/west, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"qUQ" = ( +/obj/machinery/kitchen_machine/microwave, +/obj/structure/table, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"qVc" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"qVf" = ( +/obj/structure/disposalpipe/segment/corner, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"qVp" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/walllocker/firelocker/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/engineering/control) +"qVv" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/trash/gum, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fsmaint) +"qVG" = ( +/obj/machinery/door/airlock/command/hop, +/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" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/hop, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"qVK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"qVP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"qVU" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + name = "Aft Port Solar Array" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/engineering/solar/port) +"qWP" = ( +/obj/machinery/hologram/holopad{ + pixel_y = 16 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"qWR" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"qXm" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"qXp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/plasteel{ + icon_state = "white" + }, +/area/station/science/explab) +"qXs" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"qXB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/office) +"qXL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"qXR" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"qYr" = ( +/obj/machinery/door/firedoor, +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"qYy" = ( +/obj/machinery/atmospherics/binary/pump{ + name = "Air to Waste"; + target_pressure = 101 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/atmos/control) +"qYC" = ( +/obj/item/pen/fancy, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"qYJ" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"qYK" = ( +/obj/machinery/light/directional/south, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"qYO" = ( +/obj/structure/falsewall, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"qZw" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/aiModule/corp, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai_upload) +"qZx" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"qZD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkpurple" + }, +/area/station/science/robotics) +"qZN" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/asmaint2) +"rac" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"rad" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"rao" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/station/maintenance/aft) +"raG" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"raH" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"raL" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/soap, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"raN" = ( +/obj/structure/transit_tube{ + dir = 1; + icon_state = "Block" + }, +/obj/effect/decal/warning_stripes/eastsouthwest, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"raP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"raV" = ( +/obj/structure/rack, +/obj/item/rpd, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"raZ" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"rbb" = ( +/obj/machinery/alarm/directional/north, +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/equipmentstorage) +"rbu" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"rbx" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/camera{ + c_tag = "AI Satellite Antechamber South"; + dir = 4 + }, +/obj/machinery/turretid/stun{ + control_area = "\improper AI Satellite Atmospherics"; + name = "AI Satellite Atmospherics Turret Control"; + pixel_x = -28; + req_one_access_txt = "75" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkbluecorners" + }, +/area/station/turret_protected/aisat/interior) +"rbz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"rbX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"rbZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"rcf" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"rcm" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/full, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"rcs" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CMO" + }, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/command/office/cmo) +"rcD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"rcG" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"rcY" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 4 + }, +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"rcZ" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"rda" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"rdu" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/storage/belt/utility, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/hallway) +"rdv" = ( +/obj/effect/turf_decal/caution/stand_clear, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"rdL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/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/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"ree" = ( +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"reu" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stack/cable_coil, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"rex" = ( +/obj/structure/table/reinforced, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/window/reinforced, +/obj/item/poster/random_contraband, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"reE" = ( +/obj/machinery/hydroponics/soil, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"reO" = ( +/obj/machinery/hydroponics/soil, +/turf/simulated/floor/grass, +/area/station/maintenance/asmaint) +"rff" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/portable/scrubber, +/obj/machinery/power/apc/directional/west, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/atmos) +"rfh" = ( +/obj/item/clothing/under/misc/assistantformal, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"rfp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"rfB" = ( +/obj/structure/transit_tube{ + icon_state = "W-SE" + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"rgl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/permabrig) +"rgs" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/apmaint) +"rgv" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"rgM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/mounted/frame/apc_frame, +/obj/structure/cable, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"rgR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"rgZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"rhk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"rhs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/atmos/control) +"rhG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"rhK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"rhM" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"rik" = ( +/obj/structure/table/wood, +/obj/item/paper/blueshield, +/obj/item/paper_bin, +/obj/item/pen/blue, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"rix" = ( +/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/machinery/door/airlock/atmos{ + name = "Turbine Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/firedoor, +/turf/simulated/floor/catwalk, +/area/station/maintenance/turbine) +"riJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/station/legal/lawoffice) +"rjh" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"rjK" = ( +/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/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"rjP" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 2 + }, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"rjY" = ( +/obj/structure/table/wood, +/obj/item/paicard, +/turf/simulated/floor/carpet, +/area/station/public/vacant_office) +"rkb" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/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/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"rkl" = ( +/obj/machinery/atmospherics/binary/pump/on, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/maintenance/turbine) +"rkL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/seeds/cannabis, +/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"rkR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"rkS" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/science/hallway) +"rlm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/atmos/control) +"rlu" = ( +/turf/simulated/wall/r_wall, +/area/station/security/interrogation) +"rlA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/science/explab/chamber) +"rlG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"rlS" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/primary/port) +"rlX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"rmi" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"rmu" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/remains/mouse, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"rmH" = ( +/obj/structure/bed/mattress, +/obj/effect/decal/cleanable/dirt, +/obj/item/bedsheet/blue, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"rmI" = ( +/turf/simulated/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"rmT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/space, +/area/space/nearstation) +"rmV" = ( +/obj/effect/decal/cleanable/dirt, +/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{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"rna" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency/old, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"rnd" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"rng" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"rnu" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluered" + }, +/area/station/command/bridge) +"rnx" = ( +/obj/machinery/camera{ + c_tag = "Departure Lounge South-East"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/exit) +"rnK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"rnW" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"roN" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"rpd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"rph" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/hallway/primary/central/se) +"rpV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"rqa" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/service/hydroponics) +"rqd" = ( +/obj/machinery/blackbox_recorder, +/turf/simulated/floor/bluegrid, +/area/station/telecomms/chamber) +"rqs" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"rqy" = ( +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"rqM" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"rrg" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"rrF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"rrL" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"rsv" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/maintenance/turbine) +"rsI" = ( +/obj/structure/table, +/obj/item/paper/gravity_gen, +/obj/item/pen/blue, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/engineering/gravitygenerator) +"rtu" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"rtA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/science{ + id_tag = "GeneticsDoor"; + name = "Genetics" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/genetics, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"rtU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/detective) +"ruu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"ruL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + density = 0; + dir = 2; + icon_state = "open"; + id_tag = "blueshield"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/command/office/blueshield) +"ruR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Control Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/atmos/control) +"rvf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"rvp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"rvw" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/cryo/north, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"rvA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/spiderling_remains, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/fsmaint) +"rvH" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"rwc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"rwo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/prisonlockers) +"rwv" = ( +/obj/effect/decal/cleanable/dirt, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"rwI" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"rwZ" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkyellow" + }, +/area/station/science/robotics/chargebay) +"rxp" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/aitransit) +"rxK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "AI Core Door" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/ai_upload{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai) +"rxV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"rxW" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"rxX" = ( +/obj/structure/filingcabinet, +/obj/item/radio/intercom/private{ + dir = 4; + pixel_x = -36 + }, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/carpet/royalblue, +/area/station/command/office/captain) +"ryo" = ( +/obj/structure/sign/electricshock{ + pixel_x = -32 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/portable/scrubber/huge/stationary, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"rys" = ( +/turf/simulated/wall/r_wall, +/area/station/command/office/captain) +"ryN" = ( +/obj/structure/girder, +/turf/simulated/wall, +/area/station/maintenance/apmaint) +"rzr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"rzw" = ( +/obj/structure/closet, +/obj/item/clothing/suit/ianshirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"rzy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"rzA" = ( +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"rzF" = ( +/turf/simulated/floor/plasteel, +/area/station/science/rnd) +"rzU" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/break_room) +"rAe" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/security/permabrig) +"rAi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/surgery/blue, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/aft) +"rAp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/defibrillator_mount{ + pixel_y = 28 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitehall" + }, +/area/station/maintenance/aft) +"rAt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"rAI" = ( +/obj/structure/spider/stickyweb, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"rAN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room" + }, +/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/mapping_helpers/airlock/access/any/science/tox, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"rAR" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/stack/cable_coil, +/obj/item/analyzer{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/taperecorder{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"rBx" = ( +/obj/effect/landmark/start/explorer, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"rBN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"rBZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"rCg" = ( +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/asmaint) +"rCn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"rCT" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/brig) +"rDI" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 2 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"rDJ" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"rDM" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"rDS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/space, +/area/space/nearstation) +"rDV" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/cream{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"rDW" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"rDX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"rEh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"rEs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/public/storage/emergency/port) +"rEv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/window/reinforced/tinted/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"rEx" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"rEz" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"rED" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "IAA" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/legal/lawoffice) +"rEZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"rFe" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"rFC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" + }, +/area/station/engineering/gravitygenerator) +"rFK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"rFP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"rFZ" = ( +/obj/machinery/access_button/west{ + autolink_id = "scibomb_btn_ext"; + pixel_y = 25; + req_one_access_txt = "10;13" + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/space/nearstation) +"rGa" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"rGR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/prison/cell_block/A) +"rGW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"rHa" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"rHk" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"rHu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"rHz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"rHF" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"rIw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/explab) +"rID" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"rIE" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/command/office/captain) +"rIV" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"rJo" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/miningdock) +"rJp" = ( +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/hallway) +"rKe" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"rKr" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d2 = 4; + 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" + }, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"rKD" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/structure/sink/directional/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/hydroponics) +"rKV" = ( +/turf/simulated/wall, +/area/station/science/hallway) +"rLa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/ce) +"rLo" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"rLs" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/office/captain) +"rLK" = ( +/obj/machinery/newscaster/directional/west, +/obj/structure/sink/directional/west, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"rLL" = ( +/obj/structure/chair/office/light, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"rLY" = ( +/obj/machinery/r_n_d/experimentor, +/turf/simulated/floor/engine, +/area/station/science/explab/chamber) +"rMb" = ( +/obj/machinery/mecha_part_fabricator, +/obj/effect/landmark/burnturf, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"rMp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"rMq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"rMP" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "fpsolar_vent" + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "fpsolar_btn_ext"; + ext_door_link_id = "fpsolar_door_ext"; + int_button_link_id = "fpsolar_btn_int"; + int_door_link_id = "fpsolar_door_int"; + pixel_x = 25; + req_one_access_txt = "13"; + vent_link_id = "fpsolar_vent" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"rMX" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/medbay2) +"rMZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Singularity"; + name = "Singularity Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door_control/shutter/east{ + id = "Singularity"; + name = "Containment Blast Doors" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engine Room" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"rNi" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"rNv" = ( +/turf/simulated/wall/r_wall, +/area/station/medical/surgery/primary) +"rND" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"rOg" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"rPa" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fsmaint) +"rPd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"rPf" = ( +/obj/structure/railing, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"rPv" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"rPK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/space/nearstation) +"rPS" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"rPU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/science/rnd) +"rPV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"rPY" = ( +/obj/effect/spawner/window/reinforced/grilled, +/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/plating, +/area/station/engineering/smes) +"rPZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/smes) +"rQn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage" + }, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/evidence) +"rQr" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"rQs" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"rQO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"rQP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"rQW" = ( +/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/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + name = "Janitor"; + sort_type_txt = "22" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"rRa" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/locked/prison{ + name = "Prison Intercom (General)"; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"rRt" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/engineering/utility) +"rRy" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + autolink_id = "n2o_in"; + dir = 1 + }, +/turf/simulated/floor/engine/n20, +/area/station/engineering/atmos) +"rRU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/statue/cyberiad/e, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "black" + }, +/area/station/command/bridge) +"rRW" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/table, +/obj/item/storage/box/disks_plantgene{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/disks_plantgene{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/disks_plantgene, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"rRX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"rRY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"rSe" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/blood/tracks, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"rSz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"rSI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/wire_splicing/thirty, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"rSS" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/science/misc_lab) +"rTm" = ( +/obj/structure/sign/fire{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"rTy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/alarm/directional/north, +/obj/machinery/computer/message_monitor, +/turf/simulated/floor/bluegrid, +/area/station/telecomms/chamber) +"rTB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"rTE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"rTF" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"rTZ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/engineering/control) +"rUR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/engineering/gravitygenerator) +"rVm" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"rVt" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/aisat/service) +"rVK" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"rVS" = ( +/obj/machinery/economy/vending/security, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"rWd" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/obj/item/clothing/head/beanie/stripedgreen, +/obj/item/clothing/mask/cigarette/rollie, +/obj/structure/sign/poster/contraband/ambrosia_vulgaris{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet, +/area/station/maintenance/asmaint) +"rWn" = ( +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/obj/effect/landmark/start/shaft_miner, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"rWq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start/cyborg, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"rWr" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"rWy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"rWA" = ( +/obj/machinery/clonepod/biomass, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"rWB" = ( +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"rWS" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"rWU" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA" + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/control) +"rWZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/sw) +"rXb" = ( +/obj/structure/closet/wardrobe/white, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"rXm" = ( +/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/plasteel, +/area/station/public/locker) +"rXw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"rXC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"rXH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"rXN" = ( +/obj/machinery/biogenerator, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/warning_stripes/green, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"rXS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/turf/simulated/floor/plating, +/area/station/maintenance/assembly_line) +"rYm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"rYr" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"rYt" = ( +/obj/machinery/camera{ + c_tag = "Engineering Engine Storage"; + network = list("SS13","Engineering") + }, +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"rYG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/statue/cyberiad/sw, +/obj/effect/turf_decal/woodsiding/end{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blackcorner" + }, +/area/station/command/bridge) +"rZd" = ( +/obj/structure/railing/cap/normal, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"rZm" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" + }, +/area/station/engineering/aitransit) +"rZF" = ( +/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/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"rZM" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/pet/dog/brittany/Psycho, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"sar" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"saF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"sbp" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"sbs" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + name = "Sci Robotics"; + sort_type_txt = "14" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"sbD" = ( +/obj/machinery/computer/sm_monitor, +/obj/machinery/camera{ + c_tag = "Engineering SM Prep Room"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"sbP" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"sbR" = ( +/obj/structure/table/wood, +/obj/machinery/alarm/directional/north, +/obj/item/flashlight/lamp/bananalamp{ + layer = 3.4; + pixel_x = 4; + pixel_y = 12 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/clown) +"scB" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/cable_coil{ + amount = 15 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"scM" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"scY" = ( +/obj/structure/table, +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "Old Shop" + }, +/obj/machinery/door/poddoor/shutters{ + id_tag = "oldshop"; + name = "Old Shop Shutters" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"sdm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/storage) +"sds" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/access_button{ + autolink_id = "eng_sm_btn_ext"; + pixel_x = -25; + pixel_y = 25; + req_access_txt = "10;13" + }, +/turf/space, +/area/space/nearstation) +"sdu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"sdw" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"sdE" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/engineering/control) +"sdP" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "bridge blast north"; + name = "Bridge Blast Doors" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"sea" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"sec" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"sem" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"sen" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_x = -5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/xenobiology) +"sep" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"seH" = ( +/obj/structure/transit_tube{ + icon_state = "S-NW" + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"seI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"seW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"sft" = ( +/obj/machinery/door/airlock/external{ + id_tag = "supply_home"; + locked = 1; + name = "Cargo Docking Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"sfu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/hallway) +"sgt" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/permabrig) +"sgu" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"sgS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"sgZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "vault" + }, +/area/station/service/chapel) +"shi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"shz" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"sir" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/spawner/nukedisc_respawn, +/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, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/maintenance/aft) +"six" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"siC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"siM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + name = "Prison Toilets" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"sji" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/apmaint) +"sjl" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"sju" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"sjM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"sjO" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/main) +"ska" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("Toxins"); + pixel_x = 32 + }, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"skf" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/exit) +"skh" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"ski" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/smes) +"skl" = ( +/obj/machinery/door/airlock/external{ + id_tag = "fpmaint_door_ext"; + locked = 1; + name = "External Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"skD" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/hall) +"skT" = ( +/obj/item/rollingpaper, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"sln" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/pet/dog/security, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"slo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/station/service/library) +"slp" = ( +/obj/machinery/door/airlock/maintenance{ + locked = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"slC" = ( +/obj/machinery/holosign_switch/west{ + id = "surgery1"; + pixel_y = 8 + }, +/obj/machinery/light_switch/west{ + pixel_y = -8 + }, +/obj/machinery/button/windowtint/west{ + id = "surgery1" + }, +/obj/structure/closet/crate/freezer/iv_storage, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"slF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"smk" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"smu" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"smx" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"smz" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/atmospherics/pipe/simple/insulated, +/turf/simulated/floor/plating, +/area/station/science/toxins/mixing) +"smJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"smL" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"smS" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"smW" = ( +/obj/effect/decal/cleanable/dirt, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"snc" = ( +/obj/effect/decal/cleanable/dirt, +/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/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"snj" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/geneticist, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkpurple" + }, +/area/station/science/genetics) +"snx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"snE" = ( +/obj/structure/closet/crate/secure{ + req_one_access = list(33,41); + req_one_access_txt = "33;41" + }, +/mob/living/simple_animal/hostile/scarybat, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/station/maintenance/apmaint) +"snN" = ( +/obj/machinery/camera{ + c_tag = "Engineering Tesling Engine Room South"; + dir = 1; + network = list("Singularity","SS13","Engineering") + }, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"snV" = ( +/obj/machinery/atmospherics/trinary/tvalve/digital/flipped, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"sol" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"sou" = ( +/obj/machinery/light/directional/south, +/obj/structure/closet/secure_closet/miner, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/miningdock) +"soK" = ( +/obj/structure/girder, +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/station/engineering/utility) +"soR" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "purple" + }, +/area/station/maintenance/asmaint2) +"soV" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Shower" + }, +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/soap/deluxe, +/obj/item/bikehorn/rubberducky/captain, +/obj/effect/turf_decal/siding/white/end{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/command/office/captain/bedroom) +"soX" = ( +/obj/structure/sign/poster/contraband/random/north, +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fpmaint2) +"spe" = ( +/obj/machinery/camera{ + c_tag = "Bar North" + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"spl" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"spo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"spH" = ( +/obj/effect/decal/cleanable/vomit, +/obj/item/toy/russian_revolver, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"sqb" = ( +/obj/structure/bed, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/bedsheet/orange, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/permabrig) +"sqc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"sqf" = ( +/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" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"sqn" = ( +/obj/structure/disposalpipe/sortjunction/reversed{ + name = "Sci R&D"; + sort_type_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"sqC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"sqU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/primary/fore) +"sqV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"sqZ" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/security/main) +"srv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"srB" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"ssc" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ssf" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"sst" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Teleporter Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"ssI" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"ssL" = ( +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/item/clothing/gloves/color/blue, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/asmaint) +"ssQ" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chief_engineer, +/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/plasteel{ + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"ssU" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/binary/valve{ + dir = 4; + name = "Output to Waste" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"ssY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"sto" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/structure/sign/vacuum/external{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/station/engineering/aitransit) +"stp" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/station/command/office/captain) +"stu" = ( +/obj/machinery/power/tesla_coil, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"stG" = ( +/obj/machinery/gibber, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"stO" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"sud" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Control Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/atmos/control) +"sug" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"suo" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"suB" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"suR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/station/supply/office) +"suV" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/nanotrasen{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/pen/multi{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/pen/multi{ + pixel_y = 9 + }, +/obj/item/eftpos{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"sve" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"svp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"svD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/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 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"svK" = ( +/mob/living/simple_animal/cow/betsy, +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "asteroid" + }, +/area/station/service/hydroponics) +"svW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/north, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"swk" = ( +/obj/structure/chair, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/exit) +"swY" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"sxg" = ( +/obj/machinery/sleeper{ + pixel_x = 3 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"sxh" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel, +/area/station/command/office/hop) +"sxn" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio3"; + name = "Chamber 3 Containment Blast Doors" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"sxu" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CE" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/command/office/ce) +"sxv" = ( +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"sxS" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"syc" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"syf" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkyellow" + }, +/area/station/science/robotics/chargebay) +"syl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"sym" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"syp" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/maintenance/apmaint) +"syr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/poster/ripped{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"syE" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"syS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"szF" = ( +/obj/machinery/economy/vending/cola, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"szS" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"szU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"sAe" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"sAi" = ( +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"sAl" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"sAm" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"sAq" = ( +/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/wood/oak, +/area/station/public/vacant_office) +"sAy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"sAB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/mob/living/carbon/human/farwa, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"sAM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"sAT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"sBh" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prisoner Lockers" + }, +/obj/machinery/door/firedoor, +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/turf/simulated/floor/plasteel, +/area/station/security/prisonlockers) +"sBi" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"sBx" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/decal/warning_stripes/north, +/obj/item/radio/intercom/directional/west, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"sBN" = ( +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/stack/sheet/cloth, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fsmaint) +"sBO" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/nanotrasen, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"sBR" = ( +/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 = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"sBS" = ( +/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/plasteel, +/area/station/supply/office) +"sBT" = ( +/obj/machinery/computer/arcade{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"sBW" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Robotics Maintenance" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/robotics, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"sCd" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"sCm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/supply/qm) +"sCE" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"sCF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"sCG" = ( +/obj/effect/turf_decal/bot, +/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, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"sCW" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"sDk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/fore) +"sDq" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "IAA" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/legal/lawoffice) +"sDr" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/reagent_containers/food/snacks/donkpocket, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"sDy" = ( +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"sDz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/access_button{ + autolink_id = "fssolar_btn_int"; + pixel_x = 25; + pixel_y = 25; + req_one_access_txt = "13" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"sDH" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"sDL" = ( +/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/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"sDU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "vault" + }, +/area/station/command/vault) +"sEl" = ( +/obj/structure/bed, +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/effect/mob_spawn/human/corpse/skeleton, +/mob/living/simple_animal/hostile/scarybat, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/station/maintenance/apmaint) +"sEn" = ( +/obj/structure/table, +/obj/item/tank/internals/emergency_oxygen/nitrogen{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/tank/internals/emergency_oxygen/nitrogen{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/tank/internals/emergency_oxygen/nitrogen{ + layer = 3.1; + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/tank/internals/emergency_oxygen/plasma{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/tank/internals/emergency_oxygen/plasma{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/tank/internals/emergency_oxygen/plasma{ + layer = 3.1; + pixel_x = -6; + pixel_y = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) +"sEu" = ( +/obj/structure/cable{ + 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/plating, +/area/station/maintenance/fsmaint) +"sEJ" = ( +/obj/machinery/light/directional/north, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"sEL" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"sEO" = ( +/obj/structure/cable{ + 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, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"sFh" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"sFl" = ( +/obj/machinery/computer/general_air_control{ + autolink_sensors = list("n2_sensor"="Nitrogen","o2_sensor"="Oxygen","co2_sensor"="Carbon Dioxide","tox_sensor"="Toxins","n2o_sensor"="Nitrous Oxide","waste_sensor"="Gas Mix Tank"); + dir = 4; + name = "Tank Monitor" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/controlroom) +"sFm" = ( +/obj/effect/turf_decal{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"sFy" = ( +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"sFE" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/reagent_containers/spray/pestspray, +/obj/item/reagent_containers/spray/pestspray, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/cultivator, +/obj/item/cultivator, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/plant_analyzer, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"sFQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteyellowcorner" + }, +/area/station/medical/chemistry) +"sFR" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/obj/effect/decal/cleanable/dust, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"sGi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/maintenance/asmaint2) +"sGl" = ( +/obj/structure/lattice, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"sGs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"sGO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"sHi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/maintenance/fsmaint) +"sHq" = ( +/obj/machinery/hologram/holopad, +/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/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"sHs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"sHt" = ( +/turf/simulated/floor/engine, +/area/holodeck/alphadeck) +"sHC" = ( +/obj/machinery/economy/vending/coffee, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/ward) +"sHW" = ( +/obj/machinery/door/airlock/welded, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"sIF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/engineering/gravitygenerator) +"sIO" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"sJC" = ( +/obj/machinery/economy/slot_machine, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"sJQ" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"sJX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"sKj" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hos) +"sKs" = ( +/obj/structure/closet/crate/internals, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"sKE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 6 + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"sKF" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/machinery/door_control/shutter/south{ + id = "engsm"; + name = "Radiation Shutters Control"; + req_access_txt = "10" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"sKK" = ( +/obj/machinery/atmospherics/binary/valve/digital{ + color = ""; + name = "Plasma Outlet Valve" + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"sKQ" = ( +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/structure/sign/poster/official/help_others{ + pixel_y = 31 + }, +/obj/machinery/conveyor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"sKS" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/medical/patients_rooms) +"sLe" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/engineering/control) +"sLp" = ( +/obj/structure/disposalpipe/junction/y, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"sLy" = ( +/obj/machinery/power/apc/engineering/south, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"sLN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"sLX" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/spawner/random_spawners/oil_often, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/maintenance/fsmaint) +"sLZ" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/maintenance/asmaint) +"sMc" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio6"; + name = "Chamber 6 Containment Blast Doors" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"sMH" = ( +/obj/machinery/atmospherics/binary/valve/digital{ + color = ""; + name = "N2O Outlet Valve" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "escape" + }, +/area/station/engineering/atmos) +"sMJ" = ( +/obj/machinery/hologram/holopad, +/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" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/ward) +"sNy" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"sNJ" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"sNP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"sNQ" = ( +/obj/structure/railing, +/obj/structure/flora/ausbushes/pointybush, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"sOf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"sOi" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"sOr" = ( +/obj/machinery/door/airlock/external{ + id_tag = "fpsolar_door_ext"; + locked = 1; + name = "Engineering External Access" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"sOE" = ( +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Chief Engineer's Office"; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"sOH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/camera{ + c_tag = "Kitchen" + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"sOK" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"sPb" = ( +/obj/machinery/alarm/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"sPg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"sPs" = ( +/obj/structure/cable{ + 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/effect/spawner/random_spawners/oil_maybe, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"sPu" = ( +/obj/item/clothing/suit/mantle/old, +/turf/simulated/floor/carpet, +/area/station/maintenance/asmaint) +"sPx" = ( +/obj/structure/bed{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"sPz" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/multi_tile/security/glass{ + name = "Security Office" + }, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"sPF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"sPI" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fsmaint) +"sQe" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/hallway/secondary/entry) +"sQt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/item/clothing/head/soft/blue, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"sQv" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/stairs{ + icon_state = "rampbottom" + }, +/area/station/engineering/supermatter_room) +"sRi" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"sRm" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"sRw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"sRx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/station/service/chapel) +"sRJ" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"sRW" = ( +/obj/structure/statue/tranquillite/mime/unique, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"sRY" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"sSa" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/ai_monitored/storage/eva) +"sSb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"sSf" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"sSj" = ( +/mob/living/carbon/human/monkey/punpun, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"sSE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/aft) +"sSN" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"sSP" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/portable/pump, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"sSQ" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall, +/area/station/science/hallway) +"sSS" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"sSX" = ( +/obj/structure/sink/kitchen/west, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"sTE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"sTF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "assolar_btn_ext"; + ext_door_link_id = "assolar_door_ext"; + int_button_link_id = "assolar_btn_int"; + int_door_link_id = "assolar_door_int"; + pixel_x = 25; + req_one_access_txt = "13"; + vent_link_id = "assolar_vent" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "assolar_vent"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"sTQ" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/pill/patch/styptic{ + pixel_x = -5 + }, +/obj/item/reagent_containers/food/pill/patch/silver_sulf{ + pixel_x = 6 + }, +/obj/item/reagent_containers/food/pill/patch/styptic{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/pill/patch/silver_sulf{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/pill/patch/styptic{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/pill/patch/silver_sulf{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"sTU" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/port) +"sTX" = ( +/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/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"sTY" = ( +/obj/structure/girder, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"sUe" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"sUw" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/healthanalyzer{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/storage/belt/medical, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 6 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"sUQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"sUZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio4"; + name = "Chamber 4 Containment Blast Doors" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio3"; + name = "Chamber 3 Containment Blast Doors" + }, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"sVg" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA"; + location = "Security" + }, +/obj/structure/disposalpipe/junction/reversed{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/security/lobby) +"sVr" = ( +/obj/structure/morgue, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"sVz" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"sVG" = ( +/obj/effect/spawner/window/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"sVZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/security/lobby) +"sWO" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"sXJ" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"sXV" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"sYo" = ( +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/hologram/holopad{ + pixel_x = 16 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"sYp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"sYr" = ( +/obj/machinery/computer/operating{ + icon_state = "operatingb"; + name = "Robotics Operating Computer"; + stat = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/iv_drip, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/assembly_line) +"sYP" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/decal/cleanable/dust, +/mob/living/simple_animal/mouse/gray, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/fsmaint) +"sYT" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 4; + location = "Medbay" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/station/medical/medbay2) +"sZe" = ( +/obj/item/chair/stool{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dust, +/obj/item/trash/spentcasing, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/port) +"sZg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"sZh" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/ward) +"sZJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"sZP" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/meter, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"sZQ" = ( +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"taa" = ( +/obj/machinery/atmospherics/binary/valve, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/engineering/atmos) +"tab" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/warning_stripes/green/hollow, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"tae" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/fore) +"tai" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"taM" = ( +/mob/living/simple_animal/slime, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"taS" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"tbr" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"tbw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"tbC" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"tbJ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"tbU" = ( +/obj/machinery/power/rad_collector{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"tbW" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/oak, +/area/station/maintenance/abandonedbar) +"tcw" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"tcI" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"tcM" = ( +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"tcX" = ( +/obj/machinery/photocopier, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"tdb" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"tde" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"tdf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"tdh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-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" + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"tdT" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/computer/general_air_control/large_tank_control{ + autolink_sensors = list("co2_sensor"="Tank"); + dir = 1; + inlet_injector_autolink_id = "co2_in"; + name = "Carbon Dioxide Supply Control"; + outlet_vent_autolink_id = "co2_out" + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/engineering/atmos) +"ten" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/station/command/office/rd) +"tep" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"teD" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/door/window{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/maintenance/abandonedbar) +"teT" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/meter, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"tfd" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/main) +"tfk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"tfv" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical{ + level = 1.4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/curtain/open{ + layer = 4.1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"tfz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"tfH" = ( +/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/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"tfT" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"tga" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/mouse, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"tgb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"tge" = ( +/obj/effect/decal/warning_stripes/east, +/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/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"tgh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"tgC" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"tgF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"tgR" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + 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" + }, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"tgZ" = ( +/obj/structure/reflector/box{ + anchored = 1; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"thb" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"thl" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"thq" = ( +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"tht" = ( +/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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) +"thu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"thE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"thF" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"thJ" = ( +/obj/structure/cable{ + 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/station/maintenance/aft) +"thV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/asmaint) +"tia" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sink/kitchen/east, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"tiR" = ( +/obj/machinery/door_control/shutter/south{ + id = "kitchenhall"; + name = "Kitchen Hallway Shutters Control"; + pixel_x = 6; + req_one_access_txt = "28" + }, +/obj/machinery/door_control/shutter/south{ + id = "kitchenbar"; + name = "Kitchen Bar Shutters Control"; + pixel_x = -6; + req_one_access_txt = "28" + }, +/obj/machinery/light/directional/south, +/obj/machinery/processor, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"tjb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/asmaint) +"tjk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Security Delivery" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/doors{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"tjM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"tkb" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"tkc" = ( +/obj/structure/sign/poster/official/random/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"tks" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/storage) +"tkw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"tky" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"tkD" = ( +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/primary/central/sw) +"tkN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"tkW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"tli" = ( +/obj/machinery/computer/account_database{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"tlj" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio5"; + name = "Chamber 5 Containment Blast Doors" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"tls" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"tly" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"tlC" = ( +/obj/structure/sink/directional/west, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/public/toilet/lockerroom) +"tlI" = ( +/obj/structure/sign/poster/contraband/random/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/economy/vending/snack, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"tlP" = ( +/obj/effect/landmark/spawner/rev, +/obj/machinery/light/directional/east, +/obj/structure/toilet/material/captain{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/command/office/captain/bedroom) +"tlR" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"tmd" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/item/trash/semki, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"tmO" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/station/engineering/aitransit) +"tmS" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"tmX" = ( +/obj/structure/closet/wardrobe/white, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"tnb" = ( +/obj/structure/grille/broken, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"tnn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"tnF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/purple, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"tnJ" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/item/clothing/head/soft/rainbow, +/turf/simulated/floor/beach/sand, +/area/station/hallway/secondary/exit) +"tnR" = ( +/obj/machinery/light/directional/south, +/mob/living/simple_animal/hostile/retaliate/carp/koi{ + name = "Пупа" + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/command/bridge) +"ton" = ( +/obj/structure/table/wood, +/obj/item/videocam, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"toB" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"toH" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"tpP" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "virology" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology) +"tpW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/aft) +"tqd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"tqo" = ( +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"tqp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"tqr" = ( +/obj/structure/chair/sofa/bench/left{ + cover_color = "#2f8faf"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluefull" + }, +/area/station/command/bridge) +"tqy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/door/morgue{ + name = "Private Study" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"tqH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"tqW" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"tqX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"trg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/statue/cyberiad/se, +/obj/effect/turf_decal/woodsiding/end{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blackcorner" + }, +/area/station/command/bridge) +"trl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/maintenance/fsmaint) +"trp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/bodybags, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"tsG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"tsJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"tsK" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai_upload) +"tsL" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Mix to Engine" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"tsO" = ( +/obj/structure/table, +/obj/item/gun/syringe{ + pixel_y = 6 + }, +/obj/item/gun/syringe{ + pixel_y = 3 + }, +/obj/item/gun/syringe, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"ttf" = ( +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"tth" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"ttj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"ttq" = ( +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ttZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"tue" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"tuy" = ( +/obj/structure/sign/securearea, +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "telescienceblast"; + name = "test chamber blast doors" + }, +/turf/simulated/floor/plating, +/area/station/science/explab) +"tuJ" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"tuZ" = ( +/obj/structure/weightmachine/stacklifter, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"tvj" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"tvr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"tvE" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/robotanalyzer, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 10; + pixel_x = -3; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkpurple" + }, +/area/station/science/robotics) +"tvQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "arrivalsmaint_vent" + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "arrivalsmaint_btn_ext"; + ext_door_link_id = "arrivalsmaint_door_ext"; + int_button_link_id = "arrivalsmaint_btn_int"; + int_door_link_id = "arrivalsmaint_door_int"; + pixel_x = 25; + req_one_access_txt = "13"; + vent_link_id = "arrivalsmaint_vent" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"twu" = ( +/obj/machinery/hydroponics/soil, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"twv" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/west, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"twx" = ( +/obj/machinery/door/window/classic/reversed{ + name = "Containment Pen" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio3"; + name = "Chamber 3 Containment Blast Doors" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"twH" = ( +/obj/structure/chair/sofa/corp/right, +/turf/simulated/floor/carpet/green, +/area/station/command/bridge) +"twL" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/radio/intercom/locked/prison{ + name = "Prison Intercom (General)"; + pixel_y = 22 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"twT" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"txj" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"txr" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"txu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"txJ" = ( +/obj/effect/spawner/window/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/break_room) +"txR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"tyo" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "open"; + id_tag = "representative"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/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/plating, +/area/station/command/office/ntrep) +"tyv" = ( +/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/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"tzm" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/maintenance/incinerator) +"tzo" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/maintenance/fsmaint) +"tzE" = ( +/obj/structure/cable, +/obj/machinery/power/apc/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"tzW" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/toy/plushie/tuxedo_cat{ + name = "Runtime plushie" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"tAa" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/table/reinforced, +/obj/item/soap, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/maintenance/fsmaint) +"tAb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/station/maintenance/aft) +"tAk" = ( +/obj/machinery/computer/guestpass, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/engineering/controlroom) +"tAm" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"tAp" = ( +/obj/item/extinguisher, +/obj/item/extinguisher{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/table/glass, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"tBn" = ( +/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/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"tBA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"tBE" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"tBQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"tBT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/ai_slipper, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/atmos) +"tCl" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"tCH" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"tCS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"tCY" = ( +/obj/structure/closet/secure_closet/brig, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/prisonlockers) +"tDn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"tDB" = ( +/obj/structure/safe/floor, +/obj/item/soap/homemade, +/obj/item/key/janitor{ + name = "spare key"; + pixel_y = 7 + }, +/obj/item/bikehorn/rubberducky, +/obj/item/clothing/head/crown, +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/apmaint) +"tDS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fpmaint) +"tDV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"tEq" = ( +/obj/machinery/floodlight, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"tEu" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/aiModule/reset, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai_upload) +"tEw" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor{ + id_tag = "hos_secure_doors" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"tFl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/engine, +/area/station/science/explab/chamber) +"tFr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"tFt" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"tFF" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/atmos/control) +"tFZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"tGg" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 7; + name = "Research Director Requests Console"; + pixel_x = -2; + pixel_y = 30 + }, +/obj/machinery/button/windowtint/west{ + desc = "A remote control switch for polarized windows. For culling the sight of the equipment-starved masses."; + id = "rdrobosurgery"; + pixel_y = 4 + }, +/obj/machinery/button/windowtint/west{ + desc = "A remote control switch for polarized windows. For culling the sight of the equipment-starved masses."; + id = "rd"; + pixel_y = -4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkpurple" + }, +/area/station/command/office/rd) +"tGs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"tGx" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"tGy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"tGJ" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/item/clothing/mask/balaclava, +/obj/effect/decal/warning_stripes/red, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"tGO" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"tGW" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"tGZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"tHr" = ( +/obj/structure/table/glass/reinforced/plastitanium, +/obj/item/taperecorder{ + pixel_y = 6; + pixel_x = 4 + }, +/obj/item/stack/tape_roll{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/flash{ + pixel_y = 16; + pixel_x = -6 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"tHv" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio5"; + name = "Chamber 5 Containment Blast Doors" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"tHO" = ( +/obj/structure/chair/sofa/bench/right, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"tIg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"tIl" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 4 + }, +/obj/machinery/light_switch/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/server) +"tIt" = ( +/obj/structure/dispenser, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/equipmentstorage) +"tIy" = ( +/obj/item/toy/balloon, +/obj/item/toy/balloon{ + pixel_x = 7; + pixel_y = -7 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"tJa" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "hop"; + name = "Privacy Shutters" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hop) +"tJj" = ( +/obj/structure/cable{ + 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/station/maintenance/fpmaint) +"tJk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"tJz" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"tJA" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"tJE" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"tKa" = ( +/obj/structure/table/glass, +/obj/effect/decal/cleanable/dust, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/carpet/orange, +/area/station/maintenance/fsmaint) +"tKh" = ( +/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/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"tKk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"tKA" = ( +/obj/machinery/door/airlock/external{ + id_tag = "evamaint_door_int"; + locked = 1; + name = "EVA Internal Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"tLb" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"tLn" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Processing" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/processing) +"tLp" = ( +/obj/structure/disposalpipe/junction/y, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"tLs" = ( +/obj/structure/safe/floor, +/obj/item/coin/mythril, +/obj/item/stack/spacecash/c1000, +/obj/item/instrument/violin/golden, +/turf/simulated/floor/carpet/royalblack, +/area/station/maintenance/apmaint) +"tLB" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start/chemist, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"tMg" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/pillbottles, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"tMq" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"tMs" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/spawner/random_spawners/blood_often, +/obj/random/mech, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"tMx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"tMP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"tMT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/access_button{ + autolink_id = "assolar_btn_int"; + pixel_x = -25; + pixel_y = -25; + req_one_access_txt = "10;13" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"tMU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"tNc" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"tNg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"tNn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"tND" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"tNR" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel, +/area/station/security/main) +"tOn" = ( +/obj/machinery/suit_storage_unit/captain, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain Requests Console"; + pixel_x = -30 + }, +/turf/simulated/floor/carpet/royalblue, +/area/station/command/office/captain) +"tOo" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/ward) +"tOs" = ( +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plating, +/area/station/engineering/utility) +"tOE" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/engineer, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"tOQ" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/papershredder, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/fsmaint) +"tPe" = ( +/obj/machinery/computer/drone_control, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"tPf" = ( +/obj/structure/table, +/obj/structure/bedsheetbin{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"tPq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"tPC" = ( +/obj/vehicle/ambulance{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/northeastsouth, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"tPD" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"tPR" = ( +/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/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"tPT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"tPW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/geneticist, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/genetics) +"tPX" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"tQa" = ( +/obj/machinery/atmospherics/binary/valve/open{ + name = "Maintenance Air Supply" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"tQm" = ( +/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" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/west) +"tQn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/station/science/xenobiology) +"tQJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"tQW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"tRw" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"tRD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Reception" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"tRE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "vault" + }, +/area/station/maintenance/apmaint) +"tRG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"tSb" = ( +/obj/item/candle, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/maintenance/fsmaint) +"tSi" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/ward) +"tSu" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluecorners" + }, +/area/station/engineering/aitransit) +"tSx" = ( +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/qm) +"tSF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"tSN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"tSW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + id_tag = "fssolar_door_int"; + locked = 1; + name = "Engineering External Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"tTf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"tTh" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"tTj" = ( +/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" + }, +/obj/structure/disposalpipe/sortjunction/reversed{ + name = "Eng Chief Engineer's Office"; + sort_type_txt = "5" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"tTz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"tTV" = ( +/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/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"tUd" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/stethoscope, +/obj/item/crowbar, +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/obj/effect/spawner/lootdrop/maintenance/eight, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"tUi" = ( +/obj/item/stack/tile/mineral, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"tUD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"tUH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes/yellow/partial, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"tVd" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/obj/machinery/light/directional/east, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"tVq" = ( +/obj/structure/chair/sofa, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"tVF" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"tVP" = ( +/obj/machinery/bluespace_beacon, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat/interior) +"tVR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"tWd" = ( +/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/plating, +/area/station/maintenance/fsmaint) +"tWh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"tWt" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/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/plasteel, +/area/station/hallway/primary/central/sw) +"tWz" = ( +/obj/item/radio/beacon, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"tWD" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/food/snacks/breadslice, +/obj/item/reagent_containers/food/snacks/breadslice, +/obj/item/reagent_containers/food/snacks/breadslice, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/onion, +/obj/item/reagent_containers/food/snacks/grown/onion, +/obj/item/storage/box/donkpockets, +/obj/item/storage/fancy/egg_box, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/rice, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"tWI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"tWL" = ( +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"tXx" = ( +/obj/structure/grille/broken, +/obj/item/book/manual/wiki/sop_engineering, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"tXB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"tXD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"tXE" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution/red{ + dir = 4 + }, +/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/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"tXG" = ( +/obj/machinery/camera{ + c_tag = "Prison Cafeteria"; + network = list("Prison","SS13") + }, +/obj/structure/closet/secure_closet/freezer/fridge/open, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"tXI" = ( +/obj/structure/table/tray, +/obj/item/storage/firstaid/surgery{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"tXP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"tYc" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/station/hallway/primary/central/south) +"tYe" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"tYh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/station/aisat/hall) +"tYm" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"tYr" = ( +/obj/machinery/door_control/shutter/west{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + req_access_txt = "11" + }, +/obj/machinery/door_control/shutter/west{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_y = 10; + req_access_txt = "10" + }, +/obj/machinery/door_control/shutter/west{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_y = -10; + req_access_txt = "24" + }, +/obj/machinery/computer/monitor{ + dir = 4; + name = "Engine Power Monitoring Computer" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"tYP" = ( +/obj/structure/sign/poster/official/random/east, +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"tYW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/garden) +"tZo" = ( +/obj/structure/table, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/photocopier/faxmachine/longrange{ + pixel_y = 4; + department = "Quartermaster's Office" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/station/supply/qm) +"tZu" = ( +/obj/structure/table, +/obj/item/toy/crayon/spraycan, +/obj/item/restraints/handcuffs/cable/random, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"tZx" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"tZM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"tZY" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel/stairs/right, +/area/station/command/bridge) +"uac" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"uax" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"uaY" = ( +/obj/effect/spawner/window/reinforced/grilled, +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"ubo" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/robotics{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/circuitboard/mecha_control{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/tech_storage) +"ubq" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/boxing/green{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/clothing/gloves/boxing/yellow, +/obj/machinery/economy/vending/wallmed/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ubE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"ubK" = ( +/obj/machinery/access_button{ + autolink_id = "fpmaint_btn_int"; + pixel_x = -25; + pixel_y = -25; + req_one_access_txt = "13" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"ucB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"ucE" = ( +/obj/structure/closet/emcloset, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"ucJ" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"ucQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"ucU" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/space, +/area/space/nearstation) +"udc" = ( +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"udh" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/clown, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood/oak, +/area/station/service/clown) +"udq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"uds" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"udz" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"udO" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/engineering/control) +"ueB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"ueC" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"ueH" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ueT" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"ueZ" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/transparent/glass, +/area/station/service/bar/atrium) +"ufc" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"ufj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/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/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"ufl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/genetics) +"ufq" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"ufu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"ufw" = ( +/obj/structure/closet/wardrobe/orange/prison, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/prisonlockers) +"ufC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ufN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"ufZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/nw) +"ugC" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"ugT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/engineering/atmos) +"ugW" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ugX" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"uhh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"uhl" = ( +/obj/structure/closet/paramedic, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"uhA" = ( +/obj/machinery/access_button/east{ + autolink_id = "scibomb_btn_int"; + pixel_y = 25; + req_one_access_txt = "10;13" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"uhU" = ( +/obj/machinery/light_switch/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"uid" = ( +/obj/structure/disaster_counter/toxins, +/turf/simulated/wall/r_wall, +/area/station/science/toxins/launch) +"uii" = ( +/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 + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"uij" = ( +/turf/simulated/floor/engine, +/area/station/science/explab/chamber) +"uiw" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"uiI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"ujD" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/lobby) +"ujG" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"ujR" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/engineering/aitransit) +"ujX" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/station/maintenance/incinerator) +"ujY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"uka" = ( +/obj/structure/chair/stool, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"ukl" = ( +/obj/machinery/door/window/classic/reversed, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ukr" = ( +/obj/structure/table, +/obj/machinery/smartfridge/disks{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"uku" = ( +/obj/item/stock_parts/cell/high, +/obj/item/clothing/glasses/meson{ + pixel_y = 5 + }, +/obj/structure/table, +/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/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"ukG" = ( +/turf/simulated/floor/carpet/royalblue, +/area/station/command/office/captain) +"ukQ" = ( +/obj/structure/closet/body_bag, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ukV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/science/server/coldroom) +"ula" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/clothing/glasses/hud/health/sunglasses{ + pixel_y = -12 + }, +/obj/item/book/manual/wiki/sop_medical{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"ule" = ( +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"uls" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/wine, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -5 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"uly" = ( +/obj/machinery/disposal/deliveryChute, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/classic/normal{ + layer = 3; + req_one_access_txt = "50" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mail_sorting, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"ulC" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/economy/vending/cigarette, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"ulK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/hallway/primary/central/se) +"ulX" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"umg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hos) +"umk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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 = 10 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"umw" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/brig) +"umx" = ( +/obj/effect/landmark/start/chef, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"umH" = ( +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/xenobiology) +"umJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"umQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"uno" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"unM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Engineering"; + name = "Engineering Security Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Drone Fabricator Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"unR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"uoq" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/meeting_room) +"uoH" = ( +/obj/machinery/alarm/directional/west, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"uoQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/command/office/rd) +"uoR" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"uph" = ( +/obj/machinery/power/apc/engineering/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"upp" = ( +/turf/simulated/wall/r_wall, +/area/station/command/office/hop) +"upI" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/gravitygenerator) +"upW" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "medcabin2"; + name = "Patients Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"upZ" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"uqo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Storage" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/storage) +"uqr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"uqy" = ( +/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 = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"uqE" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"uqH" = ( +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"ure" = ( +/obj/machinery/disposal, +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/secondary) +"urf" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/xenobiology) +"urr" = ( +/obj/machinery/door/poddoor{ + id_tag = "auxincineratorvent"; + name = "Auxiliary Incinerator Vent" + }, +/turf/simulated/floor/engine/vacuum, +/area/station/maintenance/turbine) +"ury" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/space_heater, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"urF" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"urU" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/west) +"usw" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + security_level = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"usH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"usZ" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"uti" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/machinery/atmospherics/unary/portables_connector, +/turf/simulated/floor/plating, +/area/station/aisat/atmos) +"utp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "fssolar_vent" + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "fssolar_btn_ext"; + ext_door_link_id = "fssolar_door_ext"; + int_button_link_id = "fssolar_btn_int"; + int_door_link_id = "fssolar_door_int"; + pixel_x = 25; + req_one_access_txt = "13"; + vent_link_id = "fssolar_vent" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"utu" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/security/prisonlockers) +"utC" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"utP" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/pie{ + pixel_y = 2 + }, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/item/toy/figure/crew/clown{ + pixel_x = 5 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/clown) +"uuh" = ( +/obj/machinery/disposal, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/station/supply/qm) +"uuo" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/secondary/exit) +"uuu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/sw) +"uuE" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"uuH" = ( +/obj/structure/table, +/obj/item/clothing/mask/cigarette/rollie, +/obj/item/clothing/mask/cigarette/rollie{ + pixel_y = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"uuX" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"uuZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"uvk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"uvu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"uvB" = ( +/obj/structure/marker_beacon/spotlight/yellow, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"uvM" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"uwe" = ( +/obj/effect/spawner/wire_splicing/thirty, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"uwh" = ( +/obj/structure/transit_tube/station{ + dir = 4 + }, +/obj/structure/transit_tube_pod{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"uwi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/sign/xenobio{ + pixel_x = -31 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"uwn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"uwr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurple" + }, +/area/station/science/robotics) +"uwB" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Foyer" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/science/rd, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/gravitygenerator) +"uwH" = ( +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"uwJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"uwN" = ( +/obj/structure/closet/radiation, +/obj/structure/sign/radiation/rad_area{ + dir = 1; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/gravitygenerator) +"uwP" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"uwU" = ( +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/aisat/hall) +"uwW" = ( +/obj/machinery/message_server, +/turf/simulated/floor/bluegrid, +/area/station/telecomms/chamber) +"uxk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"uxn" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/public/dorms) +"uxt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"uxB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"uxX" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder, +/obj/machinery/camera{ + c_tag = "Bar Storage"; + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/service/bar) +"uyO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"uyY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"uzD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"uzL" = ( +/obj/effect/decal/cleanable/dirt, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"uzM" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/camera{ + c_tag = "Disposals"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch/oneway{ + id = "garbage"; + name = "disposal coveyor" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"uAb" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/window/full/basic, +/turf/simulated/floor/grass/no_creep, +/area/station/command/bridge) +"uAd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"uAg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"uAo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/aft) +"uAu" = ( +/obj/structure/bed/dogbed{ + desc = "A comfy-looking spider bed. You can even strap your pet in, just in case the gravity turns off."; + name = "spider bed" + }, +/mob/living/simple_animal/hostile/retaliate/araneus, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"uAw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/incinerator) +"uAC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"uAG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"uAL" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/science/toxins/mixing) +"uAT" = ( +/obj/effect/decal/warning_stripes/blue/partial, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/public/dorms) +"uAU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"uBf" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio4"; + name = "Chamber 4 Containment Blast Doors" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio3"; + name = "Chamber 3 Containment Blast Doors" + }, +/obj/structure/cable, +/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 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"uBn" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CMO" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/office/cmo) +"uBz" = ( +/obj/effect/spawner/random_barrier/obstruction, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"uBG" = ( +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"uBJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"uBQ" = ( +/obj/machinery/access_button{ + autolink_id = "fpmaint_btn_ext"; + pixel_x = 25; + pixel_y = 8; + req_one_access_txt = "13" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"uCf" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/unary/passive_vent, +/turf/space, +/area/station/science/toxins/mixing) +"uCC" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 4; + filter_type = 1; + name = "Gas filter (O2 tank)"; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"uCJ" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/public/toilet) +"uCK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera{ + c_tag = "Medbay Lobby Reception"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"uCQ" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/platform{ + dir = 8; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/public/dorms) +"uCT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/lawyer/glass{ + name = "Courtroom" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "Courtroom" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"uCU" = ( +/obj/structure/closet, +/obj/item/book/random/triple, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"uDJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"uDR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/portable/pump, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"uDS" = ( +/obj/machinery/door/airlock/bathroom, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"uEc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/storage/firstaid, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"uEL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/screwdriver, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"uES" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/stairs/right, +/area/station/engineering/control) +"uEU" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"uFa" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "perma_door_ext"; + locked = 1; + name = "Prison Wing" + }, +/obj/machinery/door/firedoor, +/obj/machinery/access_button{ + autolink_id = "perma_btn_ext"; + name = "Prison Wing Access Button"; + pixel_y = -21; + req_one_access_txt = "2" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/effect/turf_decal/stripes/red/full, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/permabrig) +"uFe" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/tech_storage) +"uFn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"uFr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"uFC" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat/Ratatui, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"uGf" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/snacks/grilledcheese{ + pixel_y = 9 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"uGk" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/camera{ + c_tag = "Engineering Secure Storage East"; + dir = 9; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"uGA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/west, +/obj/structure/chair/comfy/shuttle{ + dir = 4; + name = "prisoner transfer chair" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"uGE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"uGG" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Prison Library" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/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/wood/oak, +/area/station/security/permabrig) +"uHy" = ( +/obj/structure/grille/broken, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"uHA" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"uHD" = ( +/obj/effect/decal/warning_stripes/south, +/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/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"uHT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/server) +"uHX" = ( +/obj/structure/sign/poster/contraband/borg_fancy_2{ + pixel_y = 31 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"uIf" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/asmaint2) +"uIg" = ( +/obj/machinery/atmospherics/binary/valve/open{ + name = "Maintenance Air Supply" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/maintenance/asmaint2) +"uIn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/patients_rooms) +"uJm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"uJq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_often, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fpmaint) +"uJB" = ( +/obj/machinery/door/airlock/external{ + id_tag = "evamaint_door_int"; + locked = 1; + name = "EVA Internal Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"uKa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fsmaint) +"uKn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/meter, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"uKD" = ( +/obj/machinery/fishtank/wall{ + opacity = 1 + }, +/turf/simulated/wall, +/area/station/service/kitchen) +"uKG" = ( +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"uKK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/hallway) +"uKL" = ( +/obj/machinery/status_display/directional/south, +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"uKQ" = ( +/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{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"uLo" = ( +/obj/structure/chair/sofa/corp/right, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"uLp" = ( +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"uLu" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/generic, +/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/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"uLv" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"uLN" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/machinery/camera{ + c_tag = "Hydroponics Pasture"; + dir = 9 + }, +/obj/structure/sign/poster/official/random/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/service/hydroponics) +"uLO" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/maintenance/portsolar) +"uMa" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"uMl" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"uMp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"uMr" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"uMu" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"uMy" = ( +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) +"uMU" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"uMZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"uNg" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"uNj" = ( +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/maintenance/apmaint) +"uNo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"uNP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/warden) +"uOF" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"uOG" = ( +/obj/structure/rack, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/assembly/prox_sensor{ + pixel_y = 2 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"uOT" = ( +/obj/structure/closet/radiation, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plating, +/area/station/engineering/secure_storage) +"uPe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + autoclose = 0; + id_tag = "xeno_door_int"; + locked = 1; + name = "Xenobiology Internal Airlock" + }, +/obj/machinery/access_button{ + autolink_id = "xeno_btn_int"; + name = "Xenobiology Access Button"; + pixel_x = 8; + pixel_y = 28; + req_one_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/mapping_helpers/airlock/access/any/science/xenobio, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"uPn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tank/internals/oxygen, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"uPs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/command/bridge) +"uPA" = ( +/obj/machinery/disposal, +/obj/structure/sign/poster/official/help_others{ + pixel_y = -30 + }, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Genetics Requests Console"; + pixel_x = -30 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkpurple" + }, +/area/station/science/genetics) +"uPG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"uPV" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"uPX" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/warden) +"uQe" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"uQv" = ( +/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" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"uQV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"uRb" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Starboard"; + dir = 8; + network = list("SS13","engine","Engineering") + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"uRK" = ( +/obj/item/organ/internal/heart/vox, +/obj/item/reagent_containers/food/snacks/fried_vox, +/obj/structure/table, +/obj/item/scalpel, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"uSD" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio6"; + name = "Chamber 6 Containment Blast Doors" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio5"; + name = "Chamber 5 Containment Blast Doors" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/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/plating, +/area/station/science/xenobiology) +"uSG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"uSY" = ( +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitecorner" + }, +/area/station/maintenance/abandonedbar) +"uTe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"uTo" = ( +/obj/machinery/door/airlock/external{ + id_tag = "secmaint_door_int"; + locked = 1; + name = "External Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"uTu" = ( +/obj/structure/window/plasmareinforced{ + dir = 8 + }, +/obj/machinery/power/rad_collector{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"uUe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"uUf" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/maintenance/fsmaint) +"uUy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"uUD" = ( +/obj/machinery/drone_fabricator, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/dronefabricator) +"uUL" = ( +/obj/machinery/atmospherics/unary/tank/air, +/turf/simulated/floor/plating, +/area/station/aisat/atmos) +"uVj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/permabrig) +"uVr" = ( +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/security/permabrig) +"uVt" = ( +/obj/structure/cable{ + 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/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"uVu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"uVA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"uVH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"uVL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"uVU" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"uWf" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Prison Solitary 2"; + dir = 8; + network = list("Prison","SS13") + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"uWp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/ai_upload) +"uWw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"uWP" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"uXd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/fancy, +/area/station/legal/courtroom) +"uXy" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/maintenance/abandonedbar) +"uXA" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/maintenance/asmaint) +"uXE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"uXM" = ( +/obj/effect/landmark/start/shaft_miner, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"uYw" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"uYz" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/unary/vent_pump/on, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"uYB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"uYW" = ( +/obj/machinery/economy/vending/coffee, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"uZe" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Aft"; + network = list("SS13","engine","Engineering") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"uZx" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/hallway) +"uZJ" = ( +/obj/machinery/computer/arcade/recruiter{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"uZW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/science/robotics) +"vaa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"vah" = ( +/obj/effect/decal/warning_stripes/blue/partial{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"val" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + autoclose = 0; + id_tag = "xeno_door_ext"; + locked = 1; + name = "Xenobiology External Airlock" + }, +/obj/machinery/access_button/west{ + autolink_id = "xeno_btn_ext"; + name = "Xenobiology Access Button"; + req_one_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/full, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/structure/disposalpipe/segment, +/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/mapping_helpers/airlock/access/any/science/xenobio, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"vaz" = ( +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"vaH" = ( +/turf/simulated/wall, +/area/station/engineering/hallway) +"vbf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"vbp" = ( +/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" + }, +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"vbq" = ( +/obj/structure/grille, +/obj/structure/sign/mech{ + pixel_y = 29 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"vbz" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/door/airlock/command{ + name = "Teleport Access" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"vbB" = ( +/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/station/maintenance/fsmaint) +"vbD" = ( +/obj/structure/bed/psych, +/obj/random/therapy, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"vbI" = ( +/obj/machinery/atmospherics/binary/volume_pump/on{ + dir = 8; + name = "Mix to Filter" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"vbQ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"vca" = ( +/obj/machinery/economy/vending/artvend, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/public/dorms) +"vcb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/station/service/library) +"vcm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"vcy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"vcO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"vcQ" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/hallway/secondary/entry) +"vcS" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/effect/landmark/start/cargo_technician, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"vcX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"vdh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/bathroom{ + name = "Unisex Restrooms" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/public/toilet) +"vdo" = ( +/turf/simulated/floor/bluegrid, +/area/station/aisat/hall) +"vdx" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/disposal) +"vdL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/misc_lab) +"vdY" = ( +/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/plasteel, +/area/station/security/processing) +"vep" = ( +/obj/machinery/door/airlock/freezer, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"veF" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "rampbottom" + }, +/area/station/service/bar/atrium) +"veM" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"veP" = ( +/obj/structure/closet/secure_closet/clown, +/obj/machinery/camera{ + c_tag = "Clown's Office"; + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/clown) +"veR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/machinery/door/airlock/multi_tile/security/glass{ + dir = 2; + name = "Security Office" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"veU" = ( +/obj/item/candle, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/maintenance/fsmaint) +"veV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"vfa" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/security/warden) +"vfc" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio3"; + name = "Chamber 3 Containment Blast Doors" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio2"; + name = "Chamber 2 Containment Blast Doors" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"vfp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/turretid/lethal{ + check_synth = 1; + name = "AI Chamber Turret Control"; + pixel_x = 5; + pixel_y = -24; + req_one_access_txt = "75" + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -8; + pixel_y = -24 + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai) +"vfy" = ( +/obj/item/chair/stool{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"vfE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"vfJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"vfW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"vfY" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"vgd" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"vgl" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "eng_n_tesla_vent"; + dir = 4 + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "eng_n_tesla_btn_ext"; + ext_door_link_id = "eng_n_tesla_door_ext"; + int_button_link_id = "eng_n_tesla_btn_int"; + int_door_link_id = "eng_n_tesla_door_int"; + pixel_y = -25; + req_access_txt = "10;13"; + vent_link_id = "eng_n_tesla_vent" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/engineering/control) +"vgM" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/head/hardhat, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"vgR" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/computer/general_air_control/large_tank_control{ + autolink_sensors = list("air_sensor"="Tank"); + dir = 1; + inlet_injector_autolink_id = "air_in"; + name = "Mixed Air Supply Control"; + outlet_setting = 2000; + outlet_vent_autolink_id = "air_out" + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/engineering/atmos) +"vhd" = ( +/obj/structure/window/plasmareinforced{ + dir = 4 + }, +/obj/machinery/power/rad_collector{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"vhf" = ( +/obj/structure/chair, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint) +"vhs" = ( +/obj/structure/table/wood, +/obj/item/melee/chainofcommand, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light_switch/south, +/obj/machinery/button/windowtint/south{ + id = "hos_room"; + pixel_x = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hos) +"vhu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"vhD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall, +/area/station/maintenance/port) +"vhN" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"vic" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"vih" = ( +/obj/effect/spawner/wire_splicing/thirty, +/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/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"viP" = ( +/obj/structure/table/glass, +/obj/item/hand_labeler, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"vjd" = ( +/obj/machinery/driver_button{ + id_tag = "toxinsdriver"; + pixel_x = 6; + pixel_y = 24; + range = 18 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light_switch/north{ + pixel_x = -7 + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"vjf" = ( +/turf/simulated/floor/carpet/royalblack, +/area/station/maintenance/apmaint) +"vjg" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"vjx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"vjY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"vkC" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/carpet/royalblack, +/area/station/maintenance/apmaint) +"vkV" = ( +/obj/item/clothing/shoes/clown_shoes, +/turf/space, +/area/space) +"vlh" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"vlF" = ( +/obj/machinery/light_construct/small/east, +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box/full, +/obj/item/storage/fancy/candle_box, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/fsmaint) +"vmd" = ( +/obj/effect/turf_decal/loading_area, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"vmk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"vmn" = ( +/obj/machinery/door/firedoor, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/airlock/command/cmo/glass{ + id_tag = "cmoofficedoor"; + name = "CMO's Office" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/cmo, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "CMO" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/command/office/cmo) +"vmr" = ( +/obj/machinery/hologram/holopad{ + pixel_y = 16 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"vmz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"vmA" = ( +/obj/machinery/atmospherics/portable/canister/nitrogen, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/storage) +"vmH" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"vnc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"vns" = ( +/obj/machinery/r_n_d/server/robotics, +/obj/effect/turf_decal/bot_white, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/science/server/coldroom) +"vnO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"vnR" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel/stairs/right, +/area/station/command/bridge) +"vnY" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"vnZ" = ( +/obj/machinery/suit_storage_unit/qm/secure, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/station/supply/qm) +"vog" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/space, +/area/station/engineering/solar/port) +"voo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/structure/dispenser, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"vpf" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"vpE" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"vpR" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Solitary Confinement 2" + }, +/obj/structure/cable{ + 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/effect/decal/warning_stripes/south, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"vpS" = ( +/obj/structure/table, +/obj/item/cartridge/medical, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"vqm" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/economy/vending/bardrobe, +/turf/simulated/floor/wood/fancy/oak, +/area/station/service/bar) +"vqp" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"vqt" = ( +/obj/structure/particle_accelerator/end_cap{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/control) +"vqS" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/item/paper_bin/nanotrasen, +/obj/item/pen, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Kitchen" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "kitchenbar"; + name = "Kitchen Shutters" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"vrA" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"vrF" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"vsr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"vsw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/flag/rnd, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"vsR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/storage) +"vtf" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"vtj" = ( +/obj/structure/chair/sofa/bench{ + cover_color = "#85130b"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"vts" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 4; + filter_type = 3; + name = "Gas filter (CO2 tank)"; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"vtO" = ( +/turf/simulated/floor/plasteel{ + icon_state = "stairs-l" + }, +/area/station/service/expedition) +"vtW" = ( +/mob/living/simple_animal/hostile/killertomato{ + desc = "Прирученный ботаниками томат-убийца. Не подпускать к Сане."; + faction = list("plants","neutral","hostile"); + name = "Витамин" + }, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/service/hydroponics) +"vue" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"vum" = ( +/obj/item/trash/tapetrash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"vup" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"vur" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"vuu" = ( +/obj/structure/window/reinforced, +/obj/machinery/disposal, +/obj/structure/sign/deathsposal{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"vuA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"vuF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/packageWrap, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/maintenance/fsmaint) +"vuK" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"vuN" = ( +/obj/structure/closet/firecloset, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "purple" + }, +/area/station/science/hallway) +"vuU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"vvd" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"vvq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"vvK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"vvV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door_control/shutter/south{ + id = "maint3"; + name = "Blast Door Control C"; + pixel_x = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"vwc" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/se) +"vwd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/service/chapel/office) +"vwk" = ( +/obj/machinery/atmospherics/portable/pump, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"vwn" = ( +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/simple_animal/cock/Clucky, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"vws" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"vwC" = ( +/obj/structure/closet/secure_closet/RD, +/obj/machinery/light_switch/west, +/obj/machinery/keycard_auth/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkpurple" + }, +/area/station/command/office/rd) +"vwS" = ( +/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{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/science/robotics/chargebay) +"vxf" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/starboard/west) +"vxo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"vxu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/northeastcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/apmaint) +"vxy" = ( +/obj/structure/bed, +/obj/item/radio/intercom/locked/prison{ + name = "Prison Intercom (General)"; + pixel_y = 22 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"vxz" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"vxB" = ( +/obj/machinery/alarm/directional/north, +/obj/machinery/economy/slot_machine, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"vxC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/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/plasteel, +/area/station/hallway/primary/port) +"vxS" = ( +/obj/machinery/door/poddoor/shutters{ + id_tag = "maint_house" + }, +/obj/structure/barricade/wooden{ + layer = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"vyu" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/explab) +"vyw" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"vyz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment, +/turf/space, +/area/space/nearstation) +"vyQ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("Toxins"); + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"vze" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Atmos NorthWest"; + network = list("SS13","Engineering") + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"vzg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"vzq" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"vzE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/bed/roller, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"vzI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Research and Development" + }, +/obj/structure/disposalpipe/segment, +/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/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/rnd) +"vAC" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"vAN" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"vAO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"vAW" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"vAZ" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/storage) +"vBm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"vBs" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "CE" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command/ce/glass{ + id_tag = "ceofficedoor"; + name = "Chief Engineer's Office" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/ce) +"vBv" = ( +/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/meter{ + layer = 3.3 + }, +/obj/structure/grille, +/obj/structure/window/plasmareinforced, +/obj/structure/window/plasmareinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/science/toxins/mixing) +"vBC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"vBG" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"vBH" = ( +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"vBJ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/warden) +"vBK" = ( +/obj/machinery/status_display{ + layer = 4 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "bridge blast north"; + name = "Bridge Blast Doors" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"vBN" = ( +/obj/structure/window/plasmareinforced{ + dir = 8 + }, +/obj/machinery/power/rad_collector{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"vBV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"vBX" = ( +/obj/structure/reagent_dispensers/spacecleanertank/north, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"vCe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"vCM" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"vDp" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) +"vDt" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + id_tag = "eng_n_tesla_door_ext"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/control) +"vDR" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/light/small/directional/east, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"vDX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/economy/vending/tool, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"vDY" = ( +/obj/structure/closet/secure_closet/brig, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/prisonlockers) +"vEm" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"vEo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"vEr" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/storage/box/bodybags, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"vEw" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "paramedic" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/medical/paramedic) +"vEA" = ( +/obj/structure/sink/kitchen/east, +/obj/item/reagent_containers/glass/bucket, +/obj/item/radio/intercom/locked/prison{ + dir = 8; + name = "Prison Intercom (General)"; + pixel_x = 22 + }, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"vEL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"vET" = ( +/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/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"vEW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/remains/xeno, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"vFd" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"vFk" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"vFw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/service/chapel) +"vFA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/status_display/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"vFJ" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "psych" + }, +/turf/simulated/floor/plating, +/area/station/medical/psych) +"vFV" = ( +/obj/item/kitchen/knife{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/clothing/under/syndicate/tacticool{ + pixel_x = -1 + }, +/obj/item/clothing/mask/balaclava{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/structure/rack, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"vFZ" = ( +/obj/machinery/camera{ + c_tag = "Holodeck East"; + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"vGj" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"vGq" = ( +/obj/structure/table, +/obj/item/stack/sheet/cardboard{ + amount = 10 + }, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/exit) +"vGB" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/item/bedsheet/captain{ + dir = 1 + }, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/carpet, +/area/station/command/office/captain/bedroom) +"vHd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"vHJ" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/lighter/random{ + pixel_x = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"vHK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"vHT" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/poster/official/high_class_martini{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"vHV" = ( +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"vIc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"vIj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Medbay Hall"; + sort_type_txt = "9" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"vIO" = ( +/obj/machinery/r_n_d/server/core, +/obj/effect/turf_decal/bot_white, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/science/server/coldroom) +"vIU" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/station/maintenance/fsmaint) +"vIW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"vJc" = ( +/obj/structure/closet/secure_closet/mime, +/obj/machinery/camera{ + c_tag = "Mime's Office"; + dir = 8 + }, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"vJf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellow" + }, +/area/station/engineering/break_room) +"vJv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel, +/area/station/hallway/primary/port) +"vJy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"vKe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"vKr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"vKs" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"vKu" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/simulated/floor/transparent/glass, +/area/station/service/bar/atrium) +"vKC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/atmos) +"vKE" = ( +/obj/machinery/door/airlock/external{ + id_tag = "trade_dock"; + locked = 1; + name = "Arrival Airlock" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"vKP" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/exit) +"vKU" = ( +/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/plasteel{ + icon_state = "dark" + }, +/area/station/security/warden) +"vKV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"vLq" = ( +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"vLB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"vLF" = ( +/obj/machinery/door/window/classic/normal{ + name = "Containment Pen" + }, +/obj/effect/turf_decal/stripes/full, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"vLT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"vMa" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/asmaint) +"vMe" = ( +/obj/effect/spawner/window/reinforced/tinted/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"vMv" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "black" + }, +/area/station/security/permabrig) +"vMz" = ( +/obj/machinery/cooker/deepfryer, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"vMJ" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"vMN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"vMV" = ( +/obj/structure/chair/sofa/corner{ + color = "#85130b"; + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"vNg" = ( +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"vNh" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"vNj" = ( +/obj/structure/cable{ + 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/plating, +/area/station/maintenance/fsmaint) +"vNo" = ( +/obj/structure/table, +/obj/item/stack/medical/bruise_pack/improvised{ + pixel_y = 8 + }, +/obj/item/healthanalyzer, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"vNT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/wall, +/area/station/maintenance/aft) +"vNX" = ( +/obj/machinery/cryopod/robot, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plating, +/area/station/aisat/service) +"vOb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"vOq" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"vOs" = ( +/obj/machinery/door/airlock/maintenance{ + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"vOy" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"vOD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/security/permabrig) +"vOE" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medical Supplies" + }, +/obj/machinery/door/firedoor, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) +"vON" = ( +/obj/machinery/shower{ + dir = 4 + }, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"vPr" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"vPz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Prison General North"; + dir = 5; + network = list("Prison","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/permabrig) +"vPC" = ( +/obj/structure/cable{ + 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/plating, +/area/station/maintenance/apmaint) +"vPP" = ( +/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/structure/disposalpipe/junction{ + dir = 8; + tag = "icon-pipe-j2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"vQt" = ( +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "fpmaint_btn_ext"; + ext_door_link_id = "fpmaint_door_ext"; + int_button_link_id = "fpmaint_btn_int"; + int_door_link_id = "fpmaint_door_int"; + pixel_x = 24; + pixel_y = 6; + req_one_access_txt = "13"; + vent_link_id = "fpmaint_vent" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "fpmaint_vent"; + dir = 1 + }, +/obj/effect/decal/remains/mouse, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"vQw" = ( +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/station/engineering/aitransit) +"vQV" = ( +/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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/command/bridge) +"vQZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"vRd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"vRp" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Blueshield Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/blueshield, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"vRG" = ( +/obj/structure/sign/poster/contraband/revolver{ + pixel_y = 30 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"vRJ" = ( +/obj/machinery/camera{ + c_tag = "Research E.X.P.E.R.I-MENTOR Chamber"; + dir = 4; + network = list("Telepad","Research","SS13") + }, +/turf/simulated/floor/engine, +/area/station/science/explab/chamber) +"vRL" = ( +/obj/item/roller{ + pixel_y = 6 + }, +/obj/item/roller{ + pixel_y = 10 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/structure/table, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"vSh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/science/rd, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/gravitygenerator) +"vSi" = ( +/obj/structure/table/reinforced, +/obj/item/storage/bag/tray, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"vSz" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/obj/structure/closet/crate/freezer, +/obj/item/storage/firstaid/aquatic_kit/full, +/obj/item/reagent_containers/glass/bucket, +/obj/item/fish_eggs/salmon, +/obj/item/fish_eggs/salmon, +/obj/item/fish_eggs/shrimp, +/obj/item/fish_eggs/shrimp, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/service/kitchen) +"vSC" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 4 + }, +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" + }, +/area/station/engineering/aitransit) +"vSH" = ( +/obj/structure/closet/crate/can, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/trash/tray, +/obj/item/trash/waffles, +/obj/item/trash/semki, +/obj/item/trash/gum, +/obj/item/trash/sosjerky, +/obj/item/trash/raisins, +/obj/item/trash/gum, +/obj/item/trash/candy, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"vTp" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on{ + autolink_id = "air_out"; + dir = 1; + external_pressure_bound = 0; + internal_pressure_bound = 2000; + pressure_checks = 2 + }, +/turf/simulated/floor/engine/air, +/area/station/engineering/atmos) +"vTx" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Detective" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/detective) +"vTz" = ( +/obj/structure/chair, +/obj/item/radio/intercom/locked/confessional{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"vTD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/station/aisat/hall) +"vTU" = ( +/obj/machinery/power/apc/important/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"vUq" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"vUy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"vUA" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Waste to Port" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"vUK" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/table/wood, +/obj/item/trash/candle, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"vUZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"vVF" = ( +/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/plasteel, +/area/station/hallway/primary/central/south) +"vWa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"vWr" = ( +/obj/machinery/ai_status_display/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/command/bridge) +"vWt" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/chapel) +"vWw" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/permabrig) +"vWz" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm/directional/south, +/obj/item/clipboard, +/obj/item/hand_labeler, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"vWD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"vWF" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 9 + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"vWN" = ( +/obj/structure/closet/cabinet, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/shoes/sandal/white, +/obj/item/clothing/under/pants/white, +/obj/item/clothing/accessory/scarf/white, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/station/maintenance/abandonedbar) +"vXb" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"vXo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"vXp" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"vXN" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/junction/reversed, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"vXQ" = ( +/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/plasteel{ + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"vXT" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Containment Pen" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio5"; + name = "Chamber 5 Containment Blast Doors" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"vYb" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"vYh" = ( +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/entry) +"vYv" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"vYx" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/toolbox, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "blue" + }, +/area/station/maintenance/aft) +"vYH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/machinery/camera{ + c_tag = "Arrivals North" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"vYJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"vYQ" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"vYS" = ( +/obj/structure/disposalpipe/junction/y{ + dir = 1 + }, +/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/plasteel, +/area/station/hallway/primary/port) +"vZh" = ( +/obj/machinery/economy/atm/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/se) +"vZl" = ( +/obj/structure/sink/directional/west, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"vZo" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/generic, +/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/station/maintenance/port) +"vZD" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"vZV" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/table, +/obj/item/cartridge/signal/toxins, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"vZX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"wap" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/service/clown) +"waY" = ( +/obj/structure/bed/dogbed/ian, +/mob/living/simple_animal/pet/dog/corgi/Ian, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"wbl" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/structure/chair/sofa/corp/right, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/purple, +/area/station/service/bar) +"wbr" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/telecomms/chamber) +"wbB" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"wbM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"wbV" = ( +/obj/effect/spawner/wire_splicing/thirty, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"wci" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"wcr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/statue/cyberiad/s, +/obj/effect/turf_decal/woodsiding, +/obj/effect/turf_decal/woodsiding{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "black" + }, +/area/station/command/bridge) +"wcA" = ( +/obj/machinery/computer/operating, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"wcC" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"wcG" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall/r_wall, +/area/station/maintenance/apmaint) +"wcS" = ( +/obj/machinery/door/poddoor/shutters{ + density = 0; + desc = "Lube off, pal."; + dir = 1; + icon_state = "open"; + id_tag = "imnotmakingyoulubepissoff"; + name = "Chemistry Privacy Shutter"; + opacity = 0 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/medical/chemistry) +"weg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluered" + }, +/area/station/command/bridge) +"weo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"wet" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"wew" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"weG" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"weK" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall, +/area/station/maintenance/abandonedbar) +"weS" = ( +/obj/item/book/codex_gigas, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"weV" = ( +/obj/machinery/economy/vending/genedrobe, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkpurple" + }, +/area/station/science/genetics) +"wgs" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"wgt" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"wgA" = ( +/obj/effect/landmark/burnturf, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_barrier/obstruction, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"wgG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/command/meeting_room) +"wgI" = ( +/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/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/toxins/mixing) +"whv" = ( +/obj/machinery/computer/HolodeckControl{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"why" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"wie" = ( +/obj/machinery/camera{ + c_tag = "Blueshield's Office"; + dir = 1 + }, +/obj/machinery/newscaster/security_unit/south, +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"wii" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/sign/fire{ + pixel_x = -32 + }, +/obj/machinery/access_button/north{ + autolink_id = "turbine_btn_ext"; + name = "Gas Turbine Airlock Control"; + pixel_x = 8 + }, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"wiG" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"wiS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"wjh" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"wjr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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/station/maintenance/aft) +"wjx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) +"wjQ" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/air{ + filled = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"wjV" = ( +/obj/structure/chair/sofa/bench{ + cover_color = "#85130b"; + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/permabrig) +"wkg" = ( +/obj/machinery/hydroponics/constructable{ + desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays."; + name = "Prison hydroponics tray"; + using_irrigation = 1 + }, +/obj/item/seeds/wheat/rice, +/obj/machinery/light/directional/west, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"wkB" = ( +/obj/machinery/door/airlock/maintenance{ + electrified_until = -1; + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"wkM" = ( +/obj/machinery/photocopier, +/obj/machinery/light/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"wkQ" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"wle" = ( +/obj/effect/decal/cleanable/dirt, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"wlh" = ( +/obj/effect/decal/warning_stripes/blue/hollow, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/camera{ + c_tag = "Engineering Emergency Supplies"; + dir = 4; + network = list("SS13","Engineering") + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/emergency) +"wls" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"wml" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/simulated/floor/carpet, +/area/station/maintenance/asmaint) +"wmY" = ( +/obj/effect/spawner/wire_splicing/thirty, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"wna" = ( +/obj/structure/table, +/obj/item/storage/box/syringes{ + layer = 3.9; + pixel_x = -4; + pixel_y = -8 + }, +/obj/item/storage/box/syringes{ + layer = 3.9; + pixel_x = 8; + pixel_y = -8 + }, +/obj/item/storage/box/autoinjectors{ + layer = 3.8; + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/storage/box/autoinjectors{ + layer = 3.8; + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/storage/box/gloves{ + layer = 3.7; + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/storage/box/gloves{ + layer = 3.7; + pixel_x = 8; + pixel_y = 12 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) +"wnh" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"wny" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Restaurant" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"wnG" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"wnQ" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcorners" + }, +/area/station/engineering/supermatter_room) +"wnR" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 8; + stack_amt = 10; + output_dir = 2 + }, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"wnU" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft) +"woj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"wom" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"wox" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "eng_s_tesla_vent"; + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/engineering/control) +"woA" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/hallway) +"woD" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"woK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"woV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"wpu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"wpH" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"wpN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"wpW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"wpY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"wqh" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/decal/cleanable/vomit, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"wqu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/aicard, +/obj/item/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkpurple" + }, +/area/station/command/office/rd) +"wqv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/obj/structure/coatrack, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/abandonedbar) +"wri" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"wrj" = ( +/obj/effect/turf_decal/stripes/red/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/brig) +"wrk" = ( +/obj/effect/spawner/wire_splicing/thirty, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"wrl" = ( +/obj/machinery/ai_status_display/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/command/bridge) +"wrn" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"wro" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"wrH" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"wrM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/roller, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/aft) +"wsA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"wsC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"wsD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"wsY" = ( +/obj/structure/table, +/obj/item/storage/box/prisoner, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/prisonlockers) +"wtn" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"wtp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"wtq" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "rampbottom" + }, +/area/station/maintenance/abandonedbar) +"wtA" = ( +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"wug" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/ce) +"wuh" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"wuy" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/blood/old{ + icon_state = "mfloor2"; + random_icon_states = null + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"wuA" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"wuP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"wve" = ( +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"wvz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"wvD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/landmark/burnturf, +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"wvN" = ( +/obj/structure/table, +/obj/item/stack/packageWrap{ + pixel_y = 4 + }, +/obj/item/stack/packageWrap{ + pixel_y = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"wvQ" = ( +/obj/effect/decal/cleanable/dirt, +/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/plating, +/area/station/maintenance/fpmaint2) +"wwc" = ( +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "evamaint_btn_ext"; + ext_door_link_id = "evamaint_door_ext"; + int_button_link_id = "evamaint_btn_int"; + int_door_link_id = "evamaint_door_int"; + name = "EVA Airlock Console"; + pixel_x = 25; + req_one_access_txt = "1;5;11;18;24"; + vent_link_id = "evamaint_vent" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"wwL" = ( +/obj/item/flag/clown, +/turf/simulated/floor/wood/oak, +/area/station/service/clown) +"wwZ" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "rdrobosurgery" + }, +/turf/simulated/floor/plating, +/area/station/science/robotics) +"wxn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/lobby) +"wxp" = ( +/obj/machinery/alarm/directional/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/prisonlockers) +"wxu" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"wxF" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"wxL" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/server) +"wym" = ( +/obj/machinery/atmospherics/portable/canister/carbon_dioxide, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"wyv" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"wyJ" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/brig) +"wzx" = ( +/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/plasteel, +/area/station/hallway/primary/starboard/west) +"wzE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch{ + id = "Skynet_heavy" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"wzQ" = ( +/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/catwalk, +/area/station/maintenance/storage) +"wzY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"wAd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/asmaint) +"wAj" = ( +/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/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"wAF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"wAG" = ( +/obj/machinery/chem_master, +/obj/structure/sign/poster/contraband/random/south, +/turf/simulated/floor/engine, +/area/station/science/misc_lab) +"wAP" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/obj/effect/decal/cleanable/dust, +/mob/living/simple_animal/moth, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"wAW" = ( +/obj/structure/sink/directional/east, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"wBf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"wBy" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"wBF" = ( +/obj/effect/landmark/start/doctor, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cloning) +"wBH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"wBM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/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/carpet, +/area/station/medical/psych) +"wBU" = ( +/obj/structure/table/wood, +/obj/item/deck/cards{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/public/dorms) +"wCd" = ( +/obj/machinery/door/window/classic/normal, +/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/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/xenobiology) +"wCk" = ( +/obj/machinery/light/directional/west, +/obj/machinery/porta_turret{ + dir = 4; + installation = /obj/item/gun/energy/gun; + name = "hallway turret" + }, +/turf/simulated/floor/bluegrid, +/area/station/aisat/hall) +"wCq" = ( +/obj/machinery/computer/med_data/laptop{ + dir = 8; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/table/glass, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"wCM" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/binary/pump{ + name = "Cooling Loop Bypass" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/engineering/supermatter_room) +"wCP" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave{ + pixel_x = -1; + pixel_y = 7 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) +"wCQ" = ( +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/robotics/chargebay) +"wCX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"wCZ" = ( +/obj/machinery/ai_status_display/south, +/obj/item/kirbyplants, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/public/dorms) +"wDe" = ( +/obj/structure/sign/poster/contraband/random/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plasteel{ + icon_state = "stage_bleft" + }, +/area/station/maintenance/fsmaint) +"wDV" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/west) +"wEb" = ( +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/public/toilet) +"wEe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/wall/r_wall, +/area/station/science/test_chamber) +"wEP" = ( +/obj/machinery/newscaster/directional/east, +/obj/structure/sink/directional/east, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"wFr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"wFR" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"wFX" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/chem_dispenser, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"wGj" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"wGn" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/carpet, +/area/station/command/office/captain) +"wGJ" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"wGR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/maintenance/aft) +"wHa" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/locked/prison{ + dir = 4; + name = "Prison Intercom (General)"; + pixel_x = -22 + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"wHh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"wHl" = ( +/obj/effect/decal/warning_stripes/green, +/obj/machinery/economy/vending/hydronutrients, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"wHo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"wHw" = ( +/obj/effect/decal/cleanable/dirt, +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"wHA" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/station/maintenance/asmaint) +"wHB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/binary/pump{ + name = "Fuel Pipe to Incinerator" + }, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"wHF" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"wHW" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/brig) +"wHZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"wIc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access" + }, +/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/mapping_helpers/airlock/access/any/command/teleporter, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"wIr" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Kill Chamber" + }, +/obj/effect/turf_decal/stripes/full, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"wIv" = ( +/obj/structure/table, +/obj/item/apc_electronics, +/obj/item/airlock_electronics, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/hallway/primary/aft) +"wIz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"wII" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/break_room) +"wIO" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"wIU" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/command/bridge) +"wJc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/can, +/obj/item/wirecutters, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"wJf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/public/storage/office) +"wJg" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/storage) +"wJn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/ward) +"wJv" = ( +/obj/structure/chair, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/ward) +"wJK" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/plating, +/area/station/maintenance/maintcentral2) +"wKx" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"wKB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"wKM" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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 = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"wLm" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "blue" + }, +/area/station/command/bridge) +"wLp" = ( +/obj/structure/table, +/obj/item/trash/gum, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"wLq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"wLu" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/restroom{ + pixel_y = 31 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"wLF" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/cable, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"wLY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/permabrig) +"wMl" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Do Not Revive"; + req_one_access_txt = "6" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/morgue{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/medical/morgue) +"wMx" = ( +/obj/structure/table/wood, +/obj/item/pinpointer, +/obj/item/disk/nuclear, +/obj/item/storage/secure/safe{ + pixel_x = 27; + pixel_y = 5 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"wMz" = ( +/obj/structure/chair/comfy/teal{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/medbay2) +"wMN" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"wMV" = ( +/obj/structure/railing/corner{ + dir = 1; + layer = 3.9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"wNa" = ( +/obj/item/kirbyplants/dead, +/obj/item/cigbutt, +/obj/item/cigbutt, +/obj/item/cigbutt, +/obj/item/cigbutt, +/obj/item/cigbutt, +/obj/item/cigbutt, +/obj/item/cigbutt, +/obj/item/cigbutt, +/obj/item/cigbutt, +/obj/item/cigbutt, +/obj/item/cigbutt, +/obj/item/cigbutt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"wNc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"wNp" = ( +/obj/machinery/door/airlock/external{ + name = "Toxins Test Chamber" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"wNr" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"wNE" = ( +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"wNT" = ( +/obj/structure/sign/bobross{ + pixel_y = 32 + }, +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/carpet/royalblack, +/area/station/maintenance/apmaint) +"wOf" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on{ + autolink_id = "co2_out"; + dir = 1; + external_pressure_bound = 0; + internal_pressure_bound = 2000; + pressure_checks = 2 + }, +/turf/simulated/floor/engine/co2, +/area/station/engineering/atmos) +"wOM" = ( +/obj/machinery/camera{ + c_tag = "Prison Solitary 1"; + dir = 4; + network = list("Prison","SS13") + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"wOW" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"wPf" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) +"wPs" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/station/maintenance/asmaint) +"wPx" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall/r_wall, +/area/station/maintenance/fore) +"wPF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"wPX" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/prisonlockers) +"wQa" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo Requests Console"; + pixel_x = -30 + }, +/obj/effect/landmark/start/shaft_miner, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"wQi" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/maintenance/asmaint2) +"wQr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"wQv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"wQI" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "eng_n_tesla_vent"; + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/sign/vacuum/external{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/engineering/control) +"wQK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cryo) +"wQM" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/medical/ward) +"wQO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plating, +/area/station/maintenance/fpmaint) +"wQQ" = ( +/obj/machinery/door/airlock/engineering/glass{ + heat_proof = 1; + name = "Supermatter Chamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"wRz" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"wRB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"wRN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Firing Range" + }, +/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/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"wSs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"wSU" = ( +/obj/structure/sign/deathsposal{ + pixel_y = 32 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"wTf" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance" + }, +/obj/structure/disposalpipe/segment, +/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" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"wTp" = ( +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/fpmaint2) +"wUT" = ( +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/maintenance/asmaint) +"wVi" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/exit) +"wVG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/asmaint) +"wVH" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prisoner Oversight"; + req_one_access_txt = "1" + }, +/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/firedoor, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/permabrig) +"wVJ" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel Requests Console"; + pixel_y = -30 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"wWf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/sign/poster/official/random/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"wWp" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/machinery/light/small/directional/south, +/obj/machinery/cooker/deepfryer, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/asmaint) +"wWC" = ( +/obj/machinery/atmospherics/binary/valve/open{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"wWM" = ( +/obj/structure/closet/secure_closet/hos, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/hos) +"wXg" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"wXm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Fore Starboard Solar Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/turf/simulated/floor/plasteel, +/area/station/maintenance/auxsolarstarboard) +"wXC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/service/hydroponics) +"wYg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"wYh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dust, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/partial, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"wYi" = ( +/obj/effect/decal/cleanable/blood/footprints{ + color = "#727272"; + icon_state = "blood2"; + initialized = 1 + }, +/turf/simulated/floor/plating, +/area/station/engineering/utility) +"wYq" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/sop_command{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/sop_supply{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/book/manual/wiki/sop_service{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/megaphone{ + pixel_y = -11 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/command/office/hop) +"wYs" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/poster/contraband/random/north, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"wYL" = ( +/obj/item/flashlight/lantern, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"wZb" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/fsmaint) +"wZe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"wZp" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"wZA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"wZU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"wZZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/north, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/hallway) +"xab" = ( +/obj/effect/landmark/damageturf, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"xaU" = ( +/obj/structure/table, +/obj/item/eftpos{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/eftpos{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"xaY" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"xaZ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 0; + name = "Air to Mix" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"xbO" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/carpet, +/area/station/service/library) +"xbT" = ( +/obj/item/kirbyplants, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"xcg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/engineering/atmos/storage) +"xcq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"xcB" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"xcC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"xcG" = ( +/obj/machinery/button/windowtint/east{ + id = "garden" + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/hydroponics/soil, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"xcO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/rnd) +"xde" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"xdo" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Engineering"; + departmentType = 3; + name = "Engineering Requests Console"; + pixel_x = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/crowbar/large, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/hallway) +"xdy" = ( +/obj/machinery/camera{ + c_tag = "Research Hallway Center"; + dir = 1; + network = list("Research","SS13") + }, +/obj/machinery/ai_status_display/south, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/hallway) +"xdA" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/command/office/captain) +"xdJ" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/medical/reception) +"xdO" = ( +/obj/machinery/access_button{ + autolink_id = "arrivalsmaint_btn_ext"; + pixel_x = -25; + pixel_y = -25; + req_one_access_txt = "13" + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"xdS" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/public/dorms) +"xdY" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/light_switch/west, +/obj/effect/landmark/start/geneticist, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurple" + }, +/area/station/science/genetics) +"xea" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/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{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"xec" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/statue/cyberiad/w, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "black" + }, +/area/station/command/bridge) +"xeq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"xeB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/science/robotics) +"xeG" = ( +/obj/structure/chair/sofa/corp/left, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/hallway/secondary/exit) +"xeH" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/west, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "Secure Storage"; + name = "Secure Storage" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/secure_storage) +"xeR" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"xfg" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + name = "Janitor Requests Console"; + pixel_x = 32 + }, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"xfi" = ( +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"xfI" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/smes) +"xfO" = ( +/obj/structure/table/glass/reinforced/plastitanium, +/obj/item/kitchen/utensil/spoon{ + pixel_y = 2; + pixel_x = -10 + }, +/obj/item/kitchen/utensil/fork{ + pixel_y = 2 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 14; + pixel_y = 2 + }, +/obj/structure/sign/poster/official/random/north, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"xfQ" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) +"xgm" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/station/engineering/aitransit) +"xgn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"xgp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/northeastcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/supermatter_room) +"xgz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Reception" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"xgO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"xha" = ( +/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/plating, +/area/station/maintenance/fpmaint) +"xhe" = ( +/obj/structure/grille, +/turf/space, +/area/space/nearstation) +"xho" = ( +/obj/structure/railing, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"xhq" = ( +/obj/machinery/conveyor/west{ + id = "garbage" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Disposal Exit"; + name = "Disposal Exit Vent"; + opacity = 0 + }, +/obj/structure/sign/deathsposal{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"xhx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"xhz" = ( +/obj/structure/cable{ + 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/carpet, +/area/station/command/office/hos) +"xhA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"xhM" = ( +/obj/machinery/light_switch/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/public/toilet) +"xhR" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"xhW" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"xhX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/clothing/gloves/color/latex, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"xia" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"xir" = ( +/obj/machinery/door/airlock/external{ + hackProof = 1; + id_tag = "emergency_home"; + locked = 1; + name = "Escape Airlock" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/secondary/exit) +"xiA" = ( +/obj/effect/landmark/burnturf, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"xiC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"xiF" = ( +/obj/structure/table/glass, +/obj/machinery/photocopier/faxmachine/longrange{ + pixel_y = 4; + department = "Research Director's Office" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"xiV" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/mask/balaclava, +/obj/effect/decal/warning_stripes/red, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"xiZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"xjh" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/carpet, +/area/station/command/office/captain) +"xjj" = ( +/turf/simulated/wall, +/area/station/command/office/captain) +"xjB" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"xkF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"xkG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Service Bay" + }, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat/service) +"xkX" = ( +/obj/machinery/shieldwallgen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"xlg" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/item/toy/minimeteor, +/obj/item/poster/random_contraband, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"xlV" = ( +/turf/simulated/floor/plating, +/area/station/engineering/supermatter_room) +"xmi" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 6" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"xmj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/molten_object/large, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"xmq" = ( +/obj/structure/closet/crate/internals, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"xmu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) +"xmA" = ( +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"xmN" = ( +/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/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/hallway) +"xmW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plasteel, +/area/station/maintenance/assembly_line) +"xmZ" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/command/teleporter) +"xne" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/fsmaint) +"xnr" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/command/teleporter) +"xnG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"xnM" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"xnT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/permabrig) +"xol" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/closet/secure_closet/roboticist, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"xon" = ( +/obj/structure/disaster_counter/supermatter, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"xoE" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/directional/west, +/obj/machinery/papershredder, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/station/supply/qm) +"xoN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/ward) +"xoT" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dust, +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/effect/decal/remains/mouse, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/maintenance/abandonedbar) +"xpv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"xpP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"xpV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/public/glass{ + autoclose = 0; + heat_proof = 1; + id_tag = "turbine_door_ext"; + locked = 1; + name = "Incinerator Interior Airlock"; + req_access_txt = "12" + }, +/obj/machinery/airlock_controller/access_controller{ + ext_button_link_id = "turbine_btn_ext"; + ext_door_link_id = "turbine_door_ext"; + int_button_link_id = "turbine_btn_int"; + int_door_link_id = "turbine_door_int"; + name = "Turbine Access Console"; + pixel_x = 40; + pixel_y = 6 + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"xqa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "purple" + }, +/area/station/maintenance/asmaint2) +"xqn" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/carpet, +/area/station/command/office/captain) +"xqp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"xqv" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"xqL" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Nanotrasen Representative Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ntrep, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"xqV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/station/public/mrchangs) +"xrq" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Kitchen"; + sort_type_txt = "20" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/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/plating, +/area/station/maintenance/fsmaint) +"xrI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/security/detective) +"xrP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"xrV" = ( +/obj/structure/table, +/obj/item/clothing/glasses/hud/health{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/flashlight/pen{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/station/maintenance/aft) +"xsi" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"xsl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"xsx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/seeds/ambrosia, +/obj/machinery/hydroponics/soil, +/turf/simulated/floor/grass, +/area/station/maintenance/asmaint) +"xsC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"xsP" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/engineering/control) +"xsY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"xth" = ( +/obj/structure/table_frame, +/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, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"xtq" = ( +/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/wood/oak, +/area/station/command/office/hop) +"xtJ" = ( +/obj/structure/table, +/obj/item/book/manual/supermatter_engine{ + pixel_x = -5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/item/book/manual/engineering_particle_accelerator, +/obj/item/book/manual/engineering_singularity_safety{ + pixel_x = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/engineering/equipmentstorage) +"xtW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/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/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"xtZ" = ( +/mob/living/simple_animal/pet/penguin/baby, +/turf/simulated/floor/carpet, +/area/station/maintenance/asmaint) +"xub" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"xue" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/prisonlockers) +"xun" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"xuG" = ( +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/storage) +"xuI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/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/station/maintenance/apmaint) +"xvd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"xvh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/statue/cyberiad/north, +/turf/simulated/floor/plasteel{ + icon_state = "black" + }, +/area/station/command/bridge) +"xvo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/brig) +"xvs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/seeds/ambrosia/deus, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/maintenance/asmaint) +"xvG" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=QM"; + location = "CHW" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) +"xvM" = ( +/obj/machinery/door/window{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"xvN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/primary/central/se) +"xvP" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Auxiliary Docking South-East"; + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"xvS" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"xvT" = ( +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"xwb" = ( +/obj/structure/closet/bombcloset, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/science/hallway) +"xwg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"xwi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"xwS" = ( +/obj/machinery/particle_accelerator/control_box, +/obj/structure/cable/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/control) +"xxa" = ( +/obj/machinery/economy/vending/crittercare, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"xxd" = ( +/obj/structure/sign/poster/contraband/fun_police{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"xxv" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/hallway/primary/fore) +"xyr" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkpurple" + }, +/area/station/science/robotics) +"xyG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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/wood/fancy/cherry, +/area/station/command/office/captain) +"xyK" = ( +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "co2_sensor"; + output = 127 + }, +/turf/simulated/floor/engine/co2, +/area/station/engineering/atmos) +"xze" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/station/hallway/secondary/exit) +"xzp" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/station/engineering/utility) +"xzs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"xzG" = ( +/obj/machinery/camera{ + c_tag = "Engineering Atmos Mini-Hallway"; + dir = 4; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"xzI" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/tech_storage) +"xzY" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"xAf" = ( +/obj/effect/spawner/random_spawners/grille_often, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"xAk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/construction) +"xAn" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution/red{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"xAw" = ( +/obj/machinery/atmospherics/trinary/mixer{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"xBf" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) +"xBl" = ( +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"xBw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/gravitygenerator) +"xBC" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/asmaint2) +"xBM" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/hydroponics/soil, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"xBP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"xCd" = ( +/obj/effect/decal/warning_stripes/blue/partial, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"xCt" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"xCz" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/storage) +"xCH" = ( +/obj/structure/table, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flash, +/obj/item/flash, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"xDc" = ( +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"xDr" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"xDw" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"xDA" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel, +/area/station/hallway/secondary/entry) +"xEb" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/muffin{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/stack/tape_roll, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fsmaint) +"xEA" = ( +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/effect/decal/cleanable/dust, +/mob/living/simple_animal/frog/Wednesday, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/maintenance/abandonedbar) +"xFd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/maintenance/asmaint) +"xFt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"xFJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"xFM" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_random{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/lighter/random{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/maintenance/asmaint2) +"xFQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/hallway) +"xGy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plating, +/area/station/maintenance/fpmaint) +"xGE" = ( +/obj/structure/cable{ + 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/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"xGF" = ( +/obj/effect/decal/warning_stripes/blue/partial{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"xGU" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"xHr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack{ + dir = 1 + }, +/obj/item/storage/belt/utility, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"xHs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"xHv" = ( +/obj/item/toy/crayon/random, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"xHy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/snacks/disk{ + pixel_x = -6 + }, +/obj/item/reagent_containers/food/snacks/disk{ + pixel_y = 10; + pixel_x = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/station/maintenance/apmaint) +"xHz" = ( +/obj/machinery/power/apc/engineering/west, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcorners" + }, +/area/station/engineering/equipmentstorage) +"xHC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old{ + icon_state = "mfloor5"; + random_icon_states = null + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"xHJ" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/item/clothing/head/beanie/rasta, +/turf/simulated/floor/carpet, +/area/station/maintenance/asmaint) +"xHL" = ( +/obj/machinery/disposal, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/light_switch/east, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/service/bar/atrium) +"xIi" = ( +/obj/machinery/chem_master, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/maintenance/aft) +"xIj" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2"; + tag = "icon-pipe-j2 (EAST)" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/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/plating, +/area/station/maintenance/fsmaint) +"xIm" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"xII" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/pistachios, +/obj/item/poster/random_contraband, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"xJa" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"xJf" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/central/south) +"xJi" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"xJk" = ( +/obj/item/storage/box/monkeycubes{ + pixel_y = 3 + }, +/obj/structure/table/glass, +/obj/machinery/airlock_controller/access_controller{ + ext_button_link_id = "viro_btn_ext"; + ext_door_link_id = "viro_door_ext"; + int_button_link_id = "viro_btn_int"; + int_door_link_id = "viro_door_int"; + name = "Virology Lab Access Console"; + pixel_y = -24 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"xJn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"xJD" = ( +/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, +/turf/simulated/floor/plasteel, +/area/station/security/prisonlockers) +"xJE" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/flashlight/lamp{ + layer = 3.2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/ce) +"xJG" = ( +/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" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/command/bridge) +"xJO" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/turf_decal/caution{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"xJR" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"xKa" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/space, +/area/space/nearstation) +"xKc" = ( +/obj/effect/turf_decal/caution, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"xKi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"xKv" = ( +/obj/machinery/hydroponics/constructable{ + desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays."; + name = "Prison hydroponics tray"; + using_irrigation = 1 + }, +/obj/item/seeds/carrot, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"xKE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"xKT" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/spawner/random_spawners/blood_maybe, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"xLj" = ( +/obj/structure/girder, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"xLs" = ( +/obj/effect/spawner/random_barrier/obstruction, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"xLu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"xLv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"xLx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"xLF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/plating, +/area/station/maintenance/aft) +"xLQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"xLR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/station/maintenance/aft) +"xMa" = ( +/obj/item/chair/wood, +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/port) +"xMG" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"xMI" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern{ + on = 1 + }, +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/station/maintenance/fsmaint) +"xMK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/wall/r_wall, +/area/station/medical/virology) +"xML" = ( +/obj/effect/spawner/window/reinforced/tinted/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"xMP" = ( +/obj/machinery/keycard_auth/south, +/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/carpet/royalblue, +/area/station/command/office/captain) +"xNr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "rampbottom" + }, +/area/station/security/brig) +"xNv" = ( +/obj/structure/cable{ + 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/plasteel, +/area/station/public/storage/tools) +"xNV" = ( +/obj/machinery/biogenerator, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"xOn" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/engineering/break_room) +"xOA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"xOM" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/aft) +"xOQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"xPa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/permabrig) +"xPb" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"xPg" = ( +/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/plasteel, +/area/station/hallway/primary/central/nw) +"xPo" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CE" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/office/ce) +"xPw" = ( +/obj/structure/chair/sofa/pew/right, +/obj/item/trash/semki, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"xPz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"xPE" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/security/permabrig) +"xPH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/service/chapel) +"xPJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/beer{ + pixel_y = 6 + }, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"xPO" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/structure/table, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"xPW" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/main) +"xQd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"xQB" = ( +/obj/effect/spawner/window/reinforced/tinted/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"xQF" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/primary/central/se) +"xQL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"xQP" = ( +/obj/structure/chair/comfy/black, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/comfy/brown{ + color = "#514E58" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/fsmaint) +"xRk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/service/chapel) +"xRy" = ( +/obj/machinery/door_control/shutter/west{ + id = "maint2"; + name = "Blast Control Door B"; + pixel_y = 4 + }, +/obj/machinery/door_control/shutter/west{ + id = "maint1"; + name = "Blast Control Door A"; + pixel_y = -6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"xRB" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/qm) +"xRG" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "purple" + }, +/area/station/science/rnd) +"xRI" = ( +/obj/machinery/camera{ + c_tag = "Prison Solitary External"; + dir = 1; + network = list("Prison","SS13") + }, +/turf/space, +/area/space) +"xRM" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/sign/explosives, +/turf/space, +/area/space/nearstation) +"xRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/effect/decal/remains/human, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitehall" + }, +/area/station/maintenance/aft) +"xRT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/prisonlockers) +"xRU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"xRV" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + name = "Sci RD Office 1"; + sort_type_txt = "13" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/science/hallway) +"xRY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/aft) +"xSq" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/cigarette/pipe, +/turf/simulated/floor/carpet/green, +/area/station/command/bridge) +"xSt" = ( +/obj/effect/decal/cleanable/dirt, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"xSF" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/paper{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/interrogation) +"xSH" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"xSV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plasteel{ + icon_state = "cult" + }, +/area/station/maintenance/fsmaint) +"xSZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"xTc" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) +"xTH" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"xTJ" = ( +/obj/item/trash/semki, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"xTR" = ( +/obj/effect/landmark/start/shaft_miner, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"xTV" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"xTZ" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"xUg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"xUG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/station/service/chapel) +"xUK" = ( +/obj/structure/table/glass, +/obj/item/radio/intercom/directional/west, +/obj/item/slime_scanner, +/obj/item/slime_scanner, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"xUS" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"xUX" = ( +/obj/machinery/door/window/classic/reversed{ + name = "Kill Chamber" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenobio1"; + name = "Chamber 1 Containment Blast Doors" + }, +/obj/effect/turf_decal/stripes/full, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, +/turf/simulated/floor/engine, +/area/station/science/xenobiology) +"xVf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet, +/area/station/legal/lawoffice) +"xVC" = ( +/obj/structure/closet/secure_closet/injection, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"xVF" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/prisonlockers) +"xVM" = ( +/obj/structure/closet/secure_closet/brig, +/obj/machinery/status_display/directional/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/prisonlockers) +"xVP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/aft) +"xVT" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/space, +/area/space/nearstation) +"xWg" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"xWm" = ( +/obj/item/trash/chips, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) +"xWJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"xWL" = ( +/obj/item/storage/secure/safe{ + pixel_x = -27; + pixel_y = 5 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/armory/secure) +"xWM" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/decal/warning_stripes/north, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"xWN" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/junction/reversed, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"xWO" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"xWT" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/poddoor/preopen{ + id_tag = "bridge blast east"; + name = "Bridge Blast Doors" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel, +/area/station/command/bridge) +"xWX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"xXe" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/transit_tube{ + icon_state = "N-S-Pass" + }, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat/interior) +"xXt" = ( +/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, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"xXD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"xXO" = ( +/obj/machinery/light/directional/south, +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/glasses/welding, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"xXP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) +"xYc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"xYi" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/public/mrchangs) +"xYl" = ( +/obj/effect/landmark/burnturf, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"xYp" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 8; + name = "engine outlet injector"; + volume_rate = 200 + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/supermatter_room) +"xYq" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"xYu" = ( +/obj/structure/table, +/obj/item/clothing/under/pants/shorts/black{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/under/pants/shorts/blue, +/obj/item/clothing/under/pants/shorts/red{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/reagent_containers/food/drinks/trophy/bronze_cup, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"xYK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) +"xZg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/station/service/chapel) +"xZh" = ( +/obj/machinery/door/airlock/virology{ + name = "Virology Bedroom" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/medical/virology, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/medical/virology) +"xZq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/security/brig) +"xZH" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Interrogation" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/interrogation/observation) +"yaa" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"yab" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/psych/glass{ + id_tag = "psych_bolt"; + name = "Psychiatrist Office" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "psych" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"yad" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Coroner" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/morgue{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"yaK" = ( +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ybE" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/directional/east, +/obj/effect/decal/warning_stripes/green/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/hydroponics) +"ybL" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/machinery/access_button{ + autolink_id = "eng_n_tesla_btn_int"; + pixel_x = -25; + pixel_y = -25; + req_access_txt = "10;13" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/station/engineering/control) +"ybN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"ybT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"ybX" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/decal/remains/human{ + desc = "This guy seemed to have died in terrible way! Half his remains are dust."; + name = "human remains" + }, +/obj/effect/decal/cleanable/blood/old, +/obj/item/toy/figure/crew/botanist, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ycj" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"ycr" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"ycK" = ( +/obj/structure/table/wood, +/obj/item/camera, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ydv" = ( +/obj/structure/barricade/wooden{ + layer = 4 + }, +/obj/machinery/door/airlock/welded{ + name = "Maintenance Airlock" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"ydz" = ( +/turf/simulated/floor/plasteel, +/area/station/security/prisonlockers) +"ydH" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "black" + }, +/area/station/security/permabrig) +"ydU" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/closet{ + icon_state = "mixed"; + opened = 1; + icon_opened = "generic_open" + }, +/obj/item/cartridge/janitor, +/obj/item/flashlight, +/obj/item/storage/bag/trash, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/melee/flyswatter, +/obj/item/storage/box/lights/mixed, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/maintenance/fsmaint) +"yeI" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/structure/morgue{ + dir = 1 + }, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plating, +/area/station/medical/morgue) +"yeL" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"yfi" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/robotics) +"yfn" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"yfR" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/ai_monitored/storage/eva) +"yfY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"ygr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/science/hallway) +"ygu" = ( +/mob/living/carbon/human/monkey, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"ygC" = ( +/obj/structure/closet/emcloset, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"ygF" = ( +/obj/structure/table/glass, +/obj/item/clothing/head/cakehat, +/turf/simulated/floor/light/purple, +/area/station/service/bar/atrium) +"ygK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/misc_lab) +"ygX" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"yha" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"yhb" = ( +/obj/structure/table/glass/reinforced/plastitanium, +/obj/item/storage/box/handcuffs{ + pixel_y = 2; + pixel_x = -4 + }, +/obj/item/clothing/suit/straight_jacket{ + pixel_y = 4; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/interrogation) +"yhm" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"yhr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"yhw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/atmos) +"yhF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"yhP" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/computer/security/engineering{ + dir = 1; + network = list("Power Alarms","Atmosphere Alarms","Fire Alarms","Engineering") + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/atmos/control) +"yhS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Brig Firing Range"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"yhY" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"yig" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) +"yiu" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"yiy" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"yiF" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "testlab"; + name = "Testing Lab Shutters" + }, +/turf/simulated/floor/plating, +/area/station/science/misc_lab) +"yiH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"yiL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) +"yiZ" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/fsmaint) +"yjg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) +"yjv" = ( +/obj/machinery/alarm/server{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/station/science/server/coldroom) +"yjA" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/roller, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"yjF" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"yjH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/security/storage) +"yjQ" = ( +/obj/structure/cable{ + 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 = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"yjR" = ( +/obj/machinery/door/airlock/external{ + id_tag = "scibomb_door_int"; + locked = 1; + name = "External Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"yjV" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/science/explab/chamber) +"yko" = ( +/obj/effect/turf_decal/loading_area, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/engineering/aitransit) +"ykt" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/command/office/ce) +"yku" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "purple" + }, +/area/station/science/hallway) +"ykw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/legal/courtroom) +"ykA" = ( +/obj/structure/table, +/obj/item/t_scanner, +/obj/item/multitool{ + pixel_x = 5 + }, +/obj/item/radio/headset/headset_eng, +/obj/item/cartridge/atmos, +/obj/item/cartridge/atmos, +/obj/item/t_scanner, +/obj/item/wrench, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"ykF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"ykL" = ( +/obj/machinery/atmospherics/portable/canister/nitrogen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/maintenance/asmaint2) +"ylb" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "blue" + }, +/area/station/hallway/primary/central/se) +"ylC" = ( +/obj/structure/chair/sofa/corp, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"ylG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/atmos/glass{ + name = "Supermatter Atmospheric Supplies" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/hallway) +"ylO" = ( +/turf/simulated/wall, +/area/station/medical/ward) +"ylS" = ( +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/atmos) +"ylW" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random/east, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) +"yme" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 6 + }, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/engineering/atmos) + +(1,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(2,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(3,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(4,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(5,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(6,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(7,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(8,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(9,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(10,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(11,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(12,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(13,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(14,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(15,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(16,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(17,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(18,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(19,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(20,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(21,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(22,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(23,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(24,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(25,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(26,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(27,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(28,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(29,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(30,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +khv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(31,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aMs +vKE +vKE +aMs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aMs +pkf +pkf +aMs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(32,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aSd +eGs +eGs +aSd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aSd +eGs +eGs +aSd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(33,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLd +neF +eoP +aSd +aaa +aaa +aaa +aVV +aVY +aVY +aVY +aVV +aaa +aaa +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLd +neF +eoP +aSd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(34,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLd +vKE +vKE +aLd +bjQ +aaa +aaa +aVY +aYM +jyO +bcr +aVY +aaa +aaa +cEL +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cEL +aaa +aaa +aaa +aaa +aaa +aLd +pkf +pkf +aLd +bjQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(35,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLd +gGY +aSf +euy +aLd +aaa +aaa +aVV +aYL +jyO +bcN +aVV +aaa +aaa +aMs +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aMs +aaa +aaa +aaa +aaa +aaa +aLd +gGY +aSf +euy +aLd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(36,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aMs +aMs +aMs +aLd +gGY +aSf +urF +aLd +aaa +aVV +aVV +aVV +jMw +aVV +aVV +aVV +aaa +aLd +aLd +aSd +aSd +aLd +aaa +aaa +aaa +aaa +aaa +aMs +aaa +aaa +aaa +aaa +aaa +aLd +gGY +aSf +urF +aLd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(37,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aJP +aJP +aJP +aRm +aOP +aMs +swY +aMB +aSd +aSd +aSd +aVV +aXr +kGb +jyO +kGb +aXs +aVV +aSd +aSd +aSd +blB +boP +aLd +aaa +aaa +aaa +aaa +aaa +aMs +aaa +aaa +aaa +aaa +aaa +aLd +gGY +aMB +aSd +aSd +aSd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(38,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aJS +aLb +aMp +aNt +bMa +aPZ +kaE +bLZ +aRU +cve +aRU +aVX +aXs +aYZ +aYZ +aYZ +aXs +aVX +aRU +aQa +aRU +aMd +boL +aSd +aaa +aaa +aaa +aaa +aaa +aLd +aaa +aaa +aaa +aaa +aaa +aLd +sEJ +bLZ +piQ +cve +piQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(39,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aJP +aJP +aJP +aRm +aOR +aMs +ikg +uKL +aSd +aSd +aSd +aVV +aXt +aXs +aXs +aXs +beG +aVV +aSd +aSd +aSd +cFJ +boL +aSd +aaa +aaa +aaa +aaa +aaa +sVG +aaa +aaa +aaa +aaa +aaa +aSd +gGY +bLZ +piQ +cve +piQ +bPN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(40,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aMs +aMs +aMs +aLd +aRa +rGW +mOp +mTi +aSd +aVV +aXu +aYZ +aYZ +aYZ +bes +aVV +aSd +bid +mOp +sLN +bMg +aSd +aaa +aaa +aaa +aaa +aaa +sVG +aaa +aaa +aaa +aaa +aaa +aSd +gGY +uKL +aSd +aSd +aSd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(41,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aJR +aJR +aJR +aRV +aOP +aMs +vYH +aSf +aSf +aUk +aSd +aVY +aXv +aXs +aXs +aXs +aXs +aVY +aSd +bgI +aSf +aSf +bsh +aSd +aaa +aaa +aaa +aaa +aaa +sVG +aaa +aaa +aaa +aaa +aaa +aSd +pNQ +rGW +mTi +aSd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(42,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aJV +aLf +aMt +aNy +bMa +aPZ +bMb +aSf +aSf +aUn +aSd +aVY +aXw +aYZ +aYZ +aYZ +aXs +aVY +aSd +bjT +aSf +aSf +qvr +aSd +aaa +aaa +aaa +aaa +aaa +sVG +aaa +aaa +aaa +aaa +aaa +aSd +bGl +aRd +bKp +aSd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(43,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aJR +aJR +aJR +aRV +aOR +aMs +aPJ +aRd +aTp +aUm +aSd +aVV +aXx +aXs +aXs +aXs +bex +aVV +aSd +bjS +aTp +brc +bOb +aSd +aaa +aaa +aaa +aaa +aaa +sVG +aaa +aaa +aaa +aaa +aaa +aSd +mkg +aMD +aSd +aSd +aSd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(44,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aab +aMs +aNw +aNw +aLd +aPT +aMD +aSd +aSd +aSd +aVV +aXy +aYZ +aYZ +aYZ +beG +aVV +aSd +aSd +aSd +blE +qwP +aSd +aaa +aaa +aaa +aaa +aaa +sVG +aaa +aaa +aaa +aaa +aaa +aSd +qfI +bLZ +pkf +cve +pkf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(45,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aRp +mxz +aKa +aGn +aPR +bLZ +aRU +cve +aRU +aVX +aXs +jyO +jyO +jyO +aXs +aVX +aRU +aQa +aRU +aMd +qwP +aSd +aaa +aaa +bvf +aaa +aaa +aLd +aaa +aaa +bCi +aaa +aaa +aLd +tND +bLZ +pkf +cve +pkf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(46,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ays +aaa +aaa +aaa +aaa +doE +aII +aII +aII +aII +aHl +vEo +aVL +aQw +aRe +aSd +aSd +aSd +aVV +aVV +aYV +aYV +aYV +aVV +aVV +aSd +aSd +aSd +dce +bdO +aLd +dOd +aSd +bvl +aSd +dOd +aMs +dOd +aSd +bDC +aSd +dOd +aLd +qfI +aRe +aSd +aSd +aSd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(47,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +alv +alv +alv +alv +alv +alv +apo +alv +alv +alv +alv +aab +alv +alv +aaa +aaa +aaa +aaa +aaa +aaa +xdO +jXg +aHS +tvQ +dur +pTK +sar +aGn +aPY +aSf +bLY +aSd +aUZ +aVV +aXn +aYT +aYT +aYT +bey +aVV +aUZ +aSd +bpX +aSf +bgR +aMs +aSd +aSd +aOQ +aSd +aSd +aMs +aSd +aSd +aOQ +aSd +aSd +aMs +qfI +aSf +bLY +aSd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +alv +alv +alv +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ppR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(48,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +aab +aab +aab +aab +aab +aaa +axn +aaa +aab +aaa +aBm +aaa +alv +aaa +aaa +aaa +aaa +aaa +aaa +doE +aII +aII +aII +aII +aNC +iOQ +aGn +aPY +aSf +cIK +aLd +aLd +aLd +aSd +aSd +aSd +aSd +aSd +aLd +aLd +aLd +niR +aSf +bsl +aMs +aUl +aSd +bvl +aSd +bwO +aMs +aUl +aSd +bDC +aSd +bwO +aMs +oLQ +aSf +xaY +aLd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +aab +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(49,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +arX +arL +atF +aaa +arX +arL +atF +aaa +arX +arL +atF +aaa +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aII +aNA +oGl +aGn +mCp +aSf +aME +aUo +aUV +jQc +edY +aTo +aTo +aTo +lko +bdn +bgH +bjU +bmS +aSf +aSj +bgG +aME +aTo +aTo +bLX +bmS +bzr +aME +aYD +aTo +aTo +bmS +xvP +bgB +aSf +bMc +aSd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +bEN +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(50,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +arX +arM +atF +aaa +arX +arM +atF +aaa +arX +arM +atF +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aII +aMy +iOQ +aGn +aQy +aRf +aRW +aSn +aTt +aVd +aXq +aZN +bcW +bgl +bhK +aSf +blg +aSf +aSf +aSf +bsq +buf +buS +blV +hCn +uGE +bDu +bEm +plc +bIb +bJs +jiy +plc +plc +sTE +blg +qaX +aLd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +qAt +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(51,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +arX +arM +atF +aab +arX +arM +atF +aab +arX +arM +atF +aaa +aab +aaa +aaa +aaa +aaa +aaa +aGn +aGn +aGn +bat +aGn +aGn +aNB +flm +aKW +aGn +aGn +aGn +aGn +aVc +aVc +aVc +aVc +aVc +bgk +bhE +aSd +aSd +aSd +aSd +bre +bgk +bqr +bqr +bqr +bqr +bBr +bqr +bqr +bnS +bnS +bnS +kNP +vYh +dsG +cAm +aTp +pEp +aSd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +alv +aab +puy +aab +alv +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(52,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +arX +arM +atF +aaa +arX +arM +atF +aaa +arX +arM +atF +aab +aab +aaa +aaa +aaa +aaa +aaa +bat +aHR +pql +aGn +blL +vEo +ngO +wvQ +ngO +aTh +aPv +ngO +ksP +aVc +aWd +aXB +aZY +aVc +bgw +bhO +aSW +bgt +bkc +bmo +brk +bmW +bqr +buX +oyG +bvm +sAq +btF +bqr +bud +buc +bnS +bwt +bnS +bnS +ckp +blQ +nqv +blQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +aab +cyO +aab +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(53,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +alv +alv +aab +aaa +arX +arM +atF +aaa +arX +arM +atF +aaa +arX +arM +atF +aaa +aab +aaa +aAd +aDw +aFT +aDw +aSt +aHM +aIJ +aKW +aKb +iOQ +aGn +aKW +aGn +aGn +aGn +aGn +iOQ +aVc +aWc +aXA +aZW +bcX +bgu +bhO +pic +bgj +bjO +vcQ +brk +bgB +bqr +buX +ibL +eqL +sAq +rrL +bqr +bFY +ucQ +qUu +jtt +cTP +bnS +pfj +bnK +hEd +mBl +nqv +blQ +iez +aaa +iez +bKv +bKv +bKv +bKv +iez +aaa +gzN +cgQ +cgQ +cgQ +aaa +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +qVU +vog +gOw +aaa +alv +alv +alv +alv +alv +alv +aQU +alv +alv +alv +alv +alv +alv +aQU +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(54,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aaa +aab +aaa +aaa +aaa +arN +aaa +aaa +aaa +arN +aaa +aaa +aaa +arN +aaa +aaa +aAd +aAd +aAd +aDu +aEC +aFQ +aSt +sve +erj +aGn +aDD +oGl +aGn +aOT +aHl +aRh +aSo +aGn +mHA +aVc +aWf +aXD +aZf +aUt +aAZ +bhO +aSX +bhm +bhm +aSX +brk +bpF +bqr +rjY +btG +rjP +sAq +rrL +bqr +bFZ +nfo +nfo +hJq +bqG +bnS +jFt +bnK +bnK +cjg +bnw +vwk +blQ +bKv +dvY +cjf +kUo +kJk +oJO +blQ +bKv +cng +fJK +rcY +cgQ +cng +cng +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +qVU +pfI +gOw +aaa +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +alv +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(55,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +amU +anG +anG +arb +asb +asb +asb +asb +asb +asb +asb +asb +asb +asb +laU +sOr +rMP +etR +hoD +aEE +aFS +aHh +gnV +fMK +aVL +jgi +krJ +aGn +aPW +aQb +aRg +aHl +aGn +rPS +aVc +doi +aXC +aZa +aIz +aNu +bhN +aSW +bhm +bhm +bmo +brl +bss +ehb +brU +jcg +qtA +oTT +pjR +bqr +bGR +cDQ +bDx +vXp +bqK +bnS +lXU +lrs +tZM +qRV +qRV +lrs +uds +tZM +qRV +qRV +tZM +tZM +qRV +tZM +lrs +qVc +iXf +ubK +qMa +vQt +skl +uBQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +fAC +pfI +mVJ +aaa +aaa +aaa +cyO +cyO +cyO +cyO +cyO +cyO +cyO +cyO +cyO +cyO +cyO +aab +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(56,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aaa +aab +aaa +aaa +aaa +arU +aaa +aaa +aaa +arU +aaa +aaa +aaa +arU +aaa +aaa +aAd +aAd +aAd +aDx +aED +aFR +aHg +aIw +aNF +aGn +aLu +jwb +aGn +aOV +aPX +aRi +aHS +aKW +iOQ +aVc +aWh +aXD +aZh +aUt +bgB +bhO +sQe +bhv +bhv +aSY +brk +boT +bqr +nmJ +btB +bvn +joq +byh +bqr +bnS +bnS +bnS +bnS +bnS +bLJ +wmY +bnK +cyp +cyp +svp +bJt +bKw +cjc +bKw +bKw +bKw +bKw +bKw +bKw +cjc +cvp +wjh +tdb +gYs +cgQ +gYs +cgQ +cgQ +cgQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aQU +aaa +fAC +pfI +mVJ +aaa +aaa +aab +cyO +aab +aaa +aaa +aab +cyO +aab +aaa +aaa +aab +cyO +aab +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(57,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +alv +aab +aaa +arX +asL +atF +aaa +arX +asL +atF +aaa +arX +asL +atF +aaa +aab +aaa +aAd +aDw +aDw +aFT +aHi +hCz +aNF +aGn +fRo +iOQ +aGn +aOU +jSe +aHl +aSp +aGn +tqH +aVa +doj +aXE +aZb +aVc +bcG +bhO +aMs +aMs +aMs +aMs +brn +bgB +bqr +bvb +btA +bvn +joq +qON +bqr +bHv +hqi +mBl +cEv +bJt +bnK +kSI +bnK +bJt +hYf +cJO +rFK +bKv +aaa +blQ +bNP +bCs +gdX +brF +blQ +aaa +cng +uQV +lNb +coL +cgQ +gta +gta +rrg +cgQ +bCf +bOd +iBU +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aaa +fAC +pfI +gOw +aab +aab +qVU +vog +gOw +aaa +aaa +qVU +vog +gOw +aaa +aaa +qVU +vog +gOw +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(58,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +arX +asL +atF +aaa +arX +asL +atF +aaa +arX +asL +atF +aab +aab +aaa +aaa +aaa +aaa +aaa +aGn +aHS +aGn +aGn +aGn +oGl +aKW +aOW +dyw +aRj +aSq +aTu +aTu +aTu +aTu +aTu +aTu +aTu +bcM +bhO +bgv +biv +bkd +blJ +brk +bgB +bqr +bvc +btH +hjH +bwM +btF +bqr +bGb +bJu +uBz +lgY +eBX +bSA +rDX +svp +svp +bnw +svp +bET +bKv +aaa +nqv +kMw +fmd +cqK +qjC +iez +aaa +cng +mVI +aVC +woj +syc +uJm +dud +jRQ +hoJ +bCf +oNT +bCf +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +fAC +pfI +gOw +aaa +aaa +qVU +pfI +gOw +aab +aab +qVU +pfI +gOw +aab +aab +qVU +pfI +gOw +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(59,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aaa +arX +asL +atF +aab +arX +asL +atF +aab +arX +asL +atF +aaa +aab +aaa +aaa +aGn +bat +aGn +aGn +aRC +aGn +bPF +aGn +tfT +aGn +aGn +aQe +aKW +aGn +aTu +aUu +aUu +aUu +aXI +aZj +aTu +bgC +bhQ +blh +blh +blh +blh +brp +bsx +bqr +bqr +bqr +bqr +bqr +bqr +bqr +bIP +hqi +blQ +thb +bnK +vaa +eBX +gOo +gOo +eBX +rXC +blK +mBl +nqv +blQ +dvY +svp +gqW +mBl +blQ +blQ +gYs +cwl +lNb +euX +gYs +cgQ +tcM +xWX +fSH +esK +xhq +bCf +iBU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +fAC +pfI +gOw +aab +aab +qVU +pfI +mVJ +aaa +aaa +qVU +pfI +gOw +aaa +aaa +qVU +pfI +gOw +aab +alv +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(60,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aMr +aaa +aaa +aaa +aaa +alv +aab +arX +asL +atF +aaa +arX +asL +atF +aaa +arX +asL +atF +aab +aab +aaa +aGn +aGn +aEF +aFU +aHj +aIH +aKW +aHl +pDr +tqX +mCx +xqv +iQq +ovu +iRA +aTu +aUz +eXr +aVe +aVe +aUr +aTu +bgD +blV +blV +bls +fMG +fMG +bnu +boW +tde +nRS +jqo +btL +cWt +vZo +mBl +blQ +blQ +mBl +nRB +svp +qiX +bKv +bKv +bKv +blQ +fDM +gqA +mEk +ezU +aaf +kSP +gqA +kIZ +ydv +fvf +btL +cFX +xzs +xzs +iBP +hwH +cgQ +rgs +kzB +bCf +lbs +mZf +msR +aic +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +fAC +pfI +gOw +aaa +aaa +fAC +pfI +mVJ +aaa +aaa +fAC +pfI +gOw +aaa +aaa +fAC +pfI +mVJ +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(61,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +alv +aaa +arX +asM +atF +aaa +arX +asM +atF +aaa +arX +asM +atF +aaa +alv +aaa +bat +aDA +aEH +aEJ +aJY +aIK +aGn +aHS +mHb +aGn +aKW +aRp +aGn +aGn +qcv +uuX +ces +eEE +tYW +lxH +aZc +aTu +aTu +aTu +bgn +xDA +bgG +blM +blM +blM +blM +blM +blM +bvq +cho +iDG +cvl +wHo +pwm +ebP +ebI +bnK +stO +bKv +aaa +aaa +nqv +blQ +nqv +blQ +bKv +bKv +blQ +bKv +bKv +nqv +bKv +bKv +cgQ +rtu +coL +lNb +wom +ygC +cgQ +cgQ +bCf +fza +bEX +muD +aic +cxX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +fAC +pfI +gOw +aaa +aaa +fAC +pfI +mVJ +aaa +aaa +fAC +pfI +gOw +aaa +aaa +fAC +pfI +mVJ +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(62,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +alv +aaa +aab +aaa +aab +aaa +aab +aaa +aab +aaa +aab +aaa +aab +aaa +alv +aaa +aII +aDz +aEG +aFV +aHk +aIH +aGn +aLu +jEV +bat +aBy +afO +aBy +aKW +bQX +aTu +aUx +aTA +aWj +odL +aVe +bdu +bgM +beP +bgz +vJv +bgz +blM +bnv +dfh +sBx +dig +dnG +blM +bwK +bnK +svp +bnK +bnK +bnw +bnK +svp +cyj +cjc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +gzN +cgQ +gYs +qov +rgR +coL +cgQ +bsi +bCf +hjR +bEX +tMs +iBU +uQe +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aQU +aaa +aab +puy +aab +aab +aab +fAC +pfI +mVJ +aab +aab +fAC +pfI +gOw +aab +aab +fAC +pfI +mVJ +aab +aQU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(63,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aaa +aaa +aaa +alv +alv +alv +alv +alv +aab +alv +alv +alv +alv +alv +alv +alv +alv +alv +aaa +aII +aDC +aEK +aFX +aHk +aHl +aKW +aDD +miW +aGn +afO +aOX +aab +bat +bQX +aTu +aUs +aVe +aVe +odL +aVe +aVe +aVe +beQ +bgz +bly +bgz +blM +bnv +dfh +cwy +bnD +bnD +boZ +bnK +cEb +bnK +bJt +bpf +vgM +bnK +bnK +bMd +bKF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cng +nsu +cgQ +cgQ +dpT +xOA +gYs +cgQ +bCf +qPt +adz +uzM +iBU +fHD +jrG +aaa +aaa +aaa +aaa +aaa +alv +alv +alv +aaa +aab +cyO +aab +aaa +aaa +qVU +pfI +gOw +aaa +aaa +qVU +pfI +gOw +aaa +aaa +qVU +pfI +gOw +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(64,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abN +abN +abN +abN +dvD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aII +aDB +aEJ +aFW +aHm +aIL +aGn +aSs +jEV +bat +aBT +aBy +aBZ +bat +nSe +aTu +aUz +aVe +aVe +mhh +aVe +bdH +aVe +beP +bgz +vJv +bgz +blM +bnv +dfh +dgU +bnD +bnD +bvs +bvs +fBj +bvs +bvs +fBj +bvs +bnw +svp +sTY +bKw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cng +eSr +wAW +cgQ +rgR +coL +tGO +sXJ +hoJ +wnR +ciI +oYC +bCf +cfJ +cwx +cBi +cBi +cBi +cwx +aaa +alv +aaa +aaa +aab +cyO +cyO +cyO +aab +aaa +aab +puy +aab +aaa +aaa +aab +puy +aab +aaa +aaa +aab +puy +aab +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(65,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aMr +aMr +aab +abN +aeT +ssf +abN +abN +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aCB +aaa +aaa +aaa +aGn +aGn +aKW +neo +aHn +aLn +aGn +aLu +vBG +aGn +aRp +aII +aGn +aGn +bQX +aTu +aUu +aUu +aUu +aVe +bab +bdx +bcQ +aTu +bgq +vxC +bjY +blM +bnv +dfh +xWM +bnD +bnD +bvs +bwP +bvs +bzu +bvs +bwP +bvs +cRE +bnw +qhr +cjc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cgQ +qiN +hCY +lNi +xhx +vZX +vZX +pJY +bGQ +uly +gsg +cmK +iBU +cfJ +cwx +qFj +cCw +cDP +cwx +aab +aQU +aab +cyO +cyO +cyO +dav +cyO +cyO +cyO +cyO +cyO +cyO +cyO +cyO +cyO +cyO +cyO +cyO +cyO +cyO +cyO +aab +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(66,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abN +jHG +yiL +wJc +abN +qdi +dma +akQ +abN +abN +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGn +mEh +aNE +xXP +aKW +jjl +aHl +aHS +szU +nky +nXN +aHS +aGn +aTf +inD +aTu +aTu +aTu +aTu +aXL +aTu +aTu +aTu +aTu +bgr +ueB +bgz +blM +bpa +bpa +bqu +bnD +btO +bvs +bwQ +bvs +bzv +bvs +bCm +bvs +bym +bvF +qhr +bKw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cgQ +sji +bzP +gYs +kQo +coL +lNb +iMM +bCf +uUe +rzr +lQp +iBU +cfJ +cwx +kJJ +ljh +ujX +tzm +aaa +alv +aaa +cyO +aab +cyO +cyO +cyO +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +alv +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(67,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abN +qXR +qQy +uFC +vSi +lXd +vSi +esV +ryo +abN +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGn +ehv +ehl +aSH +aGn +xSZ +gVb +bRY +qXL +aKW +ufN +aRA +aKW +dwT +uTe +cwG +xHs +aVg +aWk +aXQ +aZe +bbj +bdb +beR +bgz +vJv +bgz +blM +bnr +idz +fmg +bnD +bwG +bvs +bBN +iDg +byn +bGk +qKE +ciC +bvs +bnK +qiX +buk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cgQ +gYs +cgQ +cgQ +vYQ +xLv +xzs +mWq +cHR +pey +ueC +rMp +bCf +cfJ +cwx +cBj +cCq +cDU +cwx +aaa +alv +aaa +cyO +aaa +aab +aab +aab +aab +alv +alv +alv +alv +aQU +alv +alv +alv +aQU +alv +alv +alv +aQU +alv +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(68,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abN +ppV +yiL +oSm +oEG +jLf +oEG +gAt +tWD +abN +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bat +mLH +mLH +plj +aEL +dRb +tQW +aLu +aGn +aGn +oVs +aKa +aGn +aLu +dwT +aHS +dDc +uuX +xNv +uVA +fXK +nxH +aXQ +aVh +bgz +vJv +bpc +blM +bnA +eqO +hfu +azb +bRL +bzQ +bBP +tlC +bEz +bDv +gdQ +bJx +bvs +bnw +qhr +cjc +aaa +aaa +aaa +aaa +aaa +aaa +bWP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +gzN +tUd +bIH +gIU +qSB +krw +rvp +hsD +bCf +izV +eUk +oRH +lnV +cyo +cwx +kJJ +jIM +kJJ +cwx +aaa +aQU +aaa +cyO +aaa +aab +aQU +dQR +dQR +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(69,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abN +tXG +cHL +tia +lxO +eGU +mgF +ouo +gvh +abN +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGn +bat +aGn +aKW +aGn +aGn +jGG +aMy +aNB +aGn +aKW +aGn +aGn +aGn +aGn +aLu +hhz +aVi +aWi +uyY +aXQ +aXQ +aXQ +beR +bgz +vJv +bki +blM +bnB +bnD +bqv +bqv +mia +bvs +bvs +bvs +bvs +bvs +bvs +bvs +fBj +bJt +tSN +blQ +aaa +aaa +bPT +bRI +sft +peF +sft +bUg +bPT +aaa +aaa +aaa +aaa +aaa +gzN +klN +rhG +cgQ +cgQ +cgQ +tGO +sCF +vdx +bCf +vdx +ejH +cwx +cyn +czH +odO +czJ +cDV +cwx +aaa +aab +aaa +cyO +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(70,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +abN +rAe +lKq +lKq +eFY +hhX +eFY +lKq +lKq +abN +abN +abN +abN +abN +abN +abN +abN +aab +aaa +aab +aaa +aaa +aaa +doE +doE +dYX +fSi +fSi +tKA +dLo +rEh +aHl +aLu +aHS +aNA +aNA +aGn +aKb +aHl +jKr +aVi +aWn +uyY +aXQ +aXQ +bde +aVi +bgz +ghQ +bkb +blM +bnC +bnD +bqw +bqx +mia +bzU +msU +bzA +blM +wRz +wRz +jZu +bKt +wBH +kJs +mBl +aaa +aaa +bKB +bRK +bTq +bxb +xSH +bYw +bKB +aaa +aaa +aaa +aaa +aaa +cgQ +vjf +czR +lQE +tLs +gYs +sCW +sCF +mjE +bCf +kwZ +ezf +cwx +cyb +czQ +tTz +pgE +cDL +tzm +aaa +aab +aaa +cyO +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(71,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aaa +xPE +rRa +rLK +siM +guy +uVj +pMP +vPz +eei +xJa +pji +wHa +qjs +kDl +oXo +jNY +abN +xPE +abN +xPE +abN +aaa +aaa +aaa +doE +nJV +oxe +wwc +uJB +uKQ +sAy +aHS +aHS +aHl +aHS +aLt +aKW +qky +aHS +uii +aVi +aWm +uyY +oUW +aXQ +bcT +aVi +bgz +nWm +fZX +sAm +srB +srB +fwf +bsg +nVB +eJI +byp +cns +blM +dsU +bCp +cNA +blQ +bnw +qiX +bxb +bKB +bKB +bKB +bRI +bTr +bxb +bTr +bUg +bKB +bxb +bKB +bKB +bxb +aaa +cgQ +wNT +qcZ +vkC +bCg +cgQ +puo +vKe +fGI +bCf +qCJ +dTL +cwx +cyc +czJ +feA +cCz +cDX +cwx +aaa +aab +aaa +cyO +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(72,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xPE +rAe +rAe +lKq +xnT +anf +krG +anf +gtx +xDw +avm +xhW +exh +hjX +orU +uVr +rAe +luh +luh +vON +xPE +aaa +aaa +aaa +aaa +aGn +bat +aGn +aGn +bdK +mDs +rPV +qYJ +fSJ +wbV +klh +aGn +qwM +aHS +isZ +aVi +aWo +uyY +aXQ +bbm +bdg +aVi +vLB +jNl +oll +bkx +bnD +bnD +bqw +bqx +rXm +bvv +bBQ +bzA +blM +cRK +bCo +bsf +blQ +bnw +ozI +bxb +bPY +oWJ +bNR +bRR +bNT +bOg +bNR +bYy +nCa +noq +nCa +nCa +bxb +aaa +gzN +cgQ +gzN +gzN +cgQ +gzN +cgQ +sCF +tdb +vdx +bCf +bCf +cwx +cyd +czK +mqG +aag +cDZ +cwx +aaa +aab +aaa +cNM +aaa +aab +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(73,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xPE +hUX +wEP +kBe +hDl +hDl +vWw +ado +lZS +xDw +qAH +hCs +kTP +mzL +uVr +orU +lKq +asg +lKj +jAz +xPE +aaa +aaa +aaa +aaa +aaa +aaa +aGn +aIQ +eyB +aPc +aGn +aKW +aGn +aHS +uLu +aLu +aGn +aKW +cig +aVi +aWq +uyY +aXQ +aXQ +bdh +aVi +bgz +vJv +oll +blM +bnF +bpd +bfc +bfc +rXm +bng +blM +blM +bvq +blQ +blQ +iZp +blQ +lKF +lsL +bxb +bPX +bKz +bPO +bRR +bKz +byw +bTu +bYx +oWJ +qMY +oWJ +sFm +bKB +aaa +aaa +aaa +aab +aab +aab +aaa +cng +vKe +coL +tGO +nXK +ygC +cwx +cye +oQB +iKU +uAw +uhh +tzm +aab +aab +oKx +aPd +oKx +aab +aab +aab +cSU +qsQ +qsQ +qsQ +cSU +cKr +cKr +cKr +cSU +cKr +cKr +cKr +cSU +cKr +cKr +cKr +cSU +cKr +cKr +cKr +cKr +cSU +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(74,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +abN +xPE +lKq +lKq +lKq +lKq +oGf +vWw +haz +hKc +jIX +fcd +hIc +ado +krG +asi +atA +avg +awS +tRw +abN +hTu +hlG +akQ +abN +aaa +aaa +aGn +bat +bat +aGn +aLk +hrm +dyh +wqh +lpV +aHl +aHS +aLu +jKr +aVi +aWr +uyY +aXQ +aXQ +aNv +beR +bgz +vJv +bkf +blM +bnG +eqO +azb +azb +vsr +nMT +blM +fcH +blQ +bJt +rEx +sDy +ouJ +faB +wKM +bNH +hyQ +kPV +byj +gSN +kbg +tBQ +bKz +bKz +byw +djL +bKz +vHV +bKB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cng +gGR +gQK +oQN +fOP +uYB +cwx +cyf +czJ +cBn +cCD +cDO +cwx +aaa +aaa +oKx +osy +oKx +aaa +aaa +aab +cSU +cSU +cSU +cSU +cSU +cSU +cSU +cSU +cSU +cSU +cSU +cSU +cSU +cSU +cSU +cSU +cSU +cSU +cSU +cSU +cSU +cSU +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(75,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abN +vMV +gjP +htR +lKq +lKq +fct +ppO +poe +mKG +jts +exh +ado +anf +eZu +lKq +lKq +rAe +rAe +lKq +mfS +fjM +ftm +abN +abN +aaa +aaa +aaa +aaa +aII +dEG +aRg +aIx +aJX +nIM +maP +cHG +aXZ +gTH +aVi +aWp +pSk +tBA +pRh +bgQ +epp +mTT +kRT +oll +blM +bnH +bnD +bnD +bnD +bwG +bsk +blM +rzw +blQ +bua +gFU +hIP +htV +mwL +bxb +bxb +bMq +ojT +bKz +bRR +bKz +bKz +vcS +bHh +bHh +bKz +bKz +vHV +bKB +aaa +aaa +aaa +aaa +aaa +aaa +aab +gzN +cgQ +gYs +cgQ +xLj +oRC +cwx +cwx +cwx +cwx +cCC +cwx +cwx +cvp +cPu +oKx +cmc +oKx +oKx +aab +aab +cSU +qsQ +qsQ +qsQ +cSU +cKr +cKr +cKr +cSU +cKr +cKr +cKr +cSU +cKr +cKr +cKr +cSU +cKr +cKr +cKr +cSU +cSU +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(76,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abN +oij +uLp +uLp +hpP +hld +llj +gsQ +ydH +vMv +ydH +nln +ado +anf +wjV +lKq +qen +xBl +twu +aEO +jkw +avf +aEO +wkg +abN +abN +aaa +aaa +aaa +aII +gMa +qaI +dyh +aJX +gvi +xSt +aHS +aKb +aNx +aVi +aWt +aXQ +aZr +bbp +bdk +beR +bgz +vJv +oll +blM +bnI +bnD +bnD +bnD +knY +bAe +blM +fmd +blQ +bET +aXX +rXH +xWJ +bxb +bIV +bQf +bKz +ojT +bKz +kkT +nAi +nAi +nAi +nAi +nAi +vmd +bKz +nxm +bxb +aab +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +cgQ +cyg +cqs +ecW +oiM +vZX +auX +jWV +vjY +nZI +coL +coL +cPu +cLy +eez +kIa +uLO +aab +cSU +cSU +sdw +aab +aaa +mjO +aaa +aaa +aaa +oZe +aaa +aaa +aaa +oZe +aaa +aaa +aaa +kxr +aaa +aab +dpm +cSU +cSU +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(77,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abN +qmB +mgZ +uLp +ebh +qWR +fct +anf +ado +sDL +anf +ado +anf +ado +asj +lKq +fMM +hAh +xBl +aEO +aAr +avi +acR +fMM +sSX +abN +abN +aab +bat +bat +soX +aOn +aGn +aGn +aMA +mMp +aSu +aJU +aSt +aXM +aVj +aVj +aVj +aVj +aVj +aVj +bdq +iTE +blP +blM +bnJ +bpe +bqz +btT +bsk +bnD +blM +jQQ +blQ +gVs +jDC +lvM +bFd +bxb +bIU +bQf +bKz +wQv +bKz +bKz +bKz +bXe +bHh +bHh +bHh +byw +byw +qot +bxb +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +gzN +kSp +fCJ +lfC +fCJ +eXA +vUq +fCJ +tTf +vvd +vZX +pJY +cPu +tAm +nps +fXL +cPu +aab +cSU +iIG +dpO +cPn +aaa +cTn +cVB +cVB +cZF +cVB +cVB +hft +cVB +cVB +hft +cVB +cVB +rDS +aaa +qJO +afT +cSU +cSU +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(78,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +abN +hUC +mgZ +nFc +vOD +qWR +xPa +ado +anf +sDL +anf +eBy +eBy +ado +asl +lKq +avk +fMM +fMM +fMM +twu +avi +twu +eES +fMM +feU +abN +aaa +aGn +aLB +aPa +aKd +wTp +aaa +aQg +kpO +gSY +aaa +aab +aaa +aab +aaa +aab +aaa +aaa +beL +bgA +vJv +oll +blM +blM +blM +blM +blM +blM +blM +bvq +blQ +mBl +cRC +xUg +mBl +blQ +bxb +bIY +bQf +wZA +wPF +bKz +bKz +byw +byw +bKz +bKz +bKz +byw +wuP +ljI +bxb +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cgQ +oMc +cqs +cvp +cvp +cyk +cvp +sXJ +cqs +gYs +xLj +gfC +uLO +mxn +eZM +iCq +cPu +aaa +cSU +iIG +cRA +sdw +aab +gAm +uwH +iWP +diq +iWP +iWP +diq +iWP +iWP +diq +iWP +egM +gAm +aab +dpm +cRA +jRW +cSU +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(79,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +abN +abN +laL +spo +tvr +uGG +nDZ +nDZ +nDZ +wro +aja +akG +anN +mIM +aqu +atO +avj +twu +jkw +fMM +aAq +aBI +cUL +aDF +kSK +aGa +abN +aaa +aMA +aMA +hyE +aMA +aMA +aaa +aQg +wle +buN +aab +aUE +aLH +aUE +aUE +aUE +aUE +aab +beL +bgA +vJv +oll +blQ +cFP +bnK +cRC +bCs +bJt +bnK +bnw +svp +bnK +dCN +pvp +blQ +bKH +bxb +bIX +bQf +bKz +ojT +ozC +ojs +vAZ +vsR +ojs +ojs +cKV +ojs +sdm +mIA +bxb +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +gzN +cCo +cvf +cyk +lvs +snE +cvp +cgQ +goJ +cgQ +cqs +euD +cPu +cPu +gim +cPu +uLO +aaa +cSU +cPG +cVm +sdw +aaa +gAm +fJu +hke +aab +aab +bvr +aaa +doE +aab +aab +orA +fIU +gAm +aaa +dpm +nSm +iLx +cSU +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(80,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +abN +iPz +nYZ +rhk +adj +sqb +fxP +oAs +lUa +ajg +adN +vMJ +sSf +asr +atS +avm +jkw +eES +jmB +sDL +aAr +twu +neO +twu +xNV +abN +aab +aMA +aLD +aMS +aOp +aMA +aMA +aMA +uHy +buN +aaa +aUE +aVk +aWu +aXO +aZk +aLH +aaa +beL +bgA +nkX +uzD +dDk +vWa +vWa +jpc +tWI +iws +wLq +hsk +rSI +cqQ +pvp +jnc +vhD +fea +bxb +xKE +snx +bKz +ojT +ceE +bYM +bYM +mzC +jDn +xJi +bYM +aau +fnX +bYM +bYM +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +gzN +mFO +why +cvp +vxu +xHy +cvp +dEq +cqs +cgQ +ygC +euD +cyk +qqB +cCo +cBr +gzN +aaa +cSU +cRz +cRA +sdw +aab +dei +cWf +aab +aaa +aaa +doE +aab +doE +aaa +aaa +aab +cRk +mha +aab +dpm +cRA +dfA +cSU +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(81,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +abN +oWe +uLp +ofW +abN +abN +abN +abN +kXd +axs +pZj +pZj +anf +hNf +adj +avl +cUL +ayx +gMl +kkv +aEO +fMM +avi +aEO +sFE +abN +aaa +aGi +aLC +aPi +dEb +aPu +aMA +tHO +wle +buN +aab +aUE +aWs +sDU +aWs +aZi +bbq +beL +beL +pvo +ueB +oll +blR +blR +blR +blR +bsc +rXH +svp +mwL +bxb +bxb +bxb +bxb +bxb +bxb +bxb +bIZ +kTU +bKz +ojT +prX +bYM +bPP +bXf +bYr +nBz +xoE +lVy +nxg +tZo +bYM +aaa +aaa +aaa +aaa +ckk +aaa +aaa +aaa +aaa +cgQ +mut +kSn +eMu +lXG +jOA +cvp +efk +aeE +gYs +nXK +gfC +cvp +cgQ +oMc +daY +cgQ +aab +cSU +wZp +gBF +sdw +aaa +gAm +fJu +aab +aaa +doE +doE +doE +doE +doE +aaa +aab +fIU +gAm +aaa +dpm +jRj +cAN +cSU +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(82,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abN +abN +abN +abN +abN +twL +wOM +abN +fRp +anf +ado +oUV +cEV +sgt +lKq +avo +kcW +fMM +ouO +akL +fMM +xBl +avi +jkw +vEA +abN +aab +aGi +aLG +aMU +aOq +sZg +aOr +qhC +aXF +uaY +aaa +aUE +aVm +aWw +civ +aXP +bbf +bcZ +beO +rlS +fDa +oll +blR +bqC +bpb +blR +blT +rXH +bnw +bxb +bDI +tFZ +bBk +bCv +bEi +bFl +bIw +jsF +fxu +eIm +gUO +prX +bYM +pRD +bRW +qIg +fav +xRB +sCm +tSx +fPF +bYL +aaa +aaa +bYP +bYP +kJQ +bYP +bYP +aaa +aab +gzN +rbX +dlZ +cvp +tDB +jsv +cyk +cqs +uMl +cgQ +cgQ +wsD +gYs +sKs +cCo +gta +cgQ +aab +cSU +cSU +cRz +dpO +doE +gAm +fJu +cst +doE +doE +uwH +iWP +egM +doE +doE +doE +fIU +gAm +doE +cRA +dfA +cSU +cSU +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(83,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xMG +ybN +utC +abN +hqC +ado +oUV +ang +lKq +ass +lKq +lKq +lKq +twu +avf +aAr +aBK +iZI +xKv +msC +abN +abN +aaa +aMA +aLF +aOo +aOo +fHs +aMA +wnG +kpO +wHF +aab +aUE +aVl +mWf +aWv +aWv +bbq +beL +beL +bgA +vJv +iPh +blR +brz +bnz +bui +blR +hIP +bnK +bxc +bKz +lHS +bGY +bKz +fPx +bFp +bxb +bMi +bKz +bKz +tBE +bIS +bYM +bRo +iQB +nlc +bVp +khl +qmH +kKg +hyR +fFF +aaa +aaa +cam +xHr +qat +qat +cam +aaa +aab +cgQ +dDy +gYs +cyk +tRE +sEl +cvp +yhY +bLV +oWV +cgQ +euD +cgQ +cLF +nJz +lNb +gzN +aab +cSU +cSU +cRz +cRA +aab +dei +cWf +aaa +aab +doE +fJu +qPa +fIU +doE +aab +aaa +cRk +mha +aab +cRA +dfA +cSU +cSU +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(84,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abN +lfn +gxb +lTB +fwa +ado +asi +lKq +rAe +aQl +aQl +avC +abN +hTu +azs +akQ +abN +hTu +azs +akQ +abN +aaa +aaa +aMA +aLC +aMW +chX +aPj +aMA +aMA +kpO +wHF +aaa +aUE +aVn +aWx +aXR +aZq +aUE +aaa +beL +bgA +cvW +eyi +czN +nhO +ijw +iYO +blR +rXH +bst +bxb +byv +mwY +bKz +qWP +rrF +bFq +bxb +bxb +bKB +bVl +kLn +bKB +bYM +bYM +mzC +jdi +bYM +bYM +vnZ +gpa +uuh +bYM +aab +aaa +cam +cnm +mdy +lxA +cam +aaa +aab +gzN +tUi +mNR +cvp +cvp +cvp +cvp +fwy +kjM +hsO +uMl +deP +cgQ +cgQ +rbX +cdG +gzN +aab +cSU +cSU +cRz +lgQ +doE +gAm +fJu +doE +doE +doE +xvT +rWS +tJE +doE +doE +cZh +fIU +gAm +doE +cRA +dfA +cSU +cSU +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(85,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xRI +abN +rcm +abN +abN +fBw +krG +hNf +lKq +eOI +aQl +arH +aPi +axb +hML +aaa +aaa +aaa +aaa +aaa +aab +aab +aaa +aaa +aGi +aLD +aOo +sym +aMA +aaa +aQg +wle +wHF +aab +aLH +aUE +aUE +aLH +aLH +aUE +aab +beL +bgA +vJv +oll +blR +iFm +rEs +cEJ +blR +niJ +bCj +bxb +bKz +bKz +bBj +bCz +bKz +bKz +bxb +bIW +crC +hTA +lPN +bPZ +bRM +bTA +bVr +bWW +bYG +bzJ +ixy +opY +bYM +bYM +cam +cam +cam +cGE +esD +pzr +cam +gzN +cgQ +cgQ +hIY +vOy +lAb +vBH +isE +rgs +uMl +wXg +jQI +kjG +euD +coL +gYs +rbX +coL +cgQ +aab +cSU +gOm +cVl +sdw +aaa +gAm +fJu +aab +aaa +doE +doE +doE +doE +doE +aaa +aab +fIU +gAm +aaa +dpm +dqL +dsL +cSU +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(86,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abN +tYe +ajy +vpR +kok +anf +asi +rAe +aqP +asz +aue +avE +axb +ayB +azu +aAv +axb +aaa +aaa +aGi +aMA +aQg +aMA +aMA +aMA +aOs +aOr +aMA +aaa +aQg +kpO +lAD +aaa +aaa +aab +aaa +aab +aaa +aab +aaa +beL +bgA +vJv +bkf +blR +bnE +rEs +blR +blR +rXH +cho +bxb +bzB +bBj +bCu +bDR +bKz +bKQ +bxb +bJi +bUa +jox +pHG +sHs +sEO +sEO +cUq +pJV +bYI +bzJ +cbI +fGH +eKd +wQa +cES +kMd +cnS +eKd +rWn +cqA +cam +bvo +coM +cgQ +oZr +ggr +opg +kdL +qwJ +cgQ +vRG +clF +vyw +sJC +rMq +yhF +cgQ +cOx +vxS +gzN +aaa +cSU +cRz +cRA +sdw +aab +dei +cWf +aab +aaa +aaa +doE +aab +doE +aaa +aaa +aab +cRk +mha +aab +dpm +cRA +dfA +cSU +aab +aaa +doE +cXZ +doE +doE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(87,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xMG +pgW +lJV +abN +jSq +qFw +hNf +abN +abN +abN +abN +abN +axb +ayz +azt +aAu +axb +axb +aaa +aMA +aGe +aHr +aIR +aGb +aMA +oap +aQl +aMA +aMA +aMA +aRl +aSu +aMR +aSu +aMR +aSu +aSu +aMR +aSu +aSu +aSu +bgE +vJv +oll +blR +bqA +bsI +blR +bsn +sjl +mBl +bxb +bxb +bxb +bxb +bxb +bxb +bxb +bxb +bzJ +bNM +bQj +xgn +bBn +bBn +bVJ +sBS +bBn +bYH +bzJ +cbH +kpA +cfb +jVE +cfb +kQY +qat +tRG +xTR +rJo +cam +ctN +cMr +gYs +reE +qyy +gwb +xab +ryN +cgQ +jQI +wsD +lnh +kym +cgQ +aOZ +kLd +rEZ +cPU +gzN +aaa +cSU +cUd +cVm +sdw +aaa +gAm +fJu +lht +aab +aab +doE +aaa +wMN +aab +aab +dhY +fIU +gAm +aaa +dpm +nSm +tCH +cSU +aab +aab +dgc +bUy +dgc +doE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(88,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dOd +aab +aab +dOd +aab +aab +qws +aaa +abN +vxy +uWf +abN +qnW +txj +rgl +oUI +jgx +pbx +aug +avG +aCH +iqf +yjQ +hLv +plW +axb +axb +aMA +aGj +aHs +aIT +aJO +aOr +qCH +oap +aLM +aMA +aQj +aLr +bSM +oPS +uMU +oPS +bSM +bSM +bSM +oPS +bSM +vpE +mTT +vYS +oll +blR +brE +bsQ +blR +bnK +rXH +blQ +bxe +byy +byy +qnq +osB +bDU +bzJ +bHc +bzJ +cjq +bMx +bTv +bBn +sxS +bBn +hZO +eLe +aRX +cas +cbK +kum +cfm +dNi +cfm +cfm +gAk +unR +uXM +sou +cam +ldf +cPj +cgQ +wkQ +owJ +jSG +tUi +smx +rgs +nOx +jjD +tGO +cgQ +cgQ +dxK +mFO +coL +qhK +cng +aaa +cSU +bIK +ciz +sdw +aab +gAm +fJu +afO +aaa +aaa +doE +aaa +afO +aaa +aaa +afO +fIU +gAm +aab +dpm +axO +bWL +cSU +aab +aab +dgc +hRS +dgc +doE +doE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(89,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aqI +aqI +abN +abN +abN +abN +nYs +xJO +ams +abN +aqQ +iag +auf +avG +aCH +ayC +azv +aBN +aBN +nQT +axb +aMA +aOr +aMA +aIS +aPj +aMA +aMA +aOs +aMA +aOr +qUp +tkw +aMA +aMA +aOr +aMA +aMA +aMA +aMA +aMA +aMA +aMA +bgJ +ppo +epu +blR +blR +blR +blT +blQ +bny +blQ +bxd +byk +byz +bzG +bzJ +bzJ +bzJ +bAF +bDX +sBS +bDX +bSK +bPV +bRN +bBn +itH +bBn +bYJ +bzJ +cbJ +scB +cfc +bso +cjU +cko +cnT +qat +mii +cno +cam +fMn +tQa +hMI +fmT +fDd +cgQ +dXC +piK +cgQ +cqs +gfC +ygC +cwz +tGO +pEu +cCo +coL +cwl +cyk +aaa +cSU +cSU +cVn +hZR +aaa +rmT +gKn +dkQ +dkQ +dkQ +dkQ +cHN +dkQ +dkQ +dkQ +dkQ +fwF +iRz +aaa +cXa +ckG +cSU +cSU +cSU +cSU +dgc +cWW +dgc +dgc +doE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(90,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aqI +ayo +atN +rCT +kQb +auc +qNk +wLF +pzZ +abN +aqS +kEK +auj +aCH +aCH +ayD +axE +aAy +aBP +aCG +axb +aEQ +aGl +aQP +aPi +aKc +aLJ +aMY +oap +aLK +aMA +aQh +wQO +aMA +baa +bbH +aMA +bgs +bhz +bkT +cGR +cYH +dim +bgz +vJv +bgz +blW +blQ +bpl +mwO +bsm +iMe +blQ +bxd +bDN +bBn +lWU +bIG +bJE +bKI +odl +qXB +bNW +bzJ +bzJ +bQe +bDX +bDX +cbz +bzJ +cgQ +cgQ +cgQ +cgQ +cgQ +cgQ +cgQ +cgQ +cog +nNh +coP +cqG +cam +cwB +cgQ +gYs +cgQ +cgQ +cgQ +aeP +lED +sHW +fOP +lGd +cqs +sJQ +xJR +wsD +oMc +wcG +cyk +cyk +cyk +cSU +cSU +vDt +cSU +cPn +aab +afO +cLC +cYQ +cYQ +cYQ +vqp +cYQ +cYQ +cYQ +cLC +afO +aab +qJO +cSU +bYQ +cSU +udO +eZi +cSU +bQq +mBZ +uOG +dgc +dcq +aaa +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(91,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +hoB +nsq +aBA +jeQ +afa +vtj +auc +hiO +uGA +dFG +anq +qDn +pOg +auh +aCH +dKh +wcC +azw +qxZ +aBO +aCF +axb +aEP +aGk +aHt +aIU +aJW +hLB +aMX +tDS +aLM +aMA +aQi +xGy +aOs +aZZ +bbG +aMA +bfM +aYn +iTw +wJf +rmV +dil +kll +hzj +bgz +blX +blQ +bsR +buj +vfW +sTU +blQ +bxd +bDN +bBn +lWU +nPG +lFv +lFv +oJF +pCW +qpw +bzJ +bOt +bHi +bUU +bUU +itH +bBn +cgQ +cao +iis +sXJ +nrD +ckx +cnX +cgQ +cgQ +cgQ +xzY +cam +ckM +lUN +tzE +cyg +cgQ +kyh +mCA +gUp +egK +cgQ +coL +vKe +lNb +raP +ykF +gfC +cCo +gAF +cgQ +jUM +sCW +cSU +wQI +vgl +cSU +cSU +cYQ +cYQ +cYQ +cYQ +hvR +moS +dlk +moS +dmT +cYQ +cYQ +cYQ +cYQ +cSU +cSU +fdz +jeb +pgT +qVp +cSU +bQq +ujG +rmu +xvS +dgS +dgS +dgS +bSf +dgS +dgS +dgS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(92,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +bcL +fvy +nwO +afa +ank +auc +akm +lJf +anu +kQn +paK +wLY +aul +aCH +xVC +wBy +azz +vCM +aBS +aCI +axb +aFc +aGo +aHu +aYc +aKf +aLL +aMY +mNX +aLM +aMA +qNx +xGy +aOr +bad +bbJ +aMA +bgx +bhF +bkW +cGS +cYK +dim +bgz +vJv +bgz +bql +blQ +bsZ +eJY +bqJ +bwA +blQ +bxf +bzJ +bzI +nHx +lmq +lmq +lmq +ekd +lmq +lmq +bVk +lmq +lmq +nIU +jox +huD +ybT +cgQ +cap +kzf +kzf +eRn +tgh +rhM +gzN +cnX +coL +qlt +aeG +sOK +ijp +yfY +sCW +cgQ +hRN +egK +cJi +coL +cgQ +qov +txR +lXR +ghP +rpV +pNe +laq +nzx +qAG +nzx +cYn +cSU +cEM +rTZ +cUu +cTh +tbU +tbU +tbU +cYQ +xsP +cWO +cPV +cOH +cwN +cYQ +tbU +tbU +tbU +cTl +cUu +sLe +cEy +wox +sdE +cSU +bWT +cZg +wJg +dcq +dzg +liX +qKX +xQL +coU +wHZ +dgS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(93,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dOd +aaa +aaa +aaa +aaa +aaa +aqI +auy +aeF +afa +auc +auc +gWZ +qkA +uFa +lKq +lKq +wVH +lKq +aCH +aCH +aCH +azy +aCH +aCH +aCH +axb +aET +aPt +aPt +aIV +aKj +aLK +aOr +dyn +aOr +aMA +aPi +nvO +aMA +bac +aSA +aSA +aSA +aSA +aSA +aSA +aSA +aSA +eLi +vJv +bgz +blQ +mBl +qLD +gpH +lPT +sZe +blQ +bxd +bzJ +bzH +bBo +bBn +qus +box +bBn +bKC +bFA +bMA +bFA +yaa +dvC +bBo +bBn +bBn +cgQ +lzN +uNj +lav +syS +rvp +oFK +bKs +rvp +yhF +eOQ +cqs +cqs +fdF +gfC +coL +cgQ +dIh +cqs +mCA +cqs +gYs +xOA +aai +cqs +iFh +tGO +cKb +cOz +cOz +cKb +cPW +mSo +cSU +cSU +dGn +cSU +mfv +cPr +cQi +dqm +rWU +reu +nhm +aDd +ePY +pkX +rWU +cPr +cQi +dqm +mfv +cSU +dbZ +cSU +kvn +jVD +cSU +ddt +gKF +dhL +otr +dzg +ncY +irV +irV +irV +qEo +bSf +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(94,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +bcL +azV +ekB +afa +agk +aoh +tXE +hgU +xAn +wrj +aqX +axw +atg +fNQ +gVE +nsZ +oSF +ayG +gVE +nlK +aqI +biL +aGp +aHv +aSu +aKh +aLM +aMZ +xha +jEE +uJq +jEE +eUA +aMA +aSA +aSA +aUF +aSA +bhH +blf +cGV +cYN +aSA +djO +fuz +bks +blQ +iam +xMa +con +gly +bwz +blQ +bxg +bzJ +bzK +bBp +bCE +bEf +bFy +bHn +bzJ +ccY +bzJ +bSQ +bUp +dyA +bBn +bVt +bWU +cgQ +cat +qaq +lpP +qQb +cqB +syp +cgQ +wFR +gfC +eGZ +pDZ +xLv +cJa +qFN +ryN +gYs +cgQ +cgQ +tPf +qAg +cgQ +cqs +aai +lNb +mFO +cKb +cKb +sYr +efD +cKb +cKb +mSo +cSU +cut +ybL +ftt +cfo +cfo +fWk +vrF +rMZ +cKK +xwS +qAZ +ePY +nlj +khQ +cyy +scM +cfo +cfo +dDB +bTa +cSU +cSU +cSU +cSU +bQq +ddr +ddr +oSG +dzg +dpY +lEM +cRa +iqq +wZe +erN +rkl +bFP +bFP +bFP +esJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(95,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aem +afa +myQ +nvy +agZ +xvo +eTV +auU +auU +tZx +auU +xLu +auU +auU +auU +tZx +eSw +xNr +npW +sAM +aDH +aqI +aAm +aAm +aAm +aEl +aEl +aEl +aOv +aEl +aMY +aPi +smu +aQj +aSA +aTv +aTx +bgK +vtO +bam +cGT +rBx +iIt +bgP +pBf +bkq +blQ +blQ +blQ +blQ +blQ +blQ +blQ +suR +bzJ +bzJ +bzJ +bzJ +bDX +bDX +bDX +bzJ +ccZ +bzJ +bDX +bDX +uxt +bPW +bDX +bDX +cgQ +cgQ +scY +pqG +cgQ +cgQ +cgQ +cgQ +gzN +dxK +xQB +cgQ +rgs +gxl +rgR +coL +coL +sCW +cgQ +gYs +cgQ +cgQ +lNb +wrk +cVR +mFO +cKb +cMy +cNG +kNS +iWw +cKb +pUy +ntD +cTM +qrr +pAx +cTM +cTM +ulX +rnW +cSU +vuK +ePY +vqt +ePY +diV +cSU +feH +dmL +dmL +dmL +cui +cxd +cSU +gnB +jGR +hea +drh +ddr +ddr +dzg +dzg +bOE +dos +bVj +cIs +cWm +dgS +dgS +dgS +dgS +dgS +rsv +doE +doE +doE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(96,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aqI +aeI +qOj +afa +afV +wyJ +iwJ +akY +arA +okB +anT +ars +anT +arA +ave +wHW +anT +ayG +azH +ago +aDJ +aqI +aGr +aHx +aOB +pBh +aNJ +aKr +uXd +aEl +aEl +lQx +xGy +aQl +aSA +aTy +aUH +aVr +efl +xKc +cGZ +rBx +iIt +bgP +pBf +bgS +dnN +beu +bun +bun +bun +gzl +bun +bxi +urU +bzM +bBq +bCF +bEj +bEj +fVq +bMn +bEj +bMJ +bOw +bOw +rWZ +bOw +bOw +bOw +bYO +eVK +bOw +bOw +bOw +bTk +cgQ +cST +cgQ +rMq +qSB +rvp +sPF +tCS +pEY +eWK +cNB +eWK +cqT +cme +tNg +vPr +cNB +iYH +cKb +cLz +cKb +rXS +dmI +dmI +cOr +cKb +cKb +cSU +cSU +cSU +cSU +cSU +eui +fsI +fbn +cSU +nWM +dmE +tge +dmE +cGU +cSU +fko +dmL +snN +cSU +cSU +cSU +cSU +hea +hea +hea +ddr +dgq +nIX +rix +wHB +rPd +mms +nMz +bFN +rzy +pUp +wii +pUp +oQe +dgS +dgS +dgS +dnx +doE +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(97,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aqI +aeH +auV +afo +agk +wyJ +iwJ +ajp +aIo +aIo +aqV +asD +alc +aIo +aIo +aIo +aIo +aIo +aIo +aCK +aDI +aAm +aGq +aHw +aOB +nUh +aLN +nUh +uXd +aOz +aHC +aEl +wQO +aPi +aSA +gZc +lwg +bgL +bhI +xLQ +nME +cMz +div +jZx +xvG +bQs +bqq +bQs +bQs +bQs +bQs +bpm +bQs +nmc +htY +bDO +dWs +bDO +bDO +bDO +dZs +bDO +wDV +dCV +uuu +tkD +mZn +tkD +tkD +tkD +tkD +lQL +tkD +cfh +bNx +cgQ +cgQ +tGO +cqs +cqs +tGO +cqs +lNb +iHI +lSa +pxL +pxL +pxL +jYQ +aVC +pxL +cqF +aVC +xuI +cWD +gtB +cdQ +cYU +cYU +cYU +cYU +dmH +ere +cQm +cSU +cVi +rna +tdf +cSU +cmg +cUz +cSU +diK +bpn +djs +bpn +diK +cSU +uVu +jwg +sSb +jBn +cYv +dqX +dqX +dqX +dqX +dqX +dqX +djf +nTQ +dzg +wSU +cZb +tSF +qfy +hOA +daX +xpV +bOM +pcu +nZW +fyR +cPT +fZy +iLg +doE +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(98,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aMr +aMr +aMr +aab +jMx +akZ +akZ +goy +fMR +goy +goy +agq +aid +aty +aIo +aoa +aKw +asO +fpa +avQ +axp +ayH +azB +aAE +aIo +aDb +ykw +aBn +aGs +aHy +aOB +eNs +aLQ +aKl +uXd +aOB +aRP +aEl +wQO +biE +aSA +aSA +aUF +aSA +bhP +bmk +qvo +cZa +aSA +djW +lbn +bgS +brq +bnP +bnP +bnP +bnP +xPg +bAz +bxk +cZj +byF +byF +byF +byF +byF +cYP +bWS +hiw +cdI +bQh +ike +bRZ +bTy +bTy +bYX +bYR +caw +bTy +pij +dQe +cyH +fCJ +mzj +jva +mzj +nKv +eXA +eXA +cRL +cAK +cwl +wFR +fnV +cwz +sXJ +sCW +cgQ +coL +clr +cKb +mNd +mVP +cJx +deG +cJx +cJx +vcX +pjs +xmW +cSU +rYt +vLT +vjx +lmM +pon +gwx +ddG +cPk +cQj +deh +cQJ +nsK +dTF +sAe +dkH +rZd +djb +dcq +xCz +sOi +skh +jAY +bWT +ddr +wzQ +ddr +dzg +mpV +cQS +fDP +nko +bOu +nkP +pUp +hhV +pUp +lMN +dgS +dgS +dgS +dnx +cTr +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(99,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +akZ +ufw +hEu +iyY +wsY +goy +ago +iwJ +atg +qri +anZ +aqY +asN +asN +dvv +asN +asN +aSv +aKs +aCb +aDL +ykw +aFh +aOB +aOB +aOB +nUh +nUh +nUh +uXd +aOB +aRM +aEl +xGy +aQl +aPi +aSA +aSA +aSA +aSA +aSA +aSA +aSA +aSA +djV +wjx +bkv +bmb +bmb +bmb +bmb +bgP +xPg +bAy +gaY +gaY +gaY +ehi +ehi +ehi +ehi +gaY +gaY +upp +bKJ +gOK +hVD +hVD +hVD +hVD +hVD +phG +bKJ +qIO +eJL +cfi +cgQ +smS +coL +lNb +lNb +cSz +lNb +cyg +gYs +gzN +cgQ +bnT +bnT +gzN +bnT +bnT +cgQ +coL +cOh +cKb +cKb +cOy +wzE +cNZ +cLd +cLd +pUS +vLq +rgM +cSU +dgN +daG +cVh +cVb +ikS +bzm +dmL +cYq +enk +dqE +uES +dts +dmL +dfo +evA +eWH +nBq +dar +dar +dar +dar +dar +dar +dar +wzQ +hGQ +dgS +dgS +dgS +dgS +bTi +dgS +dgS +dgS +dgS +dgS +urr +dgS +eKL +vyz +gvg +doE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(100,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +akZ +xVM +rwo +ydz +jDf +jbR +ago +grH +npW +ald +aKs +aKs +xVf +pqS +avS +riJ +klj +ptz +xiZ +miF +ecT +bZo +aFh +aOB +nUh +nUh +nUh +xTH +nUh +qJg +nUh +aRR +aEl +gZg +uNo +uNo +uNo +yjg +uNo +yjg +wzY +biE +aQl +bCq +bgS +lbn +bkv +bmb +aaa +aaa +bmb +bgP +xPg +bAB +gaY +bvV +qRS +wgG +wgG +wgG +wgG +qRS +iZE +upp +niT +lSv +kHi +kHi +kHi +sxh +kHi +kHi +bKJ +cdT +eJL +bTy +cgQ +gYs +gzN +cqs +lNb +mFO +nBs +hyx +pgV +xOA +xOA +lNb +coL +coL +sqV +eXA +mzj +mzj +ucB +coL +cKb +qju +cME +cMx +cLf +cUc +tmS +cLG +xmW +cSU +uDJ +rac +cXw +cVo +ikS +qAU +dtt +cSU +cZG +dcr +cSU +cPy +dmL +tKh +dmS +dmL +cLT +dar +cwU +cDz +hPR +stu +stu +dar +dev +sLy +dcq +aab +aab +aab +qVf +hVT +bil +iDd +iDd +iDd +ucU +cDi +dzO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(101,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +jbR +lgS +xRT +ydz +hLh +xVF +ago +iwJ +akY +sDq +aob +ara +asP +aKs +lFz +aKs +ayI +ara +aAG +aCb +aDc +aDL +aFh +aOB +aHz +aIX +fda +aLR +pYd +aOw +fFz +aRQ +aEl +xOQ +aPi +aRw +aRw +aRw +aRw +aRw +bml +aRw +aRw +aRw +djZ +lbn +bkv +bmb +aaa +aaa +bqN +bsp +bwN +bAA +gaY +cXq +dqh +mbC +liy +ewS +sSN +dqh +ulC +upp +upp +gNe +tJa +lGP +njM +upp +upp +upp +upp +cdS +gFt +bTy +cgQ +cvm +gzN +wgt +coL +mFO +lNb +lNb +cvI +cvI +cvI +cvI +cvI +cvI +yhm +cvI +lQi +cqs +vPC +dmY +miY +miY +miY +miY +miY +cOy +tmS +cJx +mLu +cSU +goq +cVh +uEL +cSU +dtp +dmL +cXP +cSU +woK +jTq +dar +dar +xeH +gpx +dar +dar +dar +dar +cwU +wPf +hPR +stu +stu +dar +wzQ +jPX +dcq +aab +cZS +cZS +dij +fEE +dij +dij +cZS +aab +rQr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(102,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +nNv +hUP +utu +dFK +xJD +sBh +auU +tgF +akY +rED +aoe +aMO +aCb +aCb +aCc +aCb +aCb +aoe +aAI +aCb +aDg +aDQ +aBn +aGu +aHz +aJa +nUh +aLO +nUh +aOy +aPA +bDk +aEl +rmi +eDB +aRw +bbL +bdy +bgN +bhU +bvx +cJA +daf +bfh +bgP +lbn +bkv +bmb +aaa +aaa +bmc +ogO +bwS +bwg +gaY +nbW +olN +iOD +biZ +sBO +kBQ +quj +uwP +bKJ +mZI +vup +eXO +eRh +iai +wkM +otL +xCt +upp +cdV +eJL +bTy +cgW +cgW +cgW +cgW +cgW +xqL +cgW +cgW +cvI +cyD +cyD +cyt +czT +cyD +olD +cvI +cvI +coL +vPC +miY +miY +tCl +cBq +dpw +miY +neP +bsD +cMU +cNK +cSU +cSU +cSU +cSU +cSU +dtq +ouM +cXP +cYC +cZL +daK +dar +uOT +wPf +uHD +dpJ +eUi +pdE +lJs +lJs +wPf +hPR +pRq +pRq +dar +iyc +dcq +dcq +dij +cZS +sRi +hfb +cZX +qFr +doI +cvw +rlX +ipF +aLe +aLe +aLe +aLe +xVT +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(103,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +wPX +lgS +esN +xue +hLh +aeg +iOG +hQH +ajP +aIo +aCb +aCb +aIo +avd +bEK +axu +aIo +aIo +aIl +aIl +aDe +aIM +aIl +aIl +aHA +aHA +aHA +uCT +aHA +aHA +aHA +aEl +lQx +tkb +aRw +bah +bbK +suo +aVO +aYu +baq +kXQ +aSC +beX +bgP +jBA +ufZ +bmb +aaa +aaa +bmc +bdi +hhk +bkR +gaY +nOD +dqh +cSX +bFe +pmj +uoq +dqh +uYW +bKJ +alh +ubE +qgi +qSL +kHl +tPT +gmF +wVJ +upp +qIO +eJL +bTy +cgW +ciD +cRB +cgW +coH +cMN +caq +cgW +geo +cyD +cyD +cys +czS +czS +xAk +cWX +cvI +coL +hGj +miY +uUD +tUH +cOG +dQa +cOE +cJF +kEv +tyv +tyv +dsH +tgC +cSU +mJT +cSU +cJC +pxP +cXS +cSU +deD +gSJ +dar +dcl +ehs +pCK +cwU +cwU +eMw +lJs +lJs +wPf +hPR +cwU +edk +dar +yme +tIg +snV +cde +cde +dbt +daM +daM +xsl +dop +dij +ycr +cZS +cZS +cZS +cZS +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(104,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abY +afO +aab +afO +qTO +aMr +aab +aab +abY +akZ +wxp +kvz +xue +hLh +wPX +aqX +axw +atg +alr +avd +avd +asQ +avd +ipz +gji +ayK +azE +aIl +aCe +aDi +aDi +aFo +aIl +aJc +aPC +aOB +aLY +aOB +aJc +aPC +aEl +gZn +gEH +aRw +baj +bbP +bdA +bdA +bit +vgd +bdX +xgO +eup +bgP +lbn +bkv +bmb +aaa +bmc +bmc +bmc +byq +bmc +gaY +vxB +qMB +qMB +jPi +sAT +iKN +iKN +jov +nZN +xtq +rfp +tJk +nQG +cTv +wYq +nYX +suV +upp +bVL +tWt +cdJ +cgW +ciH +cqI +cgW +coT +fjN +gsd +cgW +cKv +auo +cxu +cxu +czV +cAW +tjM +eJo +cvI +cqs +vPC +miY +pao +aGm +sOf +dhx +aUX +qGb +dlR +fpe +qGb +qGb +dgs +cSU +cSU +cSU +cSU +cSU +cSU +cSU +dis +daK +dar +cRo +wPf +qGm +cND +fKf +lhs +hNd +cYr +avL +qwV +cCI +jnm +dar +cBv +cTj +vUA +lPa +cvM +dag +cSd +cSd +gwH +dhB +cRq +cCQ +dkM +pyS +dkO +dkO +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(105,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +aab +ahF +ahF +ahF +ahF +ahF +ahF +ahF +aaa +akZ +vDY +tCY +egq +psa +goy +aqX +axw +akY +alo +aAz +axL +axL +axL +axL +alL +ajn +azD +aIl +aCd +aDh +iIi +aFm +aIl +aHB +aPC +eJt +aLT +rWy +aJc +aPB +aEl +aGb +gEH +aRw +bai +bbN +rIV +fTV +aYy +bar +bdR +aTQ +beX +bgP +lbn +bkv +bmb +aaa +bmc +bqO +bsv +vQV +jSf +bCw +qsV +tfz +siC +rxV +dqh +pMj +tli +qNB +bKJ +pWT +ubE +qaA +hnS +eQB +wAF +iMZ +pNG +upp +cdX +vVF +ciM +cgW +cgW +cgW +cgW +ckI +cMN +sBi +cgW +sIO +cyD +cyD +cyD +czn +cyD +cyD +cEd +cvI +xun +vPC +miY +tPe +dhx +pjq +dpl +cUx +cUx +cUx +cUx +cUx +dsK +cSa +cHk +dgn +xHz +qQx +eTj +dgn +cHk +tGW +daK +dar +lmU +wtA +ifW +ifW +dcP +ifW +sYp +ifW +ifW +ifW +pRj +jDJ +dar +vze +cSd +gmW +jNM +cLw +gmW +cSd +cSd +cDS +cWY +dij +ycr +dkr +mVr +bbM +dkO +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(106,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afO +afO +aab +ahF +ahF +ahF +ahF +ahF +ahF +ahF +aaa +afm +aqv +aqv +aqv +aqv +aqv +aiD +ait +sAM +alN +aok +arj +arj +auF +aAz +alL +ayM +aIl +aIl +aCg +aDi +aDi +aFq +aIl +lKL +aJb +qlA +tXD +aOB +aJc +aPE +aEl +aQl +gEH +aRw +aRw +bbQ +bdB +bgN +bhU +fdC +beg +dbv +hit +bgP +lbn +bkv +bmb +aaa +bmc +bqQ +bpt +oaI +hEX +bCw +bCw +aCv +aCv +oPV +hGg +aCv +aCv +bCw +bKJ +waY +rzA +kDp +dIa +rNi +juZ +atJ +iwP +qJx +tYc +lUn +cdN +cgW +fNC +bAb +lte +ckv +cMN +dGj +cgW +cyD +cyD +cyD +cyD +czn +cyD +cyD +cyD +cvI +cgQ +neV +miY +dcB +unM +nio +cUx +cUx +wlh +nLf +cRw +cUx +cUw +dgs +cHk +rbb +cTH +sgS +cVQ +tIt +cHk +tGW +cSv +dar +cwU +cwU +cwU +ema +cwU +cwU +cTD +cTD +deF +cwU +eMw +pFm +dar +hJA +cSd +gmW +cSd +egu +cZX +esT +dgg +gZo +dhC +djl +cBs +cFM +dJW +dkO +dkO +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(107,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afO +afO +aab +ahF +ahF +ahF +ahF +ahF +ahF +ahF +aaa +afm +aey +aeU +afk +ape +aqv +arD +axw +ajT +auc +ujD +kSz +kSz +auD +wxn +sVZ +ayN +aDe +aAM +aCf +aCf +aLE +aFp +aDe +aHF +aJd +aKu +aLY +aOB +aOB +aOB +hlM +aPi +xJn +aYa +aRw +aRw +aRw +aRw +biu +fdC +beg +daT +sSa +bgP +lbn +bky +bmc +bmc +bmc +bqP +bsw +tdh +xJG +lvd +bxr +oYe +oYe +bSU +bBy +bBy +bEb +jOx +bKJ +bKJ +bKJ +bKJ +bKJ +upp +upp +qVG +upp +upp +cdY +vVF +jKP +cgZ +ckv +ckw +ckw +cLn +fzT +woD +cgW +cvI +cxz +cxz +cvI +kmA +cxz +cxz +cvI +cvI +coC +cWU +dsg +hXf +gzQ +gXo +drT +cSr +ieb +eTp +mKq +dKa +cSG +uVt +cHk +dta +cOY +hnk +jlY +dta +cHk +dgp +daK +dar +tEq +tEq +cSE +lYM +qRu +uGk +cTD +cTp +deF +nGq +eMw +fTc +dar +svW +cUM +dqD +cSd +gmW +cUM +dfF +cSd +dgQ +nuO +cZS +ycr +cZS +cZS +cZS +cZS +cZS +rQr +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(108,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afX +afX +aaa +abY +ahF +ahF +ahF +ahF +ahF +ahF +ahF +aaa +jyu +jfx +amy +aov +apg +fAN +aqX +axw +atg +auc +aom +arl +asX +iwD +axZ +alL +ayN +aDe +aAO +aCj +aDj +aCf +gqq +aDe +aHD +aNM +aPD +gDS +cWl +cWl +aPG +aEl +bag +gEH +aQl +aMA +aEN +kwO +aRw +biM +ucJ +ozh +dbO +aRw +bgV +bmB +bkA +cjj +bnU +bpr +bqR +hBF +bqS +bxu +fZM +tZY +wrl +pLy +qpu +htr +iRV +bqS +oca +wLm +tqr +nTZ +hKX +jDS +upp +kQs +ccX +nWW +upp +jfa +iat +qLB +ckN +fry +mbP +bSE +coW +pzQ +kjf +cgW +coC +jxf +wIv +cyA +czw +cBu +kdZ +oBR +lXh +cPN +cHD +cHD +cKk +gEL +mNS +drT +ecq +usH +dbh +exN +kGs +vuA +pIP +gQs +dtb +dtk +uQv +isJ +eKe +gQs +cId +nLg +xfI +xfI +xfI +xfI +xfI +deO +deO +deO +deO +deO +deO +dar +dar +dar +ckP +isi +oWM +cSd +ooa +hcb +gCX +cSd +uCC +dhE +cRq +cCQ +dkM +cAR +dkT +dkT +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(109,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afX +afX +afX +afX +aYm +ahF +ahF +ahF +ahF +ahF +ahF +ahF +aaa +uPX +amz +qIL +amy +apf +pbv +aqX +mUM +npW +umw +anX +ark +asR +egl +axZ +axz +ayN +aDe +aAN +aCi +aCf +inu +jBe +aKx +aNb +aNb +kbv +pfE +aOB +aOB +aPF +aEl +aPi +wpW +aYb +msY +bbR +tJj +hOh +lzw +yfR +bee +aRw +aRw +bgU +erp +bbr +blU +bnR +bpo +bqS +hBF +bxu +pET +beE +beE +beE +beE +beE +beE +beE +pwc +bnq +lPQ +nIb +kto +uAb +tnR +upp +mRf +fvq +gug +upp +xTc +hng +tqW +otH +dto +ckw +uoR +cnu +pll +dpq +cgW +mQz +cPH +cHD +crX +cHD +cGq +mhQ +ggB +lXh +cFo +mOG +cHD +oac +seW +jPY +cUx +uMr +pAp +pAp +qaU +bHZ +cGl +cRJ +dsY +gVX +fMc +cWC +dpd +pAZ +dsY +qqy +fYe +rPY +dyH +jgS +cRf +xfI +xuG +qjZ +vmA +piF +djq +aOS +nLT +ylS +yhw +lAr +qHc +oWM +cSd +gmW +dpV +dfB +cSd +cDS +ixW +dij +ycr +dkr +khY +bbO +dkT +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(110,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afX +afX +afX +afO +afX +afX +ahF +ahF +ahF +ahF +ahF +ahF +ahF +aaa +afm +jVf +krz +amy +aph +pbv +aqX +axw +akY +auc +jeS +aoO +asY +auJ +axZ +alL +ayP +aIl +aIl +aCl +aDi +aEg +aFt +aIl +aEl +aPx +aPx +aMa +aNP +aPx +aPx +aEl +aad +lwj +aYh +aOr +bbT +bdE +aRw +biN +bor +cRN +aRw +dix +bha +bne +mdi +vBK +bnW +bpt +nFP +tKk +bxA +beE +beE +mtR +tEu +lXe +mtR +bIL +beE +paO +bYb +hEl +fGr +fGr +kto +uAb +upp +bdz +aAo +nDd +upp +ceu +pVZ +cjh +cgW +ciK +ceP +cgW +fEP +tyo +chH +cgW +pZM +cvD +dpL +cxo +rmI +cBp +cAL +cDY +lXh +irY +mqV +oCa +ePP +shz +cMG +csD +csD +cvB +cvB +csD +csD +xFQ +cRM +cHk +cXG +cIy +jJn +cXJ +dkJ +cHk +tGW +fdo +hUV +lbX +jbt +idF +xfI +xuG +jAM +vmA +piF +djq +aOS +fqV +cSd +fXt +cRh +qHc +oWM +cSd +gmW +deR +dfI +yiy +gZo +dhF +djl +cBs +dkM +lRS +dkT +dkT +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(111,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afX +afX +afX +afO +aaa +aaa +afO +afX +aiv +aiv +agt +aiv +aiv +aiv +aiv +afm +amA +jzU +aot +ojV +alT +rHa +tgF +akY +auc +ujD +kSz +kSz +dEj +gfo +cBD +ajn +aDf +aIl +aDe +aDe +aDe +aIl +aIl +aHH +aJe +aFy +goC +aSN +aSN +aPH +aEj +aMA +dMy +aMA +aMA +aMA +aMA +aRw +aRw +aRw +aRw +aRw +diw +bhb +bnd +bbr +blU +bnV +bpq +oTG +jfJ +bxw +beE +bxp +vNg +vNg +bxq +jtE +kDW +beE +rnu +weg +lsI +uvB +fGr +fGr +nTZ +upp +upp +upp +upp +upp +cet +pVZ +kGM +cgW +cgW +cgW +cgW +qIu +czA +czA +oPY +kyM +czA +czA +jqd +czA +mrY +wnU +lXh +lXh +cGJ +cHD +cHD +cHH +dAq +dAq +csD +djp +cNS +dek +mlz +csD +cQE +cUt +cXL +cTI +tOE +xtJ +cXF +cTI +cXL +cPX +wpH +dHv +kjN +cBt +cVw +xfI +cSm +cvy +xcg +lrJ +lZV +aOS +gei +cSd +fXt +cRh +qHc +oWM +daO +gmW +cXb +dfH +cXW +dgQ +nuO +cZS +ycr +cZS +cZS +cZS +cZS +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(112,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afX +afX +afX +afO +aaa +aab +aaa +aiv +aiv +ale +anW +adb +abP +aiz +xWL +afm +amC +auO +afl +apj +vfa +ago +oaX +vvq +alN +aop +arp +arp +auL +avd +alL +aog +avd +avd +azP +aFy +lpi +aCZ +aDm +aFy +aFF +aFF +ajk +aFF +aFF +aSN +aNK +aSN +hHt +aRF +sDk +atc +bdF +ayV +ayV +aZx +bbr +dcb +bdv +bhc +bnh +bbr +blU +bnY +bpu +bqU +hBF +bxD +beE +vNg +vNg +byP +uWp +liP +bCK +beE +twH +xSq +hRx +xec +rYG +fGr +fGr +fGr +bmc +nzd +pZP +pVu +cew +cgl +cdN +xJf +clO +czA +czA +cHD +cHD +cHD +cHD +cua +cHD +cHD +crX +cHD +cGq +czA +clO +cDx +coC +bLF +bLF +iHy +dAq +sFl +cPB +cYs +ejc +niP +lvk +tRD +uKK +dsT +cXL +kpx +dVg +lfZ +ihv +kpx +cXL +lsx +qLo +qiG +qBw +cSx +deA +xfI +cVS +egO +cVU +joA +dkP +uqo +kLR +dkz +dle +cRh +qHc +dpM +daP +fdg +ctJ +oFY +dgg +qEe +dhH +uPV +vWD +dkM +lxB +dkV +dkV +cZS +rQr +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(113,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afX +afX +afX +afO +aaa +aab +aaa +aiv +ahG +aor +acj +acH +adg +ajj +aln +alV +vKU +uNP +aov +api +vfa +ago +xZq +cUR +ctG +aEr +axy +axy +bVN +axy +sVg +nAN +nAN +nAN +azJ +qCv +aCo +qCv +xpv +prM +qCv +qCv +jyy +cIv +qCv +qCv +qCv +qCv +aQD +owz +jRf +owz +leL +owz +owz +baE +bdd +bdd +bdd +biI +bnf +bbr +kdE +bnX +thF +oTG +bsz +wIU +bAD +tsK +tsK +tsK +grw +fkF +bCJ +beE +qwU +bzT +xvh +kXe +wcr +tTV +dYJ +dYJ +buQ +nbz +gyR +bLU +cev +cgk +lyv +lyv +clN +gWI +hBw +tnn +tnn +tnn +tnn +ccz +tbJ +vbp +ctt +rQW +oDT +xXt +mZd +iQs +xXt +tTj +xWN +oja +gdy +cIS +cxe +cPQ +cNT +cxe +fmp +cvB +cUw +cUt +cXL +kpx +cIw +uku +gzU +kpx +cXL +ntt +wpH +rPY +kjN +ski +deB +xfI +cVN +cSA +cJp +dcH +lZV +aOS +nFa +dkA +fXt +deJ +qpq +anh +dqD +gmW +glM +cXT +iJA +cDS +vgR +dij +ycr +dkr +hrg +bdG +dkV +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(114,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afX +afX +afX +afO +aaa +aab +aiv +aiv +adP +ajj +acj +aif +adh +ajj +vET +vBJ +amE +anE +aox +apk +uPX +ago +uAG +akY +alo +aAz +aAz +aAz +auM +aAz +fLX +axB +ajn +ajn +azR +aCa +aCx +aFF +aFF +hFW +aFF +aHT +aIO +uWw +aHT +aNc +aHT +aNT +aQS +aHT +aSc +aFF +lnL +tae +tae +aZx +bev +bhh +bhV +biK +bnj +bbr +krb +boa +bpw +bqV +hBF +bxO +beE +bxt +vNg +byP +bBA +liP +bCL +beE +kNX +izm +hMt +rRU +trg +fGr +fGr +fGr +bmc +nzd +rQs +bCH +cey +cgm +cdN +lpN +ciN +cfn +twT +cHD +cHD +cHD +cHD +odx +ecy +cOA +cfn +cFh +axk +cnA +ciN +csC +cDA +ecs +ecs +cHO +dAq +dMr +clZ +tAk +lBg +dYQ +lbb +cvB +cUw +cHb +cHk +kpx +cIy +eAt +cXJ +aYU +cHk +vFA +fdo +hUV +qyM +mdn +rPZ +xfI +ieI +ioM +dcO +ciG +lKP +aOS +gei +dkB +dlg +deJ +cSd +dfF +kUA +dec +cSd +esT +smJ +gZo +cNw +djl +cBs +dkM +vTp +dkV +dkV +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(115,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afX +afX +afX +afO +aaa +afO +aab +aiv +ahT +alf +ahU +aio +acK +acK +aeS +alk +afm +aqx +anD +vBJ +aqv +aqv +agO +umJ +lHX +aAx +mOa +tgR +hQV +aAx +awc +awP +aAx +mOa +tgR +eqb +aAx +aEi +aFw +aFw +sqU +aFw +aKy +aEj +hDI +awl +awl +awl +awl +awl +awl +awl +aPm +bdI +aDN +aDN +aDN +aDN +aDN +bdw +bgW +bni +bbr +krb +aYf +aYg +bqS +hBF +bxK +beE +bxs +vNg +vNg +vNg +vNg +thl +beE +jgY +opf +oid +uvB +fGr +fGr +nTZ +lsh +lsh +lsh +lsh +lsh +cex +pVZ +bGt +adZ +cgS +cgS +cgS +cnA +cnA +cnA +ctl +ctX +ecy +chc +chc +csQ +chc +chc +chc +chc +cGJ +cGq +cGq +cHM +dAq +dAq +csD +cvB +dqT +cvB +csD +csD +cUS +cUt +cHk +qSr +cIy +cZP +cXJ +cVj +cHk +daW +lVs +dHv +mXy +dpD +cVy +xfI +hAX +cQI +dqO +ioM +jam +aOS +raV +fWP +oAS +deJ +cSd +dfF +cSd +gmW +dfD +dfF +ctJ +dgQ +nuO +cZS +ycr +cZS +cZS +cZS +cZS +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(116,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afX +afX +afX +afO +aab +aab +aiw +aiv +akl +pEE +ahV +aiq +aiN +ajr +ajj +kAr +aiv +amG +anJ +aoz +apA +apS +agT +mtW +ajT +aAx +aoU +aqU +atb +nEQ +hIC +avY +aAx +azN +ayS +aCq +aAx +aEm +aFA +aFA +xxv +aJj +aKA +awl +aTm +avq +avq +avq +avq +avq +avq +ixv +aRx +kGo +aDN +biQ +bpQ +cSW +aDN +dje +biO +bnk +gTQ +blY +brS +bpt +bsy +bvC +bxY +beE +beE +mtR +hHp +qZw +oGA +bIN +beE +paO +bYb +hEl +fGr +fGr +kto +uAb +lsh +qlo +niW +wJK +lsh +ceB +pVZ +cjh +cgS +ciB +cfp +cgS +ieW +kNq +cVk +cgS +chf +cvC +chc +cyx +mvk +jak +cBF +dot +chc +cGN +cHU +jkZ +cTG +cLM +cUk +cPo +cPo +cOf +cPo +rJp +fjE +cUw +wWf +cHk +cXL +cXL +cWM +cXL +cXL +dfx +tQJ +qME +xfI +xfI +xfI +xfI +xfI +deO +aOS +dBd +aOS +aOS +deO +cZS +dkC +fXt +deJ +cSd +dfF +cSd +ufc +nVh +pMy +ctJ +vts +cFn +cRq +cCQ +dkM +clL +dem +dem +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(117,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afX +afX +afX +afO +aaa +aaa +aaa +aiv +aeR +agS +jUf +aip +aiB +ajq +afe +dCA +alX +amI +hRY +anJ +anJ +aqy +aqX +uAG +atg +aAx +aow +oFk +glv +auN +jer +gTX +ayT +qBk +apz +aCp +aHE +axe +aFz +oVJ +aLh +vTx +axe +awl +aTm +aLP +aLP +aLP +aLP +aLP +aLP +aLP +aRx +kGo +bgT +biP +xqV +cSV +aDN +aDN +bdD +maF +bbr +krb +aCu +bpx +bqS +caM +bxU +iDz +beE +beE +beE +beE +beE +beE +beE +pkG +bOA +onE +tqr +kto +uAb +pfm +lsh +cFQ +fki +bGs +bEJ +bug +qPI +jKP +hlI +ccN +ckt +cma +lhL +lwY +wie +cgS +cep +pxz +chc +cIo +czB +cAl +gSd +cEj +chc +cFu +cGr +cHm +cHP +cIT +cJo +cKU +dNX +pXR +cOt +kaD +cPM +cQK +cRO +cSJ +cTN +cWj +cWI +cWj +cWj +gmn +sYo +cVp +pUB +hQW +sfu +hQW +mWa +sud +cgX +eDs +eQo +qCB +mAY +gDJ +jzn +enG +deI +cSd +cUQ +dgg +bAO +wQr +cXW +ctJ +cDS +tdT +dij +ycr +dkr +xyK +cRi +dem +cZS +rQr +aab +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(118,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afX +afX +afX +afX +afO +aaa +aaa +aiv +abO +acK +ahW +aAT +aiO +aAT +akw +akf +alZ +amI +yjH +aoB +eTO +fxr +xcq +eqJ +aki +aAx +aAx +dYl +hQV +aAx +aua +axH +aAx +rbu +nyJ +aAx +aHE +aEo +lFP +mET +akN +aJk +axe +aCz +aTm +aLP +oCG +aPM +aTC +aWz +aYs +aLP +bbZ +kGo +bgT +biT +bpT +cUi +dhp +aDN +bzb +mKA +bno +sdP +boh +bpB +bqY +hBF +bqS +bxZ +bvX +ewf +vWr +qJB +mYy +ohy +bDW +bqS +oca +hDR +nIb +nTZ +hKX +jDS +lsh +jyP +jyP +btZ +lsh +vnc +fMY +ltK +csw +ccR +exT +cmb +dmg +gMv +dlq +cgS +cep +dcs +chc +oJu +czC +glP +cmG +cBL +chc +fsW +cGs +cHu +cHX +mNS +hrE +dcF +rYm +cLx +bHY +cUV +cPO +dcF +fWJ +cWJ +iLu +gLG +xmN +gLG +gLG +orM +lFM +pZA +cBE +hbq +hbq +hbq +hbq +ruR +rhs +eJr +lXg +ihW +cUl +esG +tDn +uBJ +sPg +dgg +dfB +fFY +dec +dfF +cSd +cXb +cDW +drV +djl +cBs +dkM +wOf +dem +dem +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(119,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afX +afX +afX +afX +aab +aaa +aiv +aqR +ahR +anv +air +anv +ajK +akt +aku +aiv +amH +bkB +anJ +apB +apS +aqX +npc +alM +aAx +aoW +oQQ +ppN +auP +dBB +axG +ayU +arn +rGR +aCr +aHE +aEn +aFB +aGy +lBr +ayA +axe +aMj +nvm +uOF +ozS +aPL +ofu +wbM +ppd +aSl +aRx +kGo +bgT +biR +xYi +aOm +dgH +aDN +bhq +thq +bkE +bmc +bmc +bmc +bqZ +bsE +bCA +uPs +fIC +vnR +hWT +hWT +oUX +bvY +bvY +bvY +qFt +iWZ +iWZ +iWZ +iWZ +bBB +bBB +bBB +bBB +bBB +bBB +ceC +ktq +tqW +ruL +clR +ckt +ckt +jLz +ckt +iev +cgS +fOQ +cwR +cEz +tep +hrq +xfg +cmG +cBJ +chc +cDA +lrY +cHt +shz +cIV +cUk +cNO +rdu +qCi +cQN +cSq +fjE +cUv +cRP +vaH +fjE +cRe +fqI +fjE +fjE +vaH +wZZ +mmV +cRR +cRR +kxx +pYZ +cRR +cRR +djv +cSM +qYy +tnF +cTF +qmX +giQ +rWB +fwZ +cSd +ehE +dsx +dqv +cUQ +cXY +cop +dgQ +nuO +cZS +ycr +cZS +cZS +cZS +cZS +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(120,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afX +afX +afX +akB +akB +akB +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +amJ +anJ +anJ +apE +apS +agW +tcI +aty +aAx +aoX +ajN +ate +nEQ +aum +axJ +aAx +azO +alt +aCs +aHE +aEp +aFD +iXs +bIC +fwA +axe +avq +aTm +aLP +aPN +aQd +aQd +aQd +fhx +bbg +vAO +acW +aDN +aYJ +lXF +boU +dhq +aDN +dkn +thq +bwj +bmi +aaa +bmc +brb +bpt +gCV +hEX +xjj +xjj +xjj +xjj +hGY +xjj +xjj +xjj +xjj +iWZ +qmW +vGB +dTO +bBB +jhy +mVh +fXQ +kqv +iyJ +ceF +uMy +cdN +cgS +rik +tcX +cmT +cpm +kCN +ism +cgS +cep +ctY +chc +chc +chc +chc +cAT +chc +cvx +cvx +cvx +dpp +cvx +cvx +cvx +cNP +uZx +uZx +uZx +cOi +cOi +cRX +cRT +vaH +cTT +dej +cNX +cTf +iHT +fjE +bQt +iBS +cRR +dft +sOE +xWO +tYr +cRR +lqF +lqF +dkg +nkO +qnM +qmX +nrS +ctj +deJ +cSd +rHu +cJD +cJD +cAp +clP +cop +hzG +ezc +cRq +cCQ +dkM +cDc +dbb +dbb +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(121,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afX +afX +afX +akB +aca +aqd +aco +alB +lrF +iIQ +atY +akW +anA +anA +anA +anA +aui +opa +aoC +apS +apS +ajU +npc +atx +aAx +rbu +rKr +gEb +aAx +awa +axI +aAx +rbu +xea +gEb +aHE +axe +axe +aGA +aHX +aJl +axe +aFH +aTm +aLP +rvw +aPM +aPM +aPM +aYv +aSl +aRx +kGo +aDN +bgT +bqm +bgT +aDN +aDN +dkm +thq +bwj +bmi +aaa +bmc +bra +bsG +jMp +bwc +xjj +vYv +uoH +daa +xyG +pKr +rxX +tOn +gtW +bAc +hba +oYM +dmn +bBB +nds +aDk +xmZ +qNN +bBB +ceD +ktq +cdN +cgS +cgS +cgS +cgS +cgS +iOY +vfE +cgS +cep +pxz +cAu +ctZ +cmR +cDa +cmG +cBU +cvx +xCH +kJT +cHv +cIg +cIW +dcE +cNP +aaa +aaa +aab +aaa +cOi +csN +cRS +fjE +pNx +cHT +cNV +wIO +kfu +iow +ddm +cNU +gRE +cZM +cYa +lVz +cXO +cRR +irJ +dhv +cQT +djR +tky +cGK +cGK +iEE +deJ +cSd +eLk +mrw +esT +cXW +cSd +ctJ +cDS +cSK +dij +ycr +dkr +dmG +cLV +dbb +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(122,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afX +afX +akB +acc +ach +aqd +aqd +aev +iKS +cnU +akW +frM +lAN +adQ +aek +oUf +inP +inP +apI +anA +ahk +npc +atg +alQ +aoY +vJy +qjE +auS +awd +axM +ayX +ceh +baF +awd +aDo +taS +aFG +iGV +xrI +prR +axe +axe +aTm +aLP +aQf +aPL +rlG +dEv +aYI +aSl +aRx +bea +aVN +aVN +fyV +xYK +aZs +djg +bhg +bns +bwj +bmi +aaa +bmc +bmc +bmc +jOs +bmc +rys +xjh +rIE +mFE +rHk +fQw +pCR +ukG +kGZ +iWZ +dtF +qdQ +bIM +bBB +kcr +iJg +nWZ +xnr +bBB +fFO +sol +ccm +cgS +bYF +cWL +cgS +qIn +nmk +rad +cgS +hCF +bkr +cep +cep +fSV +cDa +cDa +cCJ +cvx +lVk +cwO +fvi +sJX +cwO +cwO +cLJ +kZv +kZv +cyh +aab +uZx +cQP +cRV +fjE +cUs +mgd +dac +cHT +cHT +cRe +jZK +cNU +dby +cZM +epT +xJE +nfE +noy +xPo +cTs +iks +euu +rlm +pUZ +qmX +dgI +deJ +dop +gru +oWM +dfF +cSd +cSd +cXb +cDW +sKK +djl +cBs +dkM +cLq +dbb +dbb +cZS +rQr +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(123,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afX +afX +akB +acb +aqd +act +aqd +hyO +aqd +adi +akW +acP +aej +aej +aej +mEj +vur +luD +apJ +dHp +aqX +eEU +lYC +alP +fHe +ufj +flW +auR +aun +axK +ayW +ayn +plk +hsZ +fqq +wrn +aFE +aGC +aIb +awG +gVt +axe +aTm +aLP +aQd +aQd +aQd +aQd +aLP +aLP +vEL +ugX +aPm +aRx +sqc +buU +aRx +uxn +gEd +oYu +lIv +bmi +aaa +aaa +bmc +bdP +xWT +dLF +rys +qsl +etL +xqn +mZC +ilc +kOq +mAd +xMP +iWZ +iQO +iWZ +iWZ +bBB +sVz +uAU +nWZ +lcl +bBB +vwc +bKg +cfB +cgS +cgS +cgS +cgS +cgS +cgS +vRp +cgS +bCZ +cDR +chf +chf +cmR +cxf +cDa +cCa +cvx +dmV +cwO +lnQ +cIh +cIX +cJq +cKX +cMX +cOl +cLi +aaa +uZx +cQO +cRU +vaH +cUm +xdo +dab +mtc +dbJ +fjE +cQH +hKe +vBs +aMM +ccO +deY +ssQ +cTV +cRR +cRR +cTt +cTA +dmk +cUo +qmX +dgI +deJ +dop +gru +oWM +dfF +cUM +cSd +ctJ +dgQ +nuO +cZS +ycr +cZS +cZS +cZS +cZS +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(124,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afX +akB +akW +akW +akW +akW +acO +oVr +acL +wRN +adl +adE +adE +amd +aeB +acM +xPW +rVS +eEj +weo +xPz +atC +awV +tLn +avz +jNP +awV +awf +axP +aza +aAx +aBa +aAx +aAx +usw +axe +aGF +kIk +qvP +iKi +axe +aTm +aLP +aLP +aSl +aSl +aLP +aLP +bbi +aPm +wAj +aUQ +aUQ +vdh +aUQ +aUQ +aUQ +bhg +thq +bwj +bmi +aaa +aaa +bmc +ogO +nBw +bwg +rys +wGn +stp +bOj +lrQ +eIP +fqJ +byO +bxo +iWZ +clJ +tlP +soV +bBB +ggO +iJg +xkX +xkX +bBB +ccn +oFB +bXc +bYZ +ttq +ttq +hhh +ttq +ttq +xLF +cnL +bkr +drQ +chf +qJK +cmR +osE +cBZ +cCL +cvx +cvx +dtw +hOq +cIi +osa +osa +mrd +xzI +ubo +bPH +aaa +cPs +txJ +gMc +cHQ +cHQ +cHQ +cHQ +cHQ +cHQ +cHQ +dex +dtv +sxu +ykt +wug +guJ +vXQ +dpZ +xPo +cTs +cSl +cOW +oDa +fbT +qmX +dgI +deJ +dop +gru +oWM +dgi +ogy +cQg +ctJ +cHS +cSp +cRq +cCQ +dkM +rRy +cWZ +cWZ +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(125,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afO +afO +akB +aca +alB +acu +aqd +hyO +alB +yhS +akW +gkC +amc +amc +amc +ael +eNi +nof +apJ +tfd +iOG +umJ +nKq +oKo +apa +axt +ati +auT +avA +axR +jfm +ayr +lcg +aAA +aAx +ogL +axe +bWJ +csI +eMV +lpF +axe +aTm +aOI +aQk +aSk +aTD +aWB +lZu +jbB +dtg +qtR +aUQ +wEb +meN +xhM +haD +aUQ +dky +thq +bwj +bmi +aaa +aaa +bsL +bsJ +byr +bwf +rys +vTU +gfW +gfW +dio +sqf +sqf +sqf +mTd +iWZ +iWZ +iWZ +iWZ +bBB +sbP +sBR +ezg +ezg +bBB +vZh +mvK +cjm +crD +crD +crD +crD +crD +crD +crD +pxz +csK +chf +dPe +qGl +cmR +piL +cmG +cCK +cvx +cSb +cwO +eKz +cwO +cEe +cEe +cBk +uFe +cGv +cQL +aaa +cPP +dcj +cLS +cSZ +dtc +cWp +luV +hPB +edp +cHQ +dkW +dtv +dgr +dcn +nCm +rLa +jyJ +cRR +cRR +cyG +uiI +kqo +cZc +cGK +deW +dgI +deJ +dop +gru +oWM +dfF +qpq +dkA +ctJ +cDS +chR +dij +ycr +dkr +cUe +cIf +cWZ +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(126,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +afO +akB +acc +ach +aqd +aqd +aev +vKV +xLx +akW +aAp +xiV +tGJ +amf +oUf +anM +apH +apI +anA +aqX +roN +akY +kVw +awh +avB +avB +aAF +aAF +axR +lSU +azW +aBb +aCw +aAx +ogL +axe +aGE +oJZ +rtU +aGG +axe +aTm +aOI +aQn +aPm +aTF +aTF +aTF +aTF +aPm +iLP +aUQ +uCJ +eri +bAh +mdr +aUQ +aTa +thq +bwj +bmi +aaa +aaa +bmi +bsK +iPZ +bwi +rys +sBT +gGO +jWy +wMx +lDo +xdA +eFV +gLN +fdb +oNy +rLs +oNy +vbz +byI +bxj +wnh +wnh +bBB +cco +mvK +ckF +crD +cea +eND +hgT +cxn +ftM +crD +pxz +ghg +chf +gCr +ckR +cmR +cmR +cmR +cmR +cvx +dsJ +cwO +cIY +cQy +kBr +cwO +cLJ +kZv +kZv +cQM +aab +cPP +cMB +dET +vJf +qoQ +qoT +qoT +cTq +dqx +cHQ +dxt +wiG +cRR +deL +mVG +hEW +dmU +cRR +cPD +lqF +iks +lGj +aRH +qmX +cTO +uMp +deJ +cSd +dfR +cZX +dfF +cSd +cSd +cXb +cuu +sMH +djl +cBs +dkM +dqn +cWZ +cWZ +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(127,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +afO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aab +aaa +akB +acb +alB +acv +aqd +afx +adm +aij +akW +anA +anA +anA +anA +llV +oHE +veR +pLI +anA +aqX +uAG +akY +kVw +avA +rAt +ary +ayp +arF +axQ +aAx +aAx +aAx +aAx +aAx +ogL +axe +loP +aIg +aIi +aJq +axe +hLk +ijf +hpQ +aSM +aTE +aWC +aZt +bcc +bbv +sUe +aUQ +aUQ +lhf +aUQ +aUQ +aUQ +dkD +thq +bwj +bmi +bmi +bmi +bmi +bsK +iPZ +bwh +rys +rys +rys +rys +rys +rys +rys +rys +rys +rys +xjj +xjj +xjj +bBB +bBB +wIc +bBB +bBB +bBB +vwc +tht +cAI +vFJ +tNn +rLL +pMg +jzZ +cqZ +crD +bCZ +cAv +jfS +cJE +cep +cyJ +cep +cep +cxA +cvx +bmv +cvu +cyQ +cKz +cvx +mgh +cNP +aaa +aaa +aab +aaa +cPs +xPO +cOF +cTq +cXQ +fZD +lLC +rzU +dbK +dct +ddm +dtv +cRR +cRR +ltM +pYZ +cRR +cRR +dEc +tFF +cSl +diU +yhP +qmX +pSW +tkW +uLv +dfu +dfQ +csE +dpA +csE +dme +deU +dgQ +nuO +cZS +ycr +cZS +cZS +cZS +cZS +cZS +rQr +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(128,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aab +akB +anH +anA +anA +anA +anA +anA +anA +anA +anA +aoL +adw +alG +pOw +aoJ +hRm +lqm +anA +arC +eHI +auU +alR +vdY +iue +atl +ayq +awA +hYk +azd +azY +aBo +aAB +aBs +ogL +axe +axe +aKE +axe +axe +axe +tFr +aOI +aQp +aSM +aTI +aWE +aZv +bce +bbv +sUe +aUQ +jsn +qSD +enJ +bJU +aUQ +aWN +iit +bhq +bWH +bod +bod +bod +bod +iPZ +bwj +fCh +bno +bAl +bBF +bCY +bEw +bMT +nis +bFU +bOz +bFO +bTG +bUG +bVw +bVT +rph +bZt +ofy +cbo +bFO +kFJ +ulK +yab +thE +cJb +eLu +uVH +ngS +crD +pxz +cep +cAv +cep +cyJ +cep +ctZ +bWb +cuE +cvx +cvx +cvx +cvx +cvx +cvx +cvx +cNP +cxO +cxO +cxO +cPs +cPs +cQU +tPq +cyv +cXV +cHa +iQt +rzU +dbL +txJ +ddm +dtv +cOi +oBJ +kfu +deM +iTW +cGK +cGK +qmX +khW +dgZ +cGK +cGK +drS +oxA +deJ +cSd +gmW +gff +dfF +hCu +csE +cXT +dmK +cxk +cRq +cCQ +dkM +dmm +cSw +cSw +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(129,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aab +anH +agc +anA +bmt +anA +acw +acD +acS +anA +akv +alp +aoJ +aoJ +aoJ +jLt +aoR +sjO +aqX +npc +atg +auE +ayp +ary +atk +aAF +uSG +axS +azc +azX +aBi +aHU +aBs +mqw +gDU +aGH +ssY +ssY +ssY +ssY +rQP +aOI +aQo +aSM +aTG +aWD +aZu +bcd +bbv +pnG +gGq +pyq +exD +aUQ +aUQ +aUQ +aUN +bnM +bVu +bqs +bVu +bVu +bVu +bVu +pwD +gJF +gJF +nTf +bFi +ftl +bIR +xQF +xvN +iQu +xvN +xvN +czd +xvN +xvN +xvN +cdU +mac +cse +xvN +xvN +xvN +cgJ +cAI +vFJ +rZM +mRJ +cfw +cFB +wBM +moH +oJe +cyJ +cep +tGZ +yhr +uPn +cAu +cep +cyJ +cyJ +cep +cAu +ech +cuE +cxO +cBN +dmJ +diJ +cep +cKO +tlR +dcj +dcj +jIy +dcR +cVI +pNz +dfr +rzU +cTa +cEr +jot +dtv +cOi +oBJ +kfu +deM +ury +qss +xzG +dmw +dqD +apu +dlv +qpq +cDI +iUO +vbI +cSd +dfT +deH +oFY +xaZ +bqF +cOB +cRp +ftW +dij +ycr +dkr +pRS +cSw +cSw +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(130,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aab +dQR +anH +sqZ +anA +puD +anA +acy +kjy +jrj +anA +akF +adX +aoJ +amM +aoJ +hRm +aoR +jLh +aqX +npc +atg +auE +axt +arF +dEz +aAF +awC +axU +xZH +otY +aBp +aAC +aBs +mbb +aDP +aDP +aDP +aDP +aDP +aDP +aDP +aDP +aQr +aSM +aTR +aWF +aZt +bcf +bbv +mGQ +aUQ +kYC +qSD +qhO +fYg +aUQ +dnk +bhq +bhq +cIZ +bhq +boe +bhq +bvL +mjZ +bhq +bhq +bzb +bAf +nRN +bAf +bEn +bFW +kxL +bFO +bFO +bRg +bFO +bFO +bFO +kxL +bFO +eyg +bXB +bXB +bXB +bWi +ylb +crD +cgA +vbD +koD +chJ +hyH +crD +dLZ +thJ +wjr +wjr +hpr +wHw +qJb +nSQ +fNa +bYd +mws +xtW +olW +mcw +vfJ +niH +cep +cAv +czq +cPc +cPs +dtn +cFG +cVJ +dfg +cXR +cYT +cYT +dcR +cyw +cHQ +day +wxu +ylG +deQ +cgi +uFr +qIN +dmA +dba +taa +qRU +gHL +lYt +cGi +gYf +ugT +dgd +cXT +dgd +dgd +cXT +cXT +cXT +cXT +cOb +lDk +djl +cBs +dkM +cVs +cSw +cSw +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(131,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +anH +aci +aci +aci +aci +acx +acE +aeA +anA +ois +alq +afK +amr +anS +aoM +sln +jLh +aqX +pQg +akx +lSU +apc +arE +tLb +auW +awV +awV +aBs +aBs +aBs +aBs +aBs +mbb +aDP +aGI +aIj +aJr +aKF +aGI +aNX +aDP +aQq +aPm +aTJ +aTJ +aTJ +aTJ +aPm +mGQ +aUQ +lXb +omI +aUQ +aUQ +aVu +aVu +fIP +aVu +aVu +fIP +aVu +fIP +aVu +aVu +fIP +aVu +aVu +bAg +nbA +bkC +ogI +ogI +ogI +ogI +ogI +ogI +ogI +ogI +ogI +ogI +ogI +bQV +ceT +bSu +lzA +csS +bSu +crD +crD +crD +crD +crD +cfY +crD +jYZ +eAu +gRp +jYZ +jYZ +jYZ +sKS +ssc +cep +xTJ +cep +cep +cep +cep +cep +daB +cep +cOT +cLD +cPZ +cPs +cHC +cFF +cVE +cWV +wII +xOn +xOn +xOn +daN +cHQ +daw +daR +cOi +ykA +tsL +lDI +kfu +qss +eqs +sRJ +uqH +uqH +uqH +cUM +cUM +cUM +cUM +dfD +qkB +cUM +cUM +cUM +dfD +cUM +cUM +rqM +dij +ycr +cZS +cZS +cZS +cZS +cZS +rQr +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(132,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aab +anH +pSs +anA +cHW +anA +cYl +acB +idn +adp +tDV +alu +amn +amO +anU +aoP +mjR +sPz +lCR +tkc +aFL +aFL +aFL +aFL +rQn +aFL +aFL +rqy +azm +awl +ayd +avq +aDp +mbb +aDP +aGL +aHY +aJt +qaK +aJt +aNZ +aDP +tLp +ipS +aUG +aWH +aZw +aUG +ipS +esS +aUQ +xTV +qSD +eKH +kTo +aVu +goS +ggC +hwE +veF +tqo +nUj +tqo +jiC +iVp +ygF +rDJ +aVu +bAk +bzq +bAk +ogI +aTT +bCW +bDc +bGi +bJF +bTI +bPe +wFX +bSo +ogI +bZE +cbu +cdh +ceH +fJX +cjs +gFm +bXM +pZl +tfv +bQV +cxP +kuA +jYZ +gUq +cuM +mze +bUu +czG +jYZ +llD +qOx +vUK +czf +dfZ +ctZ +cyJ +cep +cKc +ctZ +cOU +cxO +cxO +cPs +cPs +cPs +cVL +cPs +oLk +oLk +cZW +oLk +cPs +cPs +dkK +cZU +oYb +dfG +uUy +dgR +cJg +cOi +cZS +dij +dij +dij +cZS +cZS +dij +dij +dij +cZS +cZS +dij +dij +dij +cZS +cZS +dij +dij +cZS +dib +aLe +aLe +aLe +aLe +aLe +pVW +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(133,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +anH +ndn +anA +fcQ +anA +acw +exe +qyh +anA +apM +adY +amm +anL +ahf +aoN +aoJ +apT +ago +aiU +aFL +alS +apd +arK +aeb +auY +aFL +atw +iVr +dAH +aBq +lme +lme +kPK +aDP +aGJ +qek +aJs +aKG +aMw +oYo +aPe +phd +aSJ +aUd +aWG +aWG +bbk +bda +pKv +aUQ +aUQ +aUQ +aUQ +aUQ +aVu +mUt +jpm +orv +oJs +kBh +jcp +fAO +nTP +tly +eVQ +tai +aVu +cMK +bzq +bAk +ogI +aTS +fYx +bBM +bGg +bSn +bQZ +ttf +fWj +bRt +bSN +dOs +vmz +mDZ +cuo +bDl +qFy +bZv +gKN +tmX +ill +bQV +ciE +iUf +jYZ +dXX +uIn +kKW +cfE +crm +jYZ +chf +ctZ +cDm +chf +chf +chf +ctZ +cAu +tWL +cep +cxO +cxO +aab +aab +cPs +cQW +cVM +cWR +dbN +wYi +cNY +cNY +bTN +cOi +dlU +cOI +cOi +dfG +uUy +kfu +edf +qss +aab +dhf +dlw +dlw +dlw +dlw +dlw +dlw +rlX +dhf +rlX +dhf +rlX +dhf +aLe +xVT +xKa +xVT +xKa +xVT +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(134,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aab +anH +anH +anH +anH +anH +anA +anA +anA +anA +akI +apO +apO +amQ +apO +apO +sNy +tfd +ago +uAG +akC +avF +iPH +aex +hNy +ayt +aFL +azM +wWC +aBR +wIz +avq +aCh +avq +aDP +aGM +aIn +aJu +aFI +aFI +aFI +aFI +aQx +aSJ +aUI +aWK +aZy +bbn +bda +mGQ +aOI +dSf +mQL +mQL +mQL +ipA +gFX +fma +orv +vKu +ueZ +ueZ +ueZ +ekY +tly +tMP +orv +fIP +bAk +bzq +bAk +bOU +aTV +jKZ +yiH +qDM +bNG +sFQ +amv +nHW +cud +bSP +toH +pkQ +ncM +udz +mMA +rbz +xbT +bQV +bQV +bQV +bQV +cjw +ckV +nEA +oxN +der +jYZ +jYZ +jYZ +jYZ +cAY +cep +fkC +wGR +cxE +chf +csp +cep +cKg +cep +cxO +aab +aab +aaa +cPs +dgC +doL +dgC +oub +cYV +cZY +noh +xzp +dcv +dcN +dtv +dmz +pUX +dgt +dgP +pUX +dmz +dmz +qmh +dmz +fnd +dmz +fnd +fnd +dmz +dib +djc +dib +djc +dib +djc +aab +rQr +rQr +rQr +rQr +rQr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(135,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aab +aaa +aab +aaa +anH +fRv +acV +fRv +anA +tNR +apO +apO +amP +apO +apO +qQE +anA +ahQ +aiV +aFL +ama +apy +arQ +atp +ama +aFL +xnM +gce +dAH +aFs +avq +avq +avq +aFI +aFI +aFI +aFI +aFI +aKK +aOb +aFI +aDv +uAT +aUI +aWJ +aWK +bbn +bda +bfb +aOI +aYO +aUS +aUS +aUS +aUS +guR +uuE +orv +buC +buC +aps +buC +buC +tly +tMP +dJg +ofw +bAk +bzq +bDa +ogI +aTU +bDf +nmO +srv +vxo +bSn +srv +bSn +gYk +bSv +xCd +cen +qFy +cuo +caz +mDZ +bZv +gKN +rXb +hTv +bQV +cre +ckU +gbM +qkc +pRg +pTa +bUu +czG +jYZ +cAY +cqN +cqN +cyJ +cyJ +vNT +cYj +cyJ +lZI +cep +cAe +aab +aaa +aaa +cPs +dou +cPx +dou +oub +mQf +dDZ +daV +vQZ +cOi +dau +dtv +dmz +cJH +dke +oLB +cPE +lTU +cQp +kcJ +nTG +cPE +cPE +cPE +cDj +dmz +dmz +dmz +dmz +dmz +dmz +dmz +dmz +rQr +rQr +rQr +rQr +rQr +aaa +dQR +dmD +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(136,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aab +dQR +aab +alv +aab +aih +aqG +aqG +aqG +aih +akJ +oGm +oGm +amT +aHq +aHq +apQ +aqG +agV +aiX +aFL +auI +apK +eMe +avF +auI +aFL +awl +awl +aIq +iQo +avq +avq +avq +aFI +aGO +aIp +aJv +aKI +aGN +aGN +aPf +aQA +uAT +aUK +aWM +aWM +bbo +bda +emr +aOI +aYO +aUS +mhv +eoR +efn +hUa +iav +nQW +sea +lxc +tqo +sea +lxc +mFq +vAC +fin +aVu +jQC +hLM +bAk +wcS +aTY +bSn +bGf +bIh +paW +bTM +bPg +bQS +ibM +ogI +bZD +oKu +cuo +qFy +cju +qfJ +eng +upW +kCw +jLy +bQV +mRO +ckX +jYZ +bJb +cvS +pNw +cfE +crm +jYZ +kkO +jxj +bTU +cyJ +uWP +chf +nBN +cyJ +vih +cep +cAe +aab +aaa +aaa +cPs +dou +doM +dou +oub +anp +cZY +xjB +cdo +cOi +kBF +dtv +pUX +dfK +dmd +dja +dja +dja +dja +oyH +tGy +dja +dja +dja +mfk +vAW +dmz +dmW +dtl +qGK +qGK +qdk +dmz +rQr +rQr +rQr +rQr +rQr +dQR +dQR +dmD +dQR +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(137,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aaa +aih +aih +aih +aih +aih +akK +aiY +ajV +amS +ajV +aiY +kTA +aqG +ajJ +asy +aFL +amb +apG +aFL +apG +auI +aFL +axW +avq +avq +mbb +aCh +avq +avq +aIY +aGN +aGN +aGN +xpP +qfL +gLe +aPf +aQz +oqZ +aUJ +aWL +aZz +aUJ +aPm +bfi +aOI +aYO +aUS +kFB +sSj +nQl +hUa +tth +fbz +fbz +fbz +leS +fbz +fbz +fbz +fpl +orv +fIP +bAk +bzq +bAk +bEq +aTW +rZF +cxL +bGq +bQR +bQR +bQR +bQR +bQR +bQR +caA +cbv +dZB +bXP +bXD +caP +bXD +bQV +bQV +bQV +bQV +cDf +cDf +cDf +cDf +cDf +cDf +cDf +cDf +cDf +fBH +czr +rex +czg +cxF +chf +vfy +cyJ +uzL +cxA +cAe +aab +aaa +aaa +aaa +dou +doz +dou +oub +cZd +cNY +cZw +mVO +cOk +nNX +dtv +pUX +dfJ +cXU +dgV +rDW +rDW +dld +kdD +lpz +wCM +dlx +dqw +tbw +iFb +tMq +dpE +fUk +dpE +dpE +cRl +dmz +rQr +rQr +rQr +rQr +rQr +aaa +dQR +dmD +dQR +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(138,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aih +mma +kAS +vhs +aih +adI +aiY +ajV +anb +ajV +aiY +apV +aqG +ahD +dGa +aFL +aFL +aFL +aFL +aFL +aFL +aFL +axY +avq +avq +iQo +arR +awl +awl +aFI +aGQ +iIk +aJx +aKL +aJx +umk +aPg +iRT +wpY +pHV +aPm +aPm +pbz +pIr +bfp +aOI +aYO +aUS +xPJ +gPj +nQl +hUa +oXr +eSa +nif +buC +bHu +buC +buC +uNg +kNE +eOd +wny +bAk +bzq +bAk +ogI +aUP +tLB +vpf +bJA +bQR +jCr +bUc +bZu +cnP +bSR +bZJ +vPP +bZk +bXF +bZh +caE +pRm +ylO +mem +fZC +wQM +cDf +bQT +fxU +chu +cnZ +izR +xIm +crr +cDf +cuj +ygX +acX +cyJ +cyJ +hNr +cyJ +czr +gYr +cep +cxO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oub +ccL +cNY +xjB +oMN +cOk +dau +bNI +dmz +dfN +dgj +tYm +dhJ +rKe +wGJ +eew +khK +pJh +wGJ +lax +rWr +cYW +ddD +dmX +qIl +uPG +gkf +dkU +dmz +rQr +rQr +rQr +rQr +rQr +aaa +dQR +dmD +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(139,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aaa +deX +jRb +eTn +umg +wxF +uAu +mJO +afM +aeC +ahm +tWh +apU +aqG +ago +tls +atg +awl +aab +aaa +aaa +aab +awl +axX +avq +avq +iQo +arR +avq +ayb +aFI +aGP +mEs +fmN +uZJ +aJw +lFe +ckc +aQv +aWW +aWP +aWP +aWP +aWU +aPm +mGQ +aOI +aYO +aUS +dzE +bom +nQl +hUa +oXr +ngT +buC +buC +bHu +bjN +buC +nyR +xnG +nNf +tqp +sGO +ipe +bAk +ogI +aUO +dFI +bLy +bIj +bQR +bNo +bPh +bSq +rdL +cuL +iDD +oSJ +dVb +bHL +bZk +caR +ccq +ylO +lLH +wJn +pop +cjB +qnK +bNf +gFW +nnK +kTh +cBH +nsP +cDf +cuh +cyJ +cAz +cyJ +cyJ +cyV +cyJ +cyJ +uzL +cep +cxO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oub +tOs +cNY +hvc +dmz +dmz +cYb +aOl +dmz +hua +dgj +dgW +dhI +rKe +sKE +gHg +erU +erU +omz +cZZ +dnm +fAn +dsN +xlV +cNE +oBV +oBV +cMY +dmz +rQr +rQr +rQr +rQr +rQr +aab +dQR +dmD +dQR +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(140,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aab +mHh +bUE +gKs +lPS +mjW +wuh +pJH +xhz +and +xhz +iEJ +hWQ +aqH +qrI +dzS +akD +awl +awl +awl +awl +awl +awl +aIq +avq +aAc +mbb +aHp +aCh +aEw +aFI +aGZ +fio +aJz +ggd +dwg +lFe +aPf +aQv +aZD +aVo +aZG +aZG +bbu +aPm +oKl +aOI +aYO +aUS +spe +kPF +nQl +hUa +oXr +tqo +oSA +vDp +fAd +sju +pqW +tqo +tly +orv +fIP +bAk +bzq +bAk +bEp +bYu +xGF +bHO +gVC +chh +tPC +iGq +ccJ +uhl +bSR +neH +dvz +vHd +bXF +dVb +cyS +vzE +crY +wJv +xoN +cjC +cjB +ieC +oUn +imB +pva +imB +kzX +jBJ +cDf +chf +iuF +chf +cxt +cyJ +cyV +ahA +cyJ +cKi +cep +cxO +aaa +bFC +bFC +bFC +bFC +bFC +bFC +bFC +bFC +mLw +hvc +dmz +dcS +dkI +gGk +dmz +ghR +dgj +tvj +dlt +omz +ffY +jUZ +dcf +vhd +omz +eyp +cwJ +gNQ +dmz +gOF +cxB +cxB +cxB +aXp +dmz +rQr +rQr +rQr +rQr +rQr +aQU +dQR +dmD +dQR +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(141,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aaa +tEw +dBR +sKj +qbR +kPs +iyp +alH +amt +aeD +aeV +aoS +apW +aih +iOG +ntl +gSa +ame +gDU +gDU +aBw +gDU +gDU +gDU +qor +aAa +kDx +awl +avq +ayc +aFI +aGR +mEs +aJy +xYc +aMI +iHu +aPf +aQv +jKA +aUT +aZG +aWT +bbu +bdj +bfq +aOI +aYO +aUS +eeF +kPF +nQl +hUa +jzO +alJ +alJ +alJ +alJ +alJ +alJ +alJ +jVr +hXp +aVu +bFj +bzq +dzn +bEp +aQV +mpX +bUd +oUP +chh +hAl +vEw +cPb +cvZ +chh +eFn +xYq +cnx +qjX +bZl +caF +cct +ylO +sHC +cot +cfF +cjB +ckZ +bca +iHE +coa +iHE +mTj +czO +cDf +ccv +vEW +chf +uwJ +uwJ +chf +csK +cyJ +uzL +bWb +egW +aaa +bFC +jYu +jtR +rUR +bFC +uwN +cTo +bFC +uph +snc +bsW +dtH +esL +dqk +pwS +sQv +lmi +cSO +dfq +fJg +sZP +iRc +iRc +iRc +cUg +eel +mYL +sRm +dsN +dpF +qGK +qGK +dbW +diB +dmz +rQr +rQr +rQr +rQr +rQr +dQR +dQR +dmD +dQR +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(142,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aih +adH +wWM +mEM +aih +aih +aih +aih +aih +aih +aih +aih +aih +aqX +aqW +tjk +amw +avq +aCh +avq +avq +avq +avq +avq +avq +dku +awl +awl +awl +aFI +aHa +aIu +aJA +aKO +aMJ +aOg +aFI +aZs +aZD +aVp +iBD +aWT +bbu +bdj +bfv +aOI +aYO +aUS +izr +kPF +iyh +lFO +rcG +nLp +jvX +nLp +nLp +nLp +nLp +nLp +nLp +xHL +aVu +bAq +bzq +bDb +aTM +hXB +wYg +bNz +mpK +can +rda +cth +cht +pyl +gKS +kCP +gAY +lgW +cfI +qLe +caH +sTQ +crZ +kXp +cot +hSU +oBL +bEx +fAt +gYO +gYO +gYO +cup +crp +cta +cpC +cpC +cpC +cpC +cpC +cpC +cpC +cpC +bZn +bWb +cxO +aab +bFC +olG +gSP +jeW +vSh +gMP +jeG +uwB +bFD +hyj +bsW +sbD +qtd +hWr +pUX +pxv +hod +dah +wQQ +mkq +dPA +cSI +phw +cSI +nic +dlK +ihJ +ihJ +dsN +tgZ +rdv +tgZ +dob +cOj +dmz +rQr +rQr +rQr +rQr +rQr +aaa +dQR +dmD +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(143,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aaa +aih +jQu +giR +eWB +aih +aaa +rlu +xfO +nah +fhH +mcg +yhb +rlu +rlu +azL +rlu +atG +awl +arR +awl +wNr +aqc +aya +awl +avq +fUQ +avq +avq +avq +aFI +aFI +aFI +aFI +aFI +aFI +aFI +aFI +aQE +bxP +aUT +aZG +aWT +bbu +bdj +kGL +qFV +xIj +dRf +lNp +fdd +aUS +kEj +baM +kEj +aUS +vqS +dEw +dEw +dEw +cFT +dbI +bdT +bdT +bAn +bzq +bDb +bEy +aVx +bDg +fdN +oDm +bUd +bNz +aVy +bNz +bUd +oiS +dJl +gAY +rPf +cbr +bZp +caH +bXF +jcY +hcA +cot +bYc +cjB +ure +jCb +gqr +ghU +joe +jCb +esO +cta +xBf +oaY +oaY +oaY +oaY +oaY +xBf +cpC +dUm +gJa +cxO +aaa +bFC +cSs +cYg +sIF +bFC +oWo +cDE +bFC +rHF +syr +dmz +czD +cjR +vOb +cpz +cSY +wls +sKF +dfs +hSD +teT +wiS +wiS +wiS +cVT +uZe +cMa +diu +dsN +qGK +qGK +qGK +dka +diB +dmz +rQr +rQr +rQr +rQr +rQr +dQR +dQR +dmD +dQR +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(144,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aab +aaa +aab +aaa +aab +aaa +rlu +eBE +jcV +pTX +pnz +aFn +rlu +fbX +aOE +hWI +atG +apZ +avq +atr +ava +awD +awD +awl +aqc +tGs +lFa +lFa +lFa +lFa +lFa +lFa +lFa +lFa +lFa +lFa +raG +fzl +aZD +aVs +aZG +aZG +bbu +aPm +bfy +aOI +nwx +aUS +kCq +gNf +aUS +wbl +qaW +iUd +aUS +oPu +bof +bof +bof +bof +bof +iNn +bdT +mMo +abd +aRy +qYr +aVI +bDj +bGx +eeJ +bND +bND +bND +ewU +bND +aTL +bZL +cbT +cpn +bTZ +bZp +dMc +czi +cej +tSi +sMJ +ckz +cDf +cDf +cDf +cDf +cCW +cCW +cCW +cCW +rNv +dWP +fuy +fuy +fuy +fuy +fuy +qsX +cpC +gan +cep +cAe +aaa +bFC +cSF +nOE +acf +bFC +bFC +bFC +bFC +soK +cNJ +dmz +dqq +khe +uiw +hJj +cmj +cXX +cVP +xon +cVT +ffY +uTu +vBN +pTj +omz +eyp +cwJ +gNQ +dmz +cON +daQ +daQ +daQ +lZC +dmz +rQr +rQr +rQr +rQr +rQr +dQR +dQR +dmD +dQR +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(145,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +dQR +aab +dQR +dQR +dQR +aab +aab +rlu +mXS +iVU +wuy +bjE +lPz +elB +nCV +ifJ +dEI +atG +apY +arS +aqc +auZ +att +ava +avq +awl +aFJ +aFJ +aFJ +aFJ +aFJ +aFJ +aFJ +aFJ +aFJ +aFJ +aFJ +aOI +aQG +aZC +aVq +uCQ +aZE +otX +wsA +xfi +aOI +nwx +aUS +vHT +qKa +aUS +lhN +jra +kVo +aUS +udc +wvN +nTN +qTQ +bof +bof +bof +qUd +bAk +bzq +bDb +ouw +aVy +bDi +bGv +bJW +bSw +bNz +aVx +bNz +bSw +cuF +vAN +gAY +rPf +bXK +bZp +ccA +het +sZh +bYe +cot +hZz +bSH +clc +pNL +slC +coe +cpw +pNL +czW +rNv +cum +uno +cwg +cyZ +hoz +cyZ +jyI +cpC +rwv +cep +cAe +aaa +bFC +bhn +bFE +rFC +fqN +eIN +bFC +rRt +jxs +cNJ +dmz +dmz +tcw +dmz +dmz +cVF +cXX +dms +cRj +ddx +lVr +vWF +erU +erU +omz +hri +kqR +gNQ +dsN +xlV +dlc +nqC +dlc +cMY +dmz +rQr +rQr +rQr +rQr +rQr +aQU +dQR +dmD +dQR +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(146,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +rlu +qFK +xHC +pTX +hwW +pTX +rlu +qom +kfk +meO +atG +aqc +aqc +aqc +ava +awF +awF +avq +ixv +aPm +aPm +lkw +aPm +nXr +aKQ +fRL +aPm +jPN +lkw +fho +aPm +aPm +aPm +aUa +aPm +bbw +bbw +bdm +bfz +aOI +nwx +aUS +aUS +goA +aUS +aUS +aUS +aUS +aUS +dAh +aBB +umx +aBB +bof +wCP +bof +qUd +bAk +bzq +bDb +aTM +cwk +bNz +bSt +bLx +oRn +lQf +vah +vah +bSy +gKS +kCP +gAY +uHA +bSB +wMV +ccA +vRL +crZ +kXp +cot +geX +ckr +clf +obE +cuG +cuG +cuG +tGx +cmI +rNv +bZm +gVp +chK +sEn +bJh +cyZ +inv +cpC +daB +cep +cAe +aaa +bFC +cUj +hWo +cUy +djE +rsI +bFC +rRt +cNY +cNJ +cNY +nvN +cqJ +ehT +dmz +dfN +cXX +dms +cRj +ddx +wGJ +dmQ +dmQ +dKq +wGJ +cPS +dmR +ssU +elC +qJH +cTw +cvz +uXE +dkU +dmz +rQr +rQr +rQr +rQr +rQr +aaa +dQR +dmD +dQR +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(147,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aab +rlu +lJK +hYr +hGM +fqk +tHr +rlu +jbO +hib +xSF +atG +aqb +aCh +ats +ava +awE +ayf +azn +arR +fes +tbC +tbC +aPm +tbC +tbC +aPm +tbC +tbC +tbC +aPm +aPm +aPm +aPm +wsC +aXf +aIc +aIc +aIc +aIc +aIc +nwx +hae +aUS +pvL +eBx +gMH +iMW +aUS +dpP +jws +jxv +lSw +mcl +bAo +vMz +bof +qUd +bAk +bzq +vxf +bEp +aWI +aVy +mzk +bJZ +bEp +bTT +bPK +olg +bEp +bEp +gdp +bHM +chs +bXL +tBn +caL +mTx +ylO +cfL +cot +ciP +bSH +cle +lFH +cnF +coZ +cnF +eoX +oGg +rNv +cus +gVp +caV +iEg +wna +cyZ +ciQ +cpC +lrw +ctZ +cxO +aaa +bFC +upI +cSN +cYM +ndr +iYD +bFC +oub +oub +lQh +cZY +oDq +dqA +rZm +fnd +rVm +rHz +jvd +cXm +cXm +dcy +dcV +ddf +ddn +nIq +fDp +ajx +cWB +dsN +qGK +cSR +qGK +qGK +diB +dmz +rQr +rQr +rQr +rQr +rQr +aaa +dQR +dmD +dQR +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(148,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +rlu +rlu +rlu +rlu +rlu +rlu +rlu +rlu +rlu +rlu +wPx +apY +arT +aqc +aEI +awH +ayg +aOY +awl +aFK +aFK +aFK +gFG +aFK +aFK +gFG +aFK +aFK +aFK +aFK +aPk +ePV +iGP +wsC +aXf +pmG +wwL +veP +isv +aIc +bjz +xsi +dkR +aBH +mFQ +hIm +bec +aUS +sOH +bof +bfo +umx +fqZ +bof +wCP +bof +qUd +bAk +bzq +bAk +bEp +tTh +bPG +bGz +bKc +bLQ +bDH +bOB +uYw +bOQ +bIq +mcM +dvz +edz +het +eUh +vhu +iBV +crY +wJv +cuf +ciJ +bSH +tXI +lKS +cnI +cpc +cnI +uFn +cvU +rNv +qHO +nBZ +rBN +rBN +cxx +cul +tsO +cpC +oym +bWb +cxO +aab +bFC +bOs +cYy +xBw +kAJ +cyq +bFC +aab +oub +cNJ +cNY +nvN +ixH +cCp +fnd +cMV +xgp +giX +giX +giX +giX +dcz +giX +giX +fTt +giX +pPi +oLW +dmz +qGK +fwc +qGK +dpC +pMq +dmz +rQr +rQr +rQr +rQr +rQr +aQU +dQR +dmD +dQR +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(149,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aab +aaa +aab +aaa +aab +aab +aab +aab +aab +atG +aqc +aqc +arR +avb +aAQ +aNH +ava +awl +sHt +sHt +sHt +sHt +sHt +sHt +sHt +sHt +sHt +sHt +aFK +kiu +aPm +aSM +wsC +aXf +nci +qef +kvJ +wap +aIc +nwx +aGY +iLw +gWV +vqm +boV +uxX +aUS +wve +bof +pnX +nTN +rDV +bof +bof +bof +qUd +bAk +bzq +bAk +bEp +bEp +bEp +bEp +bEp +bEp +lUq +sec +kkP +uAC +xgz +kqi +vIj +eUh +bXO +bZk +caN +moN +ylO +hbc +cot +ciR +bSH +jFo +cmn +cnH +cpb +wcA +kPY +lbZ +rNv +nJf +qxF +qxF +qxF +pvP +kAp +bZw +cpC +azK +bWb +cxO +aab +bFC +pua +bHB +bHz +bLi +rnK +bFC +aab +oub +ggI +oub +nvN +dTG +tmO +dmz +dmz +cSP +tbr +tbr +wnQ +uRb +bPf +tbr +tbr +dll +dnd +cTE +cQe +dmz +dmz +aYt +aYt +dmz +cvA +dmz +ipF +pVW +ipF +pVW +rQr +aaa +dQR +dmD +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(150,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aab +aab +dQR +aab +aab +alv +aab +aab +aab +aab +aab +awl +aqn +asc +att +avc +avq +avq +avq +awl +sHt +sHt +sHt +sHt +sHt +sHt +sHt +sHt +sHt +sHt +aFK +kiu +rpd +aHW +eln +xdS +pmG +lEH +udh +pni +pTJ +mrk +qsA +aUS +aUS +aUS +aUS +aUS +aUS +pob +bof +kNO +bof +bof +bof +nYk +tiR +bdT +eah +bzq +bAk +bEp +pin +oce +xdJ +mpt +clU +bOR +uCK +gZX +pCe +bIq +jfQ +cbV +bZk +het +dOo +mjh +sxg +ylO +qNz +cot +cuB +cCW +cqM +mCO +bJP +chL +fgv +pxG +mhT +rNv +cpC +bNK +cGw +oTy +vOE +bNK +cpC +cpC +bTP +cep +cxO +aaa +bFC +bSk +bHz +bFE +bHz +cRr +bFC +aaa +cxO +wHh +hmq +ecH +vQw +cCp +gYM +dmz +dmz +cDl +dmz +dmz +dmz +nqN +xlV +ddq +cMY +tVR +iqI +dmz +cEi +cEi +qIz +vfY +dmz +dib +dlw +dlw +dlw +dlw +dlw +djc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(151,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +awl +awl +awl +awl +awl +awl +avq +avq +atG +atG +avs +atG +atG +sHt +sHt +sHt +pwU +sHt +sHt +pwU +sHt +sHt +sHt +aFK +aPm +aPm +aSM +wsC +vca +aIc +sbR +utP +bdr +aIc +aLc +bbI +qzo +hAx +vSz +bjy +muv +bdT +bjL +bof +kNO +mfy +vwn +vhN +lRd +gOk +beb +jQC +hLM +bAk +bEp +aWS +bDn +bQQ +cAq +bEp +bEp +bEp +bEp +bEp +bEp +caA +cbU +dZB +bXP +bXD +caP +bXD +ylO +tOo +ckW +qdG +cCW +cCW +cCW +cCW +cCW +cCW +cCW +cCW +cCW +ule +cnY +cnY +cjz +cyK +dRz +czh +sYT +smW +cep +cxO +aaa +bFC +bFE +bHD +bHz +bHB +bFE +bFC +aaa +cAe +eZo +dbM +ogH +xgm +rZm +rZm +vSC +nvN +aWg +ujR +dmz +deu +ddp +ddv +ddv +hiM +xlV +cTm +dmz +dgM +dne +nqn +fWl +dmz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(152,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +awl +amK +avq +asf +atw +atT +auK +qtm +atG +aup +avq +hmS +atG +sHt +sHt +sHt +sHt +sHt +sHt +sHt +sHt +sHt +sHt +aOI +gCU +qtC +aSM +vNh +wCZ +aLA +aLA +aLA +aIc +aIc +aGX +nwx +bdT +nzF +dfW +bjy +stG +uKD +jZh +gvW +mOz +aQs +cgT +ptR +svK +xBM +bzf +bAk +bzq +bAk +bEp +aYo +bDn +bHJ +jVt +bEp +lHU +cnW +cty +boX +bEu +bZP +phl +chx +bWt +wRB +cnY +cnY +cjz +cGL +chx +bQB +ckB +cjz +cnM +cnY +cnY +cnY +cjz +cnY +bWF +cGL +chx +oPO +cmy +cyM +dKy +czj +wTf +cqw +gUh +cxO +aab +bFC +bFE +bFE +ceb +bFE +bFE +bFC +aab +cAe +mEx +vic +ogH +sto +tSu +dbD +dmy +jxo +cOe +cVH +dmz +bcA +inV +ddk +baN +baN +dlX +pMX +dmz +oMR +oMR +kjp +pxD +dmz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(153,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awl +aCh +aqq +awl +atu +atG +uTo +oqL +atG +lQS +avt +lQS +atG +sHt +sHt +sHt +sHt +sHt +sHt +sHt +sHt +sHt +sHt +aOI +aPm +aPm +aSM +wsC +jJh +aLA +aXi +kua +oVY +aLA +aNh +xrq +aSR +fEN +ntg +uxk +uxk +vep +kqK +bof +jTo +rqa +hOf +bsX +kyK +jxJ +bzf +bAk +bzq +bAk +bEp +aYl +bDn +bHG +msN +bEp +bOT +bNL +bRc +nbE +irE +wbB +pjc +crA +bXR +nPD +avh +raZ +ccG +bXR +cou +bSV +avO +avO +cmq +avO +avO +avO +avO +cuv +dXp +hYs +cCR +oiA +avO +bYv +lHM +bXI +pAi +iZz +gyA +cxO +aaa +bFC +bFC +bFC +bFC +bFC +bFC +bFC +aaa +cAe +wHh +bWb +ecH +nvN +rxp +nvN +okj +nvN +dgT +cWx +dmz +dmz +dmz +dmz +fnd +dmz +fnd +csO +dmz +dmz +dmz +dmz +dmz +dmz +aaa +aaa +aaa +iUc +iUc +iUc +iUc +iUc +cBY +cBY +cBY +cBY +cBY +aab +aaa +qHj +aab +aaa +aaa +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +drX +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(154,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awl +amL +aqr +awl +awl +atG +iwn +iDk +atG +auq +avp +auq +atG +aFK +aFK +aOI +gFG +aFK +aFK +gFG +aOI +aOI +aOI +aOI +tuZ +pbz +ilS +iTC +wBU +fIB +hjO +gxE +rBZ +jqS +jne +quc +bdT +aJB +onQ +bjy +bjy +uKD +bof +bof +jQi +uLN +qgF +nVq +kyK +xcG +beb +bAp +bzq +bDa +bEp +aYr +bDn +bEp +cfR +bEp +cpd +sep +elE +ccE +bWa +hUj +iTB +gpk +hUj +bWa +pAi +ogJ +chr +chr +vmn +rcs +rcs +uBn +chr +chr +chr +chr +chr +chr +cQk +cQk +cQk +cQk +cQk +npM +chq +npM +pAi +cux +gyA +cxO +aaa +aaa +aab +aaa +aab +aaa +aab +aaa +aaa +cxO +eZo +chf +chf +cxO +doE +nvN +kLp +nvN +iuO +yko +nvN +aaa +aaa +aaa +aab +aaa +aab +mDO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +iUc +rqd +fAw +uwW +iUc +cBY +esP +ojj +rff +cBY +cVd +cVd +cVd +cVd +aab +aab +cVd +cVd +cVd +cVd +cVd +cVd +cVd +drf +drf +drf +drf +drf +drf +drf +drf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(155,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awl +awl +awl +awl +aaa +awl +oQd +oQd +awl +auq +avu +auq +aaa +aaa +aaa +aOI +xfQ +whv +nqX +vFZ +aOI +aUW +aLc +aOI +tuZ +aPm +aSM +wsC +aZL +bgZ +wNE +odR +rOg +aLA +aGY +pHs +bdT +hUm +lAt +hOJ +eAk +bdT +bzk +obb +bdT +beb +beb +beb +iPS +beb +beb +bAk +bzq +bAk +bEp +bPA +bob +bEp +bJY +bMZ +cvT +vnO +pjk +eHX +bWa +czY +cbX +bWu +bXS +bWa +djr +bGG +chr +gkn +chy +eAi +bGe +cnN +cms +chr +pCy +aTN +cuw +chr +ctk +cwr +cQR +bLK +cQk +jkP +oGi +pOK +pAi +daB +aoA +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +bOH +chf +pOt +cxO +doE +nvN +ojt +nvN +dhk +rxp +nvN +aaa +aaa +aaa +aab +aaa +aab +xYp +aab +aaa +aab +aaa +aab +doE +phU +doE +aab +iUc +dQC +jfW +mkE +iUc +uti +hpd +dfC +vKC +fcb +cDk +cOZ +cGY +cVd +cVd +cVd +cVd +dkX +dkX +pMM +dkX +cAO +cAO +drf +drf +drf +drf +drf +drf +drf +drf +drf +qgC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(156,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awl +doE +okf +awl +auq +avw +auq +aaa +aaa +aaa +aOI +sPb +lop +xcB +lJX +lEW +aIF +xvd +aOI +nqG +edM +emL +wsC +lOY +fIB +jUq +vJc +sRW +aLA +aGY +vbB +beb +beb +beb +beb +beb +beb +rKD +aSQ +tab +exm +bef +qzn +bmA +dwA +fyQ +bAs +cof +sAl +bEp +bEp +bEp +bEp +bEu +bEu +mki +yad +mev +bSC +bWa +qZx +ccb +cwc +kHm +bWa +cfP +dlD +chr +cmd +chB +ciX +ckD +csb +cmv +chr +xDc +mcx +cuA +chr +cpL +axi +dxw +cbB +tpP +rMX +rwc +cAC +pAi +daB +aoA +cAv +fOQ +foC +cAv +cyJ +cGD +gpB +nTv +wSs +chf +dgm +wHh +cep +cep +cxO +doE +doE +sds +doE +dgX +dlS +doE +doE +doE +doE +doE +doE +doE +doE +doE +doE +doE +aaa +aab +dmB +cEa +dmB +dpf +iUc +rTy +wbr +hyv +iUc +uUL +hpd +dfC +tBT +dlo +cSt +cLB +cLB +uwU +qrw +dkX +dkX +dkX +drf +drf +drf +drf +drf +drf +drf +drf +ktF +drf +drf +drf +drf +drf +drf +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(157,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aOI +aOI +aOI +aOI +aOI +aOI +aGY +qXm +aOI +aOI +aOI +aOI +ixh +aOI +aLA +aLA +aLA +aLA +aLA +aGY +nwx +bfB +bhu +nTn +xaU +beb +ibp +bqI +brr +brs +brr +brs +brr +btq +bmA +dzA +bAr +ihx +bAk +bEu +eUC +lqw +sVr +cyX +edS +aZU +bQF +bEE +fsQ +bWa +qEs +cuy +bWC +hlq +bWa +cjF +oZa +chr +lee +chA +gNY +ula +gAS +cmo +pom +cnR +cFz +oYN +chr +hnB +cxH +oVO +cSQ +tpP +eLa +cyN +cyW +pAi +caQ +nCX +uax +odt +thu +wBf +efJ +xth +sir +gkw +cIl +lfX +cbR +cUh +cUN +sjM +cxO +cxO +aab +aab +aab +hXT +seH +djM +djM +dkZ +dkZ +dkZ +djM +djM +cCh +kqh +aaa +doE +aab +aab +dmB +cNv +dnW +dpf +iUc +iUc +nzm +iUc +iUc +cBY +cLK +cAo +bVx +cGt +cDk +cDk +cDk +cDk +kEM +cDk +cDk +cDk +drf +drf +drf +drf +dry +drG +drI +dry +drE +drI +drG +dry +drf +drf +drf +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(158,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aHN +aGX +aGX +npF +aGX +kCH +pIY +aGX +aGY +oHO +qmv +jne +jne +jne +nqL +xXD +mxZ +ybX +aMz +aUb +aQL +aGY +obX +kjL +bUO +esC +cgv +beb +ePE +bfH +wXC +wXC +mEa +wXC +wXC +boB +nnj +pou +bAr +ihx +bAk +bEu +nuM +lMs +fCA +haU +tJz +bFQ +bFQ +pZI +bSD +bWa +qZx +ccd +wQK +cbE +bWa +dlD +dlD +chr +cfX +chE +cll +cll +cll +ctz +chr +cvP +cwY +pPr +chr +caW +bZs +cvY +daI +tpP +rMX +fCX +wMz +pAi +smk +cAv +cep +czq +cEp +fSM +vIc +jxj +pnT +qBo +uAo +bWb +cep +cep +cep +nhc +cep +cxO +cxO +cxO +cxO +aaa +aab +aab +aaa +aab +aab +aaa +aab +aab +hXT +dsI +aab +doE +dmB +dmB +dmB +cyz +dnV +dnZ +dnZ +doN +dlb +dph +dpu +cBY +cBY +cBY +cLA +cBY +cVd +vdo +wCk +fkT +vTD +cBl +wCk +vdo +drg +dro +drt +drv +dry +dnr +dny +dnz +dnB +dsb +drE +drE +drf +drf +drf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(159,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aHN +aHN +sLX +aGX +aGX +aGX +aKX +hcz +aGX +aGX +aOC +qOP +aGX +aGX +aHP +aQC +kkz +jKH +vCe +vCe +jKH +woV +woV +oGv +beb +iYn +dUW +lcB +fNk +wpN +djh +wHl +bef +bef +bef +bef +bxM +bef +pou +pRP +tQm +bAk +bEu +bby +cjG +oxy +aqE +bFX +pZI +bFX +ccx +bSD +bWa +qLc +dPw +qNM +cpa +bWa +oZa +lLM +chr +cfW +bSx +kBK +ckE +eLL +jUF +chr +gEs +hFX +hxx +chr +jyE +sUw +daH +awO +cQk +lEE +czb +iHY +pAi +oOe +xkF +chf +cep +cAv +cEB +kDY +chf +cHd +eUq +cIn +cDm +rnd +iac +chf +jpi +cjd +cjd +dRk +kcx +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +aab +rfB +kqh +doE +dmB +kYd +gqn +hMV +kla +dnZ +doy +diF +doY +diI +cWz +dpf +dkb +rbx +dlb +fnT +cVd +gdq +gdq +gdq +gdq +chd +eWx +gdq +drf +drq +dnl +drv +drE +dnw +vfp +drN +drN +dsd +dfE +dsi +drf +drf +drf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(160,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aHN +aHN +qej +naG +mcF +vMN +fDU +kWL +qCO +jQW +uKn +aKT +aMi +ikx +aHb +aHP +aVA +aRI +hkN +mTZ +pAv +sCE +sCE +bkD +uuZ +beb +mOH +etb +qRs +beb +rCn +vtW +ipG +bef +bef +bef +bef +fmk +bef +pou +bAr +wzx +bDa +bEu +bEI +qJN +yeI +tsJ +chp +vmr +chp +nlv +kWa +bWd +fdX +bVV +fdX +bWd +bWd +bGG +qZN +chr +chr +chr +chr +chr +chr +chr +chr +chr +chr +chr +chr +cQn +cQn +bZN +cQn +cQk +cQk +kQW +cQk +cQk +chf +mCc +chf +chf +chf +iZn +rDM +chf +chf +cEx +chf +chf +cAB +cAB +cAB +cAB +chf +dhQ +csa +sZJ +chf +yjA +xlg +sDr +chf +csK +pnE +bDr +cyJ +cAe +aaa +hXT +seH +oiR +xXe +uwh +raN +eVD +rTE +eCl +diC +diE +diM +djD +rWq +qKv +djJ +dkf +aah +cCO +mnh +pqb +pqb +cXd +dqM +iXl +cPq +skD +lUK +dnf +dnj +iFI +dnq +dnt +rxK +cJM +drN +dsc +dse +dsh +drf +drf +drf +dsj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(161,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aQU +aHN +uUf +mNI +aMK +aGX +bmH +hhl +sCd +kQw +tXx +aQL +bwW +cKu +pcF +qtr +aGX +aQL +aRI +lCp +aMz +aGX +aMz +aMz +aHN +bck +beb +iki +etb +ppm +beb +otc +aUA +brr +brr +brs +brr +brr +bfQ +rXN +pou +bAr +wzx +bAk +bEu +azI +wMl +fUC +sNP +bFQ +tJz +bFQ +ggD +bSD +bWd +eSg +dBW +ccC +hOa +bWd +dlD +qZN +wjQ +cvV +chD +cpy +cpO +cvV +cQk +sPx +bZH +fah +cUT +lAK +nAq +cph +kwG +cvO +cQk +qXs +ruu +vKs +cQk +lYX +gOa +lVX +vYx +cAB +jiG +xLR +iNe +xhX +cHZ +chf +tzW +chf +cJu +cMd +ufC +chf +ctZ +eGC +sug +vbQ +wtp +tkN +pmR +cuc +csK +jBC +kom +dml +vjg +dng +aaa +aab +aab +dmB +asU +mJm +qmU +jqj +dnZ +diD +diI +diO +djH +cAg +dpf +dkd +hmR +dlb +dlu +cVd +gdq +gdq +dor +gdq +gST +sWO +gdq +dnc +dni +drE +drv +drE +dni +drR +drN +drN +drN +dry +drE +drf +drf +drf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(162,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +alv +alv +alv +alv +alv +alv +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aGX +oQZ +eDE +axh +aGX +aGX +aGX +aGX +aMz +aMz +aGX +aGX +aOC +aGX +xAf +aGX +aQJ +aRI +aOF +aGX +aTZ +cQZ +aGX +aab +bcn +beb +mTh +ahr +qqZ +beb +iXj +bqL +bru +btU +bru +btU +bru +baL +mKO +oil +bAr +wzx +jZB +bEu +nuM +ttj +aZT +bFT +pZI +bFX +bFX +tJz +bSD +bWd +rcZ +ckC +cxj +rWA +bWd +dlD +qZN +oum +gYq +rDI +oum +ckL +rcf +xMK +vUZ +umQ +cxb +cxJ +cAb +cpS +eAF +jbW +fzC +glR +bbE +ctr +sXV +cQk +rao +cMO +cpA +kKD +cAB +uEc +tpW +luz +hFe +cIa +cyP +lYc +cKD +vcO +cJG +pnV +chf +chf +veV +cJy +chf +dha +cTU +iLA +wtp +wtp +qAK +cYj +dmr +cAe +aab +aaa +aaa +aaa +dmB +dmB +dmB +dmB +doe +dnZ +dnZ +diG +diN +djG +dpx +aig +aig +aig +xkG +aig +cVd +vdo +dpK +jgP +tYh +oER +dpK +vdo +drg +dnh +drA +drv +dry +drK +drB +dnA +dnF +drE +drE +drE +drf +drf +drf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(163,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +alv +alv +alv +aab +aaa +aab +aaa +aaa +aab +aaa +aaa +aaa +aaa +aab +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aDS +aGT +aGT +aGT +aGT +aMz +iWJ +tzo +aGX +aGX +gOI +pDK +eQH +tSb +ega +kxy +owB +aOi +aGX +fEx +aGX +kWl +qtc +aGY +lrO +vZl +mAX +aHP +aHN +bck +beb +rRW +vXb +dLK +beb +ukr +fTD +qIy +jJJ +bef +bef +ybE +pVw +nAE +pou +bAt +wzx +bAk +bEu +bzi +oPT +fck +plV +rgv +lwt +lwt +lwt +bSG +bWd +cnJ +bUs +wBF +bXQ +bWd +chk +qZN +oum +gYq +bWf +jDB +fke +wGj +cQk +cQk +pvT +cQk +cQk +mcQ +czu +vEm +cxH +xJk +cQk +ivY +imr +pRT +cQk +chf +mib +cNi +cuQ +chf +cED +xmj +tAb +cHe +cAB +cAB +cAB +chf +ehQ +cJv +msm +chf +ctZ +csa +mEx +chf +chf +jVj +chf +chf +usZ +cyJ +cep +cep +cxO +cxO +cxO +aaa +aaa +aab +aab +aab +aab +fmG +gJl +dnZ +diL +sst +dnZ +dpf +aig +vNX +gQi +dnI +fXo +cDk +cDk +cDk +cDk +qLK +cDk +cDk +cDk +drf +drf +drf +drf +dry +drO +drM +dry +drE +drM +drO +dry +drf +drf +drf +aab +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(164,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aaa +aab +aaa +aab +aaa +app +app +app +app +app +app +app +app +app +aab +aab +aqZ +aqZ +aqZ +aab +aab +aDS +aDS +aDS +aGU +aHK +aIB +aGT +ltN +aLv +tzo +aMz +uBG +fHg +gRB +sCE +mNT +qEa +hir +kgM +hkN +lie +vBm +aMz +aGX +qtc +aGX +aMz +aGX +aGX +aGX +aGY +bcm +beb +beb +beb +beb +beb +beb +beb +beb +beb +beb +beb +beb +beb +beb +beb +bAi +iqN +bAi +bEu +bEu +bEu +bEu +bFV +bEu +bEu +bEu +bEu +bEu +bWd +nJl +bVZ +yeL +bYk +bWd +dlD +qZN +rvH +oHA +gqN +gNs +gwz +lvL +xMK +rFP +xwg +fmH +xZh +jLT +uqr +kXD +cxH +txr +cQk +cQk +mjg +cQk +cQk +dXo +nwj +bYf +cDg +chf +rAp +rAi +xRP +cAB +ebS +nyh +jFf +chf +cyJ +dxN +xIi +chf +ctZ +fhE +gaS +cmU +lxE +lxE +hzN +chf +vpS +cPc +cep +cyJ +cyJ +cyJ +cxO +aaa +aab +aab +aaa +aaa +aaa +aab +aab +dnZ +hcZ +diQ +djI +dnZ +dik +drP +cTg +hau +dqp +cuW +bji +bji +deK +cWh +dkX +dkX +dkX +drf +drf +drf +drf +drf +drf +drf +drf +npm +drf +drf +drf +drf +drf +drf +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(165,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +alD +axq +axq +ann +mDE +apn +apn +apn +apn +apn +apn +apn +apn +ann +aqZ +aqZ +azU +awQ +axq +lgb +iih +utp +tSW +sDz +aHI +aIA +wXm +wYh +sqC +aJI +aMz +uBG +pcR +aUf +brd +cyF +bLG +gsN +pzF +uKa +dYq +wZU +aMz +aUU +qtc +aGX +sYP +aaZ +aGX +aWb +aYK +bct +tfH +jxS +gCl +juO +ouH +hHK +klS +uwn +ctH +ctH +shi +qsi +bAW +gdP +gdP +gdP +xcC +bwv +bte +fvs +dlD +ceJ +rcD +trp +aDR +bGG +dlD +pIx +bWd +bWd +bNy +bWd +bWd +bWd +bGG +qZN +lTk +wOW +sDH +hbb +clE +oLJ +cQk +cuJ +wLp +iTA +cUT +sgu +cck +wCq +pvM +fhY +cQk +hYo +iVE +bJc +cuQ +xqa +cBG +myq +soR +chf +cyJ +ogr +xrV +chf +pak +ukQ +mba +wkB +huR +cep +pWW +chf +dbq +ibt +gBh +gBh +pDz +tgb +hKw +chf +chf +chf +cyP +chf +chf +cAz +cDm +chf +chf +cDm +chf +chf +aaa +aaa +aab +dnZ +kcl +tVP +bvU +dpf +dik +drP +cTi +cQX +rVt +cDk +cLE +nGL +cVd +cVd +cVd +cVd +pMM +dkX +dkX +dkX +cAO +cAO +drf +drf +drf +drf +drf +drf +drf +drf +drf +qgC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(166,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aaa +aab +aaa +aab +aaa +apq +apq +apq +apq +apq +apq +apq +apq +apq +aab +aab +aqZ +aqZ +awR +aab +aab +aDS +aDS +aDS +aGW +aHJ +aIC +aJH +eUF +jar +cWq +aGX +uBG +pDK +xMI +vuF +naU +owB +veU +owB +aOi +lie +vBm +aMz +aNh +qtc +uDS +vZl +ldl +aMz +kSe +aGY +aGY +epd +aJD +kcQ +prr +orY +aGX +aQL +laP +sCE +sCE +bte +uKG +bwv +bwv +bwv +bwv +owm +mUT +otJ +pzN +pQD +tPR +qVK +qyT +qyT +qyT +sTX +bWA +rkb +hpR +sPs +tuJ +jFF +uAd +bRz +qZN +bKl +bGG +gqN +bGG +qEv +bGG +cQk +cQk +cQk +cQk +cQk +cQk +cQk +cQk +cQk +cQk +cQk +gZH +spH +crj +cuQ +cuQ +cuQ +bLj +cuQ +chf +nsA +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cxO +cPI +nDq +jVj +cep +cep +cep +cDm +mlC +cep +nte +cAv +cep +czq +cep +chf +aaa +aaa +aab +dnZ +doH +dpg +dpb +dpf +aig +bfU +fRK +dve +aig +cVd +cVd +cVd +cVd +aab +aab +cVd +cVd +cVd +cVd +cVd +cVd +cVd +drf +drf +drf +drf +drf +drf +drf +drf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(167,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +amh +alv +alv +aab +aaa +aab +aaa +aaa +aaa +aab +aaa +aaa +aab +aaa +aaa +aab +aab +aqZ +aab +aab +aab +aab +aaa +aDS +aGT +aGT +aGT +aGT +aGX +aGX +aGX +aGX +aGX +pDK +vIU +aHc +hir +qEa +trl +iQI +aGY +aOC +vvV +aGX +aGX +qtc +aGX +aMz +aMz +aMz +kSe +tfk +aGY +aGX +lQc +aJD +bkF +aJD +bkF +aGX +hRF +rqs +bmH +bte +bve +bwv +bwv +bwv +bwv +eiU +cXh +bte +cuQ +djr +bGG +dlD +bGG +cbs +cdb +aDR +fWu +dlD +dlD +pio +bGG +dlD +dlD +cfA +cFA +uIg +aWR +jIj +coi +cpU +oHl +sdu +cnQ +prB +cuQ +cxD +oZa +cuQ +oVU +kuW +oVU +cuQ +wNa +bEt +bNA +uIf +pKi +bGG +csX +cuI +dbg +dlD +qZN +cJK +cJK +cJK +tlj +nET +xRU +fsR +pZK +iip +ttZ +oGs +qig +qig +dbR +cxO +cFm +cXx +chf +cOq +cTB +fTz +chf +xYu +cQo +hPE +dmP +nUn +lyS +lyS +chf +aaa +aaa +aaa +dnZ +dnZ +dnZ +dnZ +dpf +aig +aig +aig +aig +aig +aab +aaa +dqQ +aab +aaa +aaa +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aab +dsa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(168,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +aaa +aab +aaa +aaa +aaa +aab +aaa +aaa +aab +aaa +aaa +aab +aaa +aqZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aGX +nAL +xSV +ooP +aGX +aGX +tqy +aOC +aOC +aOC +sCE +lCk +ohp +nFx +vBm +aPK +xRy +gJd +woV +eal +woV +ojJ +svD +tfk +bmH +bau +bau +bau +bau +bau +bau +bau +bau +bau +bau +bau +uKG +bwv +bwv +bwv +bwv +eiU +bwv +cXh +bGr +bGr +bGr +bGr +bGr +bGr +bGr +bGr +bGr +bGr +cuQ +pio +dlD +pBP +bGG +tsG +qZN +xFM +sGi +wQi +ykL +cpW +crM +qZN +nGG +pPw +hwC +dHU +sQt +xwi +dlD +dlD +bGG +lqd +cuQ +xBC +cuQ +cuQ +cEE +bGG +eIk +dlD +dlD +dlD +qZN +gIp +taM +cJK +vXT +vLF +cEH +qgE +eoT +cEH +beh +hLC +cJK +cJK +gGQ +cxO +cPI +hKw +chf +cAz +cDm +chf +chf +ubq +wHh +czq +emD +lcD +wuA +lWF +lWF +lWF +wtn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(169,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +alv +alv +alv +aab +aab +aab +app +app +app +app +app +app +app +aaa +aqZ +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aGX +mIU +ipb +jEq +fHA +jRo +rvA +cZV +oWW +aOC +egR +aGY +egR +fys +xQd +ksx +pcF +fDc +aQI +aUc +aAY +aVQ +bbI +tfk +ewz +bau +btl +bih +bia +bju +bli +blp +boF +blp +brw +bau +uKG +bwv +bwv +bwv +rND +kWH +mUT +sCG +bwL +ewu +bMW +vwS +bRj +bTW +bUN +bVA +bRU +bGr +cLh +ccF +dlD +cuQ +vRd +tsG +qZN +qZN +qZN +qZN +qZN +qZN +qZN +qZN +pBP +qzh +cuQ +cuQ +cuQ +cuQ +dlD +jxu +xsC +cEE +bGG +nGG +dlD +bGG +dlD +dlD +sAi +xsC +pIx +dlD +qZN +cJL +qig +qig +tHv +fig +qKu +rRY +cEH +ddY +cfZ +ilj +cJK +cJK +cJK +cxO +cFm +rwI +chf +cyJ +gsY +ugW +chf +chf +dOh +qpi +krv +sSE +xRY +xRY +xRY +dWT +eMZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(170,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +aqZ +aqZ +mDE +apn +apn +apn +apn +apn +apn +ann +aqZ +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aGX +wYL +ooP +ifV +aGX +ldc +azf +aNg +vlF +aGX +aGX +gQN +aOC +aGX +uvk +aGX +aGX +bhX +aMz +aGX +aGX +aGX +bbI +aGY +bau +bco +bcp +bcp +bcp +prt +bli +bcp +boF +xiC +brw +bau +uKG +bwv +kKJ +kKJ +bwv +eiU +bwv +qEE +eYY +gby +iNP +gVU +iNP +iNP +iNP +ptK +wCQ +bGr +bGr +pio +cAU +ceJ +pBP +ixM +xrP +xrP +xrP +cqo +rEv +xrP +psU +psU +xrP +xBP +rgZ +bDA +klA +kYS +kYS +iOV +wCX +kYS +kYS +oZi +uvu +hZZ +slF +agP +fVY +ewY +xGE +qkC +qZN +cxN +qKN +osN +uSD +icn +uVL +vzg +jXI +ial +qYK +uBf +sUZ +gyS +cxN +cxO +cPI +dDI +rTF +cyJ +uqE +qiB +chf +jrA +eZo +qTA +eMZ +dbr +pnE +sAB +czr +mgJ +eMZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(171,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +aqZ +aab +apq +apq +apq +apq +apq +apq +apq +aab +aqZ +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGX +aGX +aOC +aOC +aGX +aGX +aGX +aGX +aGX +aGX +aGX +eic +hCG +aID +aGX +qTN +aMz +aQM +uvk +aGX +aUe +dqF +dMb +lql +xFJ +bqj +fpd +bhx +bHy +gIr +iED +bcp +blj +bcp +kJc +brx +bau +cOd +bAX +bau +bau +eiq +eiU +bwv +cfy +bGr +bGc +bRk +bSJ +bNi +bSJ +bRk +bSW +bSJ +kNY +bGr +vxz +laK +jSF +qgz +iFR +iFR +bAS +iFR +iFR +jWE +bAS +fiM +iFR +cuN +iFR +iFR +fpT +kwo +hiQ +uIf +cuQ +cuQ +uIf +cuQ +cuQ +cuQ +cuQ +cuQ +keZ +cuQ +cuQ +lRt +cuQ +qZN +cJK +cJK +cJK +ivZ +cJz +qKu +fFC +dGR +ddY +vHK +sxn +qig +qig +pRE +cxO +fnP +aMm +jBo +mIJ +mIJ +mIJ +jTb +xsY +aTb +tVq +suB +jrV +pzX +hAL +orE +jrq +itZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(172,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +aqZ +aaa +aab +aaa +aaa +aab +aaa +aaa +aab +aab +aqZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGX +aGX +sCE +xGU +xGU +aGX +fNH +aEx +wDe +dIY +aOC +pGR +ohp +ohp +ohp +sZQ +uvk +aMz +pZg +uvk +aGX +guK +ydU +aGX +lfj +bau +bau +bch +bem +bfY +bkn +bcp +blj +blj +blj +kEV +slo +bvO +gFS +blj +bxQ +bau +bFo +eiU +dMJ +bGr +bGr +qKG +bLE +bSJ +bRy +qLd +bLE +bId +bSJ +qQm +bGr +bUl +vFd +cdb +dlD +cuQ +als +lqd +cuQ +als +lqd +dcK +bRb +dlD +cuS +qmw +dfc +lGi +ufu +dlD +cuQ +aaa +aab +aaa +aab +aaa +aab +aaa +cuQ +bGG +cKQ +lqd +bcb +dbg +qZN +gIp +taM +cJK +cIt +vLF +cEH +nGo +mrK +cEH +beh +twx +cJK +cJK +gGQ +cxO +nte +bop +mmB +pnE +cyJ +xxd +chf +qNa +ndt +exu +lMl +dbr +czr +kGB +cyJ +idY +lMl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(173,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +aqZ +aaa +aab +aaa +aaa +aab +aaa +aaa +aab +aab +aqZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aGX +kCM +agb +aGY +xeR +aHP +aDq +xKT +aFM +aHd +bTX +tIy +gsN +lQZ +aYE +pcF +wZU +aGX +yaK +fuH +mPO +aGY +gPk +aGX +lfj +bau +bav +bci +jqB +bfZ +bkn +bcp +blj +blj +blj +blj +blj +blj +cIp +blj +bxR +bau +bFr +eiU +cfy +dLJ +bGw +syf +pOl +bSJ +bRs +bSJ +pOl +hfD +bSJ +rwZ +bGr +bUl +fQr +vDR +dlD +lqd +clX +clX +nbx +nbx +cuQ +gRe +gRe +pPK +bWg +bWg +bWg +cxT +hDf +bWg +bWg +aab +clp +clp +clp +clp +clp +aab +cuQ +bGG +cKQ +cuQ +pUR +bGG +qZN +dQM +qig +qig +sMc +fig +qKu +sHq +aqF +ddY +nCP +muq +cJK +cJK +cJK +cxO +cep +aoA +chf +fjO +cyJ +nAM +cDm +chf +ndt +iKr +vtf +hUh +xVP +gIy +gIy +kWz +lMl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(174,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +aqZ +aab +app +app +app +app +app +app +app +aab +aqZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aGX +weS +ejV +luJ +ktT +aOC +aWV +aEy +aFO +aHf +fys +aGY +hrS +aKV +efN +aNj +lPR +aMz +aQO +jYF +aGX +pRf +tAa +aGX +bbI +bau +bao +hDx +eGJ +beo +bcp +bcp +bcp +blj +bcp +blj +bry +bth +xbO +nrd +bxS +bau +bFv +eiU +cfy +dLJ +hPH +bSJ +qrJ +bSJ +bSJ +bSJ +bSJ +bSJ +azq +bGr +bGr +sBW +bEA +bEA +cjA +cuQ +chU +clX +cnv +dlD +lqd +crj +huo +crj +bWg +bIi +cpI +kBH +gsS +vEr +bWg +aaa +clp +lBQ +vRJ +dHF +clp +aaa +cuQ +xWm +cEE +cQx +bcb +dgy +qZN +cxN +cRY +fsM +mGG +cZq +uVL +iun +sen +ial +ddF +kMB +foi +vfc +cxN +cxO +gmu +aoA +cDm +chf +iYQ +chf +cDm +dmb +cIj +cep +emD +xvM +wuA +lWF +lWF +lWF +jjX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(175,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +amh +aab +aqZ +aqZ +mDE +apn +apn +apn +apn +apn +apn +ann +aqZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aGX +qMI +aGY +sCE +xUS +aOC +aDr +lNg +aFN +aHe +aGX +jAX +xQP +aKU +aMl +aNj +nEC +aMz +aQN +sHi +aGX +ueH +dxe +aGX +lfj +bau +bax +tMU +bep +bfT +bcp +bjF +bll +bcp +boG +bcp +bcp +bti +cIp +blj +bxT +bau +bwv +uKG +cfy +bGr +bWj +bIc +bWe +nCk +nCk +faK +bWj +bIc +bWe +bGr +cau +ccg +cdC +bEA +ceK +clg +crj +clW +bGG +coA +cjA +clg +csB +bYm +bWg +fWQ +lsk +ufl +tPW +lNE +bWg +aab +clp +hcE +rLY +jcc +clp +aab +cuQ +bGG +cLc +cuQ +bcb +cLR +qZN +cJK +cJK +cJK +cMQ +cZs +qKu +nGo +umH +ddY +vHK +jpn +qig +qig +kUv +cxO +cAu +aoA +chf +kee +uAo +nAy +chf +nbC +eGX +hsB +iDX +eie +vnY +rEz +chf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(176,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +aqZ +aab +apq +apq +apq +apq +apq +apq +apq +aab +aqZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGX +aGX +aGY +xGU +agb +aOC +jKN +hzh +lCu +aGX +aGX +aHP +aJK +aYC +aYC +xne +iwS +aGX +aGX +heL +aGX +aGX +aGX +aGX +bbI +bau +bau +bau +bau +bau +bau +bau +bll +bmD +boG +bcp +bcp +bcp +cIp +bAY +bCO +bau +bFs +eiU +cfy +bDq +bGE +bIl +qZD +uwr +uwr +uwr +xyr +qlz +fvT +bYl +nXU +xeB +jpb +bEA +bYj +bYj +bYj +bYj +ifT +cbd +cbd +cbd +cbd +cbd +cbd +npb +cxU +uqy +kpz +bIA +bWg +aaa +clp +ckg +uij +yjV +clp +aaa +cuQ +bGG +cLc +cuQ +mNK +cuQ +qZN +gIp +taM +cJK +cMJ +vLF +cEH +nGo +urf +cEH +beh +pKP +cJK +cJK +gGQ +cxO +gmu +aoA +chf +dOb +wrM +rmH +cDm +fbp +uGf +guQ +mrc +iFW +cep +cIm +chf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(177,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +aqZ +aab +aab +aaa +aaa +aab +aaa +aaa +aab +aab +aqZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aGX +aGX +aGX +aGX +aGX +aOC +aOC +kil +aGX +aHb +aMz +aMz +cqC +aGX +aMn +aMz +aGX +aGY +aGY +aGY +uVU +aMo +aGY +wgs +dWK +cqD +dWK +dWK +bip +bjn +bau +bau +bau +bau +bpY +buy +btj +cIp +blj +bxV +bau +hen +hdS +cfy +bDq +bGB +bIl +bNj +bKk +bNN +bPy +bRm +bSZ +bUH +bIa +cav +lgO +ozX +bIa +tGg +cjN +clq +bYj +bYj +cbd +cmV +yjv +fHE +ctC +cbd +bWg +bWg +nlT +bWg +bWg +bWg +aab +clp +tFl +lor +rlA +clp +aab +cuQ +bGG +cJQ +lqd +bcb +bKl +qZN +iGI +qig +qig +ohx +eLz +uVL +llI +jXI +ial +eYV +jtc +cJK +cJK +cJK +cxO +cyJ +hbP +cDm +vNo +pnE +uqE +chf +ntr +juH +tNc +xOM +cKS +bZZ +chf +chf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(178,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +aqZ +aaa +aab +aaa +aaa +aab +aaa +aaa +aab +aab +aqZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +alv +aCN +aDt +uka +aEz +aDs +aCP +nnW +pcF +pcF +wKB +pcF +xiA +amW +fDc +aGY +sCE +sCE +gtV +gCl +gCl +dxa +aGX +aHO +bel +bfW +gpp +bii +bau +bkX +bmE +bau +bqc +rTB +btb +jmZ +nrd +bxW +bau +bwv +eiU +cfy +bIa +oeO +bIl +bNl +jRF +onc +bPs +dDd +saF +xol +bIa +hnY +uZW +cbk +wwZ +iDL +fPy +ten +mMB +vwC +cbd +vns +ukV +crR +vIO +cbd +iXW +xdY +oes +lDi +uPA +bWg +cpR +cod +cBS +tuy +gDp +cod +cuQ +cuQ +cjA +cuQ +lqd +bcb +oVH +qZN +cBR +cBR +cBR +cBR +cZt +lUp +lKO +eoT +ddY +hTF +cBR +cBR +cBR +cBR +cxO +chf +vYb +chf +chf +pAM +uAo +chf +lMP +gIn +ukl +cep +cJt +dnR +chf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(179,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +aqZ +aaa +app +app +app +app +app +app +app +aab +aqZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aAf +aCO +uSY +aES +feq +cZu +uvk +aGX +aGX +oVy +aOC +aGX +aGX +oVy +aGX +aGX +aMo +oXN +aGX +aGY +sGs +baz +baz +baz +baz +bir +baz +aYP +dnM +bmG +boy +bcp +brA +btl +vcb +blj +bCS +bau +bFu +nbj +cfy +bIa +bGF +bIl +bNk +bPd +bPd +tvE +bOv +qab +bNQ +bIa +ocX +ccj +cdF +bIa +chM +feR +clj +clY +bUK +cbd +cpr +ceM +csF +hEB +cbd +cwo +tFt +cxW +dRi +ind +bWg +twv +cEk +mDx +cGz +cIO +cpR +vSH +bGG +bGG +bGG +cuQ +bcb +bGG +qZN +qZN +tAp +xUK +hqo +cZy +nqa +rjK +cEH +vIW +kiq +cBR +cJK +fET +cJK +ecZ +kMc +uAg +csL +cDm +eWA +cyJ +chf +qUQ +dmp +kkd +cIm +cJt +sRY +chf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(180,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aab +aqZ +aqZ +mDE +apn +apn +apn +apn +apn +apn +ann +aqZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aAf +aAf +aCP +aDW +aCP +aCP +aCP +fVk +aGX +hxJ +qVv +ycK +aOC +hsz +vmH +sBN +aGX +aGX +six +aGX +aHb +sGs +baz +bcq +beq +bfX +aAP +bjr +aYP +bkZ +bmF +bau +bqd +brB +brG +vcb +blj +bCR +bau +bFz +uKG +cfy +bDq +bKT +jAH +yfi +bPi +bRT +bPi +bPi +bVF +bWl +bIa +bIa +bIa +bIa +bIa +chO +ceN +cln +cmi +wqu +cbd +cny +lcZ +csH +cny +cbd +bXN +bXN +cyC +cAi +cDv +bWg +cCU +crL +csv +cGB +cHA +cIN +bGG +bGG +cMS +enO +lPL +mXz +bGG +cQs +qZN +cSf +cEH +cEH +bER +oLS +fYu +jXI +cNh +oDE +eBF +fpG +fMb +cJK +oJr +cQC +fyM +iBM +ciY +ciY +vMe +ciY +ciY +ciY +ciY +ciY +bGH +ciY +ciY +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(181,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aaa +aab +aab +apq +apq +apq +apq +apq +apq +apq +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aAf +aAf +aBU +aCM +aDV +aEU +aAf +aTg +uvk +dMb +dhM +qMy +sPI +aOC +ton +mDv +wAP +aOC +bmH +ehK +baz +baz +aXd +baz +bcw +bet +bcx +biw +baz +aYP +aYP +aYP +aYP +aYP +aYP +aYP +qFW +bva +aYP +aYP +bFw +uKG +cfy +bDq +bEM +bIk +bNm +bKn +bRQ +bUh +bNJ +oJw +bWk +bLI +cay +hDS +szF +cdd +chN +jdY +bTw +gQD +jpy +cbn +cpt +crn +jSa +tIl +bLR +cwo +vZD +cyB +kew +cAD +bWg +cCT +crL +vyu +pIe +cHz +cpR +hNT +cKy +bGG +bGG +lqd +bcb +jxu +cQr +qZN +cSH +cXA +kzi +cZv +nXu +vYJ +pgX +kRV +wIr +xUX +tMx +qKZ +jIE +oJr +jrt +sLp +uEU +xFd +wrH +wrH +dlP +wrH +fBN +wrH +wrH +wrH +wrH +dwZ +ejw +aPq +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(182,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aaa +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aQU +dQR +aAf +aBd +rAI +aCR +aDY +aEW +aCP +aAY +uvk +aGX +ktP +lPp +aFd +aGX +aFP +iCD +pHd +aOC +aHO +ehK +baz +aXj +aXc +baz +bcu +ber +bga +vwd +nCM +krD +bld +blw +bmI +bmT +buz +vWt +iPF +boJ +bjD +aYP +bwv +uKG +dMJ +bIa +bIa +jnE +bNq +jnE +bIa +kmE +dDQ +liO +cIL +dzp +uvM +mjP +rvf +cdf +dAw +dAw +qbX +uoQ +mxP +uHT +cpD +crq +bPt +ecI +bLR +evo +snj +cAG +lbd +weV +bWg +cCX +crL +nuW +rIw +ktw +cpR +bGG +bGG +bGG +bGG +cuQ +bcb +cuQ +cuQ +qZN +cSh +gsh +toB +gsx +wCd +olv +jXI +cNh +hOz +eBF +dvM +tQn +cJK +oJr +sFy +fyM +nMd +ctq +ciY +euQ +ePu +csL +csL +hyk +csL +csL +csL +ciY +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(183,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +alv +alv +alv +alv +amh +alv +alv +alv +alv +alv +alv +alv +aaa +aaa +aaa +aaa +aaa +aab +aab +aQU +dQR +aaa +aAg +aBc +sEL +aCQ +aDX +aEV +aCP +aHb +uvk +aGX +aGX +aOC +aOC +aGX +aGX +aGX +aGX +aGX +sCE +ehK +baz +aUL +aXg +baz +bcO +bfV +qDr +gYV +bgg +tXB +bln +bmJ +mlF +bmp +buB +bmp +boJ +boJ +byZ +aYP +rND +gZW +cfy +rKV +bGK +bNp +bNp +bKo +bIa +bPz +bRp +bTg +tJA +bLI +wNc +ctI +cdM +cdd +chP +cjO +kst +xiF +kTZ +bLR +cpv +wxL +qei +oIB +bLR +bXN +bXN +cmB +rtA +bXN +bWg +cCV +cEn +cHn +qXp +oqc +cpR +pml +cNt +cKs +cLR +lqd +bcb +cuQ +cQu +qZN +fTy +oSt +qOs +cZz +vuu +egI +oto +tPD +jPb +cBR +cJK +nIF +cJK +ecZ +bUx +ayQ +csL +ciY +ciY +ciY +ciY +ciY +tVF +csL +ciY +ciY +ciY +ciY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(184,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aAg +sFR +xHv +aCS +fzq +aEX +aGd +aMz +uvk +aGX +jpP +bPR +erd +xub +bPR +inm +jJU +aGX +aEB +ehK +baz +aXk +hju +baI +bcx +bcx +bhA +fAL +bgg +tXB +blo +bmO +ipJ +bqg +buA +bqg +boJ +boJ +boJ +aYQ +bwv +uKG +cfy +gLu +bGL +bPD +bKi +bPl +bIa +bIa +bIa +bIa +bIa +bIa +caC +ctI +cdM +cdd +cdd +cdd +cdd +cdd +cla +bLR +bLR +dsz +bLR +bLR +bLR +cAS +cyI +nrC +ctI +cCf +rKV +cpR +cpR +ctu +ogg +ctu +cpR +rKV +rKV +rKV +rKV +rKV +bZI +rKV +qZN +qZN +cBR +uPe +cBR +oJr +oJr +oJr +oJr +oJr +oJr +oJr +oJr +oJr +oJr +oJr +kMc +uAg +csL +djP +cQC +dlj +dlz +dSu +csL +csL +cKF +ciY +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(185,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aAg +fTO +aBV +uYz +gJH +lBb +aGc +pcF +lxC +jPW +jtl +tmd +gsN +aIv +owR +psV +paz +aGX +leF +ehK +baz +aYx +aXe +baz +bcC +bcz +bcz +dKH +baz +qPx +boJ +blz +xPH +boJ +boJ +boJ +boJ +boJ +eof +xRk +dxX +uKG +bwv +lRy +nOo +nOo +onM +cbq +bMt +rKV +bRq +nLC +bWq +rKV +sNJ +ctI +eGm +bNp +bNp +bNp +bNp +bNp +hLu +dsy +cKT +nXo +cbq +cEs +cbq +cyI +ctI +nvq +ctI +cbq +cBB +cbq +cEs +cbq +lvJ +cbq +cLa +gVu +cNx +cKT +rKV +cQB +hhn +dnY +cBR +lCQ +cWr +vcy +cNl +oJr +tlI +vum +ojz +dci +lon +veM +xsx +reO +rCg +ugC +cga +ayQ +hyk +ePu +hyk +hyk +csL +ciY +vZV +iBM +cHf +cBQ +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(186,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aaa +aAg +aBh +aBX +pRv +qJf +aEZ +aAf +aGY +aGY +aGX +qgy +nlI +yiZ +aGX +omd +hak +dTW +aGX +sCE +ehK +aYP +aYP +aYP +baz +bcB +bcz +bcz +bcz +baz +bjA +bpM +blx +xUG +sRx +sRx +bxB +sRx +sRx +xZg +oRu +uyO +kdx +nhF +lEo +gZS +bIo +opj +jCt +xmA +bUk +xia +jCt +oLm +sFh +sbs +sqn +xRV +dAD +aeJ +sbp +sbp +sbp +gqu +sbp +sbp +giy +vXN +sbp +sbp +aeJ +aeJ +ndQ +aeJ +aeJ +cDC +aeJ +aeJ +fKW +xKi +pmv +kyf +pmv +nkt +nkt +miq +jRz +seI +xqp +val +kEA +pPj +kWx +xFt +oJr +eKA +ijg +hra +ciY +nKO +rkL +ieP +gPb +ciY +csL +jPx +uAg +ciY +ciY +ciY +csL +csL +ciY +csL +csL +ctq +cBQ +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(187,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aaa +aAg +aBf +jfb +azS +aAb +aAL +aAf +aGY +aHO +aGX +grC +nlI +nSN +aGX +aOC +aOC +aGX +aGX +aQL +ehK +aYP +aYA +baA +baz +baz +bvN +bgg +bgg +baz +bjI +boJ +blz +qTl +boJ +boJ +boJ +boJ +boJ +lYm +bEl +uMZ +aAR +bwv +lRy +nOo +nOo +aRO +spl +vOq +sSQ +fxD +woA +bqb +sSQ +uMa +awK +ctI +wci +spl +cgq +spl +keJ +ufq +spl +spl +uMa +lvJ +spl +uMa +uMa +ctI +spl +spl +aac +ufq +spl +spl +lvJ +spl +spl +hug +spl +spl +spl +rKV +yku +mCV +gSR +inQ +miN +xTZ +qyf +osm +oJr +ksj +mdX +veM +ciY +hWu +xvs +ezG +dup +ciY +ugC +csL +szS +ciY +aaa +ciY +ciY +dci +ciY +cDo +csL +bUx +dSu +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(188,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aaa +aAg +aBj +aVD +aCV +aEa +aFb +aCN +xLs +aGX +aGX +aGX +aGX +aGX +aGX +aJN +aKZ +qYO +aQI +sCE +gXX +aYP +aYz +sgZ +bay +bcF +bcD +gxW +bcD +bjs +bcD +bln +bmJ +vFw +bmp +buB +bmp +boJ +boJ +boJ +aYQ +bwv +aAR +cXh +gLu +bGD +bIy +bKj +bNC +bED +bTb +bTb +bTb +bTb +bTb +uMa +awK +spl +cdk +cbj +cbj +tks +cbj +cbj +cbj +cbj +iZj +lvJ +xdy +rKV +gLu +cvc +gLu +rKV +qhq +qhq +yiF +yiF +cFI +yiF +qhq +rKV +gLu +gLu +rKV +rKV +rKV +lQV +rKV +oJr +oJr +oJr +oJr +oJr +oJr +mhm +pAl +kdh +ciY +ciY +uXA +uXA +wUT +ciY +cQC +csL +mMY +cBQ +aaa +cBQ +cDo +ePu +csL +csL +csL +dSu +ciY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(189,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aAf +aBe +jUn +aBg +aBg +aFa +aAf +sCE +nRP +cYX +orY +kMN +eFs +mCw +aJL +aKY +aMz +aUU +sCE +vNj +bjg +txu +mEF +aZF +bcP +bgb +sUQ +bcD +bjs +bcD +blo +bmO +bdQ +bqg +buA +bqg +boJ +boJ +bzl +aYP +bFB +aAR +cXh +rKV +eER +vGj +vGj +geb +bED +oyO +viP +nin +bts +bTe +uMa +awK +dVG +cbj +cbj +azG +ekQ +qvV +ekQ +cmX +cbj +crz +lvJ +fTR +rKV +gbs +nOo +xwb +vuN +qhq +lNS +cDe +oFq +pwE +cIC +lvb +aab +aab +aab +aab +cBQ +cBe +wVG +krV +emy +jmU +ciY +vBC +ePu +lcL +lhl +iPb +skT +xII +ciY +ciY +ciY +dci +ciY +cQC +csL +fyM +cBQ +fpO +cBQ +asu +hyk +ugC +csL +csL +ciY +aaa +alv +alv +alv +alv +alv +alv +alv +alv +alv +amh +alv +alv +alv +alv +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(190,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aAf +aAf +aBW +aCW +aEc +aAf +aAf +lvE +oQv +sCE +aIE +tKa +qTK +aGX +aGX +aGX +aGX +aJM +aGY +ehK +aYP +aYB +baB +aZm +bdY +bfS +bgi +bgi +aYP +bcD +blm +bcD +bmK +bcD +bcD +bcD +boJ +boJ +qyq +aYP +xmi +aAR +cXh +bED +bED +hLG +cYh +cYh +bED +cZp +cZT +xcO +oOz +vzI +sbp +nwR +cdP +cbj +cFc +dDw +oAD +cmF +oAD +cnb +cbj +cqn +lvJ +spl +rKV +gVT +nOo +ygr +gFV +cCc +ebu +jqN +cDw +mgo +cHw +cAP +cLb +cLb +cLb +cLb +cLb +xDr +wpu +fZu +cBQ +rQO +ciY +gjN +cga +ciY +xHJ +rWd +kso +cXE +ciY +csL +ciY +ugC +cBe +cga +cga +fyM +dSu +aaa +ciY +csL +vzq +ciY +ciY +ciY +ciY +ciY +alv +aaa +aaa +aab +aab +aaa +aaa +aab +aab +aaa +aaa +aab +aab +aaa +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(191,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aAf +aAf +bJJ +weK +aAf +aAf +aAf +weK +weK +euT +aGX +qDq +wFr +asJ +fOq +aNi +jne +klS +sEu +syE +aYP +aYG +baC +aZm +bcR +bfS +bgi +bhZ +aYP +bjp +aYP +bmg +aYP +bmU +bgf +aYP +aYP +aYP +aYP +aYP +bFH +xmu +cXh +bED +bJr +bLo +bNt +qvO +mTA +rYr +bIp +lmS +bWv +bTe +caS +wet +pwk +cqc +kHG +gkm +vKr +vcm +hzy +cmZ +qaD +crG +dtL +ctI +cvc +nOo +nOo +yfn +kYr +cCi +ygK +oBs +cEu +vdL +cID +cAP +cLj +cLe +nTm +cOu +cLb +cLb +eKC +mhW +gzz +ciY +ciY +csL +ePu +ciY +ciY +ciY +ciY +ciY +ciY +ciY +ciY +uuH +ePu +hyk +cga +fyM +ciY +ciY +ciY +csL +csL +dSu +jTS +dql +uRK +ciY +xhe +aaa +doh +ddP +doG +aab +doh +ddP +doG +aab +doh +ddP +doG +aaa +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(192,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aAf +gSU +lOM +mFI +aCN +wqv +jsR +dXx +weK +hZH +qgQ +aGY +lzb +hkN +qEW +aGX +aUW +aGY +tUD +aGY +aYP +aYF +baC +aXh +bcR +aLS +bgi +bgi +aYP +vTz +hFx +fbA +aYP +aYP +aYP +aYP +aaa +aaa +aab +bte +bGj +aAR +cXh +eiJ +pcX +bBc +cZD +rzF +cZD +cYO +bIp +bIp +cOC +bED +rKV +dbx +rKV +cbj +bGp +dDw +cif +cjV +wym +otW +cbj +cqa +csM +cto +rKV +ocw +nOo +xeq +rkS +cCc +cBC +cDt +cFY +cHo +oLe +cJT +nXB +ygu +dtN +dtN +cPA +cLb +cRy +thV +mxA +oBq +fJa +qEt +lbM +ciY +csL +cAd +mBE +ueT +csL +dGF +gWv +nwG +xhA +gWv +kPE +dea +vMe +iot +lAc +csL +csL +ciY +gVD +ssL +wWp +dSu +amh +aab +doh +ddQ +doG +aaa +doh +ddQ +doG +aaa +doh +ddQ +doG +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(193,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aAf +hew +jrD +fZO +mZp +fBy +gmE +gXj +pMD +aMq +aUY +aPO +tWd +aPO +aMq +aUY +aMq +aGX +iIW +aGX +aYP +aYP +aYP +aYP +aXl +aYP +aYQ +aYQ +aYP +aYP +aYP +aYP +aYP +aab +aaa +aaa +aaa +aab +aaa +bte +bwv +aAR +cXh +eiJ +lTr +evC +xRG +rzF +cZD +rYr +bIp +bIp +eXy +bED +cHf +dbX +csL +cbj +cbj +hPx +lGY +cif +clw +cnf +pyI +crI +awK +spl +rKV +qkz +nOo +czc +jCu +cAP +cDD +cDG +cFU +cHp +cIF +ojb +oEK +cLe +tWz +rRX +cPz +wEe +hDd +oEu +wAd +ciY +ciY +eaT +lZw +oph +nwG +nwG +gWv +gWv +gOE +qxd +ciY +bUx +csL +csL +bVd +cga +ePu +ePu +dkv +isD +csL +jPw +fqt +lHw +dbo +ciY +aab +aaa +doh +ddQ +doG +aab +doh +ddQ +doG +aab +doh +ddQ +doG +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(194,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aAf +vWN +qjA +pmH +aAf +fsm +wtq +dNc +pMD +aCL +aDZ +aMq +aMg +aMq +weG +npQ +aMq +nhw +nxy +mSI +dSj +ptw +aGX +aaa +aaa +aab +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bte +ree +aAR +cXh +eiJ +nFG +rzF +fgr +hhW +rPU +vuU +kxm +dVQ +xXO +bED +bUx +cga +csL +kMc +cbj +cbj +cbj +cbj +cbj +cbj +cbj +rKV +evS +rKV +rKV +afs +hTK +cze +oJo +cAP +fBk +bWR +cGa +cHq +cIE +cJP +cLe +cLe +cLe +cLe +vWz +cLb +pbY +nrP +cwK +fcM +cwK +qVP +tqd +ciY +kMc +jjs +csL +hyk +hFz +ugC +ciY +ciY +ciY +dSu +bVd +ePu +vMe +cKF +ctq +cDo +ciY +ciY +ciY +ciY +ciY +ciY +aab +aab +doh +ddQ +doG +aab +doh +ddQ +doG +aaa +doh +ddQ +doG +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(195,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aAf +mbZ +teD +nOW +aAf +oQT +xoT +xEA +aMq +aCU +aOL +aEY +dox +aOL +ssI +mYn +aMq +qtT +nxy +xEb +awN +aJE +cqC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bte +bwv +aAR +cXh +bED +nLa +bLp +bNu +bxX +eLE +ezy +bIp +yiu +tYP +bED +cKF +csL +cga +csL +qth +csL +csL +dbX +csL +csL +ciY +crJ +vbf +csc +ciY +ciY +ciY +ciY +ciY +cAP +cDF +cHr +cFZ +cHr +pCx +cAP +cLe +fEI +pSb +sSP +cLb +cLb +ePp +jPx +gzz +gzz +dSu +inc +mtx +ciY +cDo +csL +ugC +ciY +xML +dSu +ciY +gEj +rVK +ciY +uwe +csL +ciY +djQ +djQ +djQ +djQ +dlT +aaa +aaa +aaa +aaa +aab +aaa +doh +ddQ +doG +aab +doh +ddQ +doG +aab +doh +ddQ +doG +aaa +aaa +alv +alv +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(196,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aAf +lJT +fVg +kuG +aAf +moA +qAn +uXy +aMq +aNm +aEY +nxY +vUy +ndX +aOL +mYn +aMq +qtT +heW +kwk +aJE +pQu +aGX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +bEF +bEF +bEF +bEF +bEF +bHS +wri +iBI +bED +bED +bED +bED +bED +bED +bED +bUT +bED +bED +bED +dbz +cAw +osq +rTm +osq +cwK +ksJ +osq +osq +xYl +psP +rXw +rSz +vmk +kqT +wvz +wvz +gKL +rhK +cAP +cDH +cFb +cGd +cHs +pwf +cAP +cLb +cLb +cLb +cLb +cLb +qOI +nMG +kep +mQX +jyo +ciY +dHc +pOY +ciY +yjF +ePu +ugC +ciY +ofq +osq +dXm +dXm +mxJ +cQw +bVd +ePu +djC +djQ +deS +dfb +dfn +dlT +dlT +dlT +aaa +aaa +aab +aaa +aab +ddR +aaa +aaa +aab +ddR +aaa +aaa +aab +dee +aaa +aaa +aaa +aab +aaa +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(197,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aAf +xPw +tbW +eQY +aCN +pOo +jbh +uXy +aMq +aMq +aMq +aPS +aQT +aOL +hFP +aUh +aMq +rPa +hLa +aJE +tOQ +aGX +aGX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bEF +bEF +dBt +rFe +hpY +glD +bmm +oNu +cXj +uuo +iSv +bNv +bNv +boD +ciY +cDo +csL +cga +pEO +csL +csL +ceU +ciY +ciY +hMr +ciY +ciY +cKF +tVF +csL +ciY +hdW +aRJ +ctE +ciY +ugC +csL +dbX +hFE +cAP +lXi +cHr +tMg +cHr +wAG +cAP +aab +vkV +aaa +aab +ciY +tjb +cga +fGT +nBI +tVF +ciY +lrW +ciY +ciY +kMc +csL +csL +slp +csL +csL +tZu +fvV +fJD +slp +eSz +duF +cOm +dcm +deN +dfa +tMT +kYu +sTF +lCG +hDJ +ddE +ddE +ddN +cTW +cTW +cTW +cTW +cTW +cTW +cTW +ded +ddE +def +ddE +ddE +ddE +deg +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(198,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +afO +aMr +aAf +rPv +pfB +okb +aAf +msr +axr +hmj +aMq +aNp +aDZ +aEY +dew +aOL +aOL +uhU +aMq +wZb +jeP +nzp +aGX +aGX +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bEF +bsP +bmm +bmm +bmm +bmm +bmm +oNu +bmm +bmm +bmm +bmm +bmm +iIB +hMr +csL +cga +gww +csL +rng +csL +tVF +ciY +fVy +dbX +ctq +cgs +cgs +cgs +cgs +cgs +crK +qQO +fUW +cgs +cgs +tVF +csL +nSH +rSS +cAP +poC +tVd +fjx +cAP +cAP +ciY +ciY +ciY +ciY +ciY +xPb +ciY +ciY +cQw +ciY +ciY +uCU +iYo +ciY +csL +hyk +csL +ciY +ciY +csL +ylW +dfU +baZ +ciY +cBe +csL +lrL +deE +deZ +dfj +dfp +dlT +dlT +dlT +aaa +aaa +aab +aaa +aab +ddT +aaa +aaa +aab +ddT +aab +aaa +aab +dee +aaa +aab +aaa +aab +aaa +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(199,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dQR +aAf +aAf +aAf +aAf +aAf +aAf +aAf +aAf +aMq +aNo +aDZ +aDZ +aQY +aEY +hrK +mYn +aMq +aGX +cqC +aGX +aGX +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +bEF +bsO +kgC +kaa +fJe +fJe +fJe +nYF +fJe +fJe +fJe +iMm +dMS +aOM +ciY +rng +csL +cga +iBM +pZe +ciY +ciY +ciY +cpE +dbX +qrd +cgs +duq +xAw +iJf +cqj +cmQ +tXP +qAo +cuZ +cgs +cDo +csL +nSH +ugC +cAP +cAP +cAP +cAP +cAP +rID +cga +cga +ePu +gLA +uwi +nSH +cQw +cga +rng +ciY +euQ +nUZ +mzM +qhY +mzM +fqR +csL +cga +ciY +bGH +ciY +ciY +dSu +ciY +rID +csL +ciY +djQ +djQ +djQ +djQ +dlT +aaa +aaa +aaa +aaa +aab +aaa +doh +ddU +doG +aab +doh +ddU +doG +aab +doh +ddU +doG +aaa +aaa +alv +alv +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(200,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +afO +dQR +aaa +aaa +dQR +dQR +tnb +dQR +aMq +aNq +aNk +aOK +aQW +aRZ +aTj +aUg +aMq +dQR +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bjR +uLo +bmm +inj +bmm +lIV +bGh +bGh +bGh +lIV +bmm +yha +bmm +cZn +ciY +xxa +csL +eGo +csL +mZs +hMr +csL +dbX +tVF +ciY +ciY +cgs +xWg +cvb +cqk +fMa +oRP +qHw +qAo +cva +cgs +cDo +csL +cvQ +cga +cBe +ePu +rID +vMe +cBe +cga +gll +btE +lhy +wvz +pfF +hes +osq +osq +igV +hyk +cga +hyk +csL +ciY +ciY +nUZ +mzM +mzM +cLu +mzM +fqR +csL +csL +dci +csL +cga +ciY +kgc +ciY +aab +aab +aab +aab +aab +aab +aab +aab +aab +doh +ddU +doG +aaa +doh +ddU +doG +aaa +doh +ddU +doG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(201,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aaa +aaa +aaa +aaa +aaa +aMr +aab +aMq +aMq +aMq +aMq +aMq +aMq +aMq +aMq +aMq +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bjR +ylC +eEO +rkR +bCX +bAK +xze +eje +jYv +bEF +cXs +crw +vvK +iIB +ciY +csL +cga +ciY +exC +ciY +ciY +ciY +ciY +ciY +ciY +uCf +smz +nMi +hhf +cqe +csr +crN +csi +ctL +lDx +cgs +cgs +oTk +gwo +vmk +vmk +gPW +lhy +mvm +vmk +jlt +lpu +ciY +ciY +cDo +cga +csL +ePu +cga +hFz +csL +hyk +csL +csL +baZ +ciY +nNb +cIr +csL +ciY +ucE +jdz +iMG +ciY +ciY +ciY +dZA +ciY +ciY +ciY +aaa +aaa +aab +aaa +aaa +aaa +aaa +aab +aaa +doh +ddU +doG +aab +doh +ddU +doG +aab +doh +ddU +doG +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(202,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aMr +aab +aaa +aaa +dQR +dQR +aQU +dQR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bjR +fjd +bmm +inj +bCT +cOn +bwD +cVV +bwD +sNQ +cXp +yha +bmm +vGq +ciY +csL +bUx +ciY +tga +dzN +ciY +xKa +aLe +aLe +aLe +aLe +uAL +ycj +oGU +ppH +hsQ +oRB +ahB +oRB +oRB +cgE +cgs +ciY +cwS +ciY +ciY +csL +ofP +ciY +ciY +ciY +ciY +ciY +uHX +csL +ugC +csL +cDo +csL +hFz +cKF +cKF +csL +ePu +csL +ciY +dbi +csL +tVF +ciY +ciY +wyv +ciY +ciY +fxN +kEe +kju +ibW +jtP +cBQ +aaa +aab +aab +aab +aab +aab +aab +aab +aab +doh +ddU +doG +aaa +doh +ddU +doG +aab +doh +ddU +doG +aab +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(203,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aMr +aMr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +bjR +uLo +bmm +inj +bCT +lSz +bwC +bzd +bwC +xho +cXp +yha +bmm +qzV +ciY +cga +hZN +ciY +wYs +hbu +ciY +rQr +cgs +cgs +cgs +cgs +cgs +qnk +lRi +hAR +hSN +crQ +bZq +ctO +oJc +rAR +cgs +jwr +fPr +mMk +ciY +hMr +ciY +ciY +smL +ciY +hLl +ciY +bGH +ciY +ciY +ciY +cQw +mQX +rjh +ciY +cQw +cQw +ePu +csL +ciY +ciY +dZA +ciY +ciY +aab +owP +aab +cBQ +gPM +kju +xtZ +aPr +vhf +cBQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +amh +aaa +doh +deb +doG +aab +doh +deb +doG +aab +doh +deb +doG +aaa +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(204,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bjR +ylC +fOi +aUR +bCT +wKx +bxz +bwD +bxz +isK +cXp +vBV +jqU +wVi +ciY +csL +kgg +ciY +vBX +cga +ciY +rQr +cgs +gHx +hDN +nTk +vBv +vXo +ijP +qLp +kLc +cqk +cqk +ctQ +doK +nBc +cgs +vDX +uwe +ctq +ciY +csL +raL +ciY +dci +ciY +rSe +ciY +rng +rng +mQX +cIu +vsw +wPs +oBz +xde +ciY +djP +ePu +wew +ciY +odD +qYC +tue +ciY +aab +wHA +aab +cBQ +awM +kju +kju +kju +hgb +cBQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +alv +aaa +aaa +aab +aab +aaa +aab +aab +aaa +aab +aab +aab +aaa +aaa +amh +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(205,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bjR +fjd +bmm +inj +bDp +bEF +gin +nPm +jwn +bAK +cYe +yha +bmm +gOd +ciY +csL +csL +ciY +fAH +mlv +ciY +rQr +cgs +goX +ooY +afu +vBv +evw +orf +iFq +wgI +csq +csq +csr +doF +uDR +cgs +qCZ +sRw +vaz +ciY +csL +fmn +qth +iBM +oXK +isD +ciY +hyk +hyk +mQX +rMb +csL +psT +fQI +csL +cja +djP +ePu +cDo +ciY +rfh +sPu +sLZ +ciY +aab +aab +aab +ciY +ciY +igq +geH +fPR +ciY +ciY +aab +aab +aab +aab +aab +aab +aab +alv +alv +alv +alv +alv +alv +alv +alv +alv +alv +alv +alv +alv +alv +alv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(206,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aab +aab +bEF +bta +bmm +inj +bmm +nAs +bGo +bGo +bGo +nAs +bmm +yha +bmm +hnb +ciY +hMr +ciY +ciY +ciY +ciY +ciY +rQr +cgs +kIT +jzz +lVB +vBv +oGw +cqe +mqK +cfK +nhs +kwP +frm +cvr +nRx +cgs +qcp +uwe +voo +ciY +ciY +csL +awx +jPZ +fmn +csL +vOs +cga +ePu +cQw +otv +dLN +hyk +dLN +lHs +ciY +vbq +oxf +ciY +ciY +uls +wml +dUv +ciY +aaa +aaa +aaa +aaa +ciY +cBQ +cBQ +cBQ +ciY +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(207,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aaa +bjR +bzO +eEO +rkR +oWE +oWE +oWE +hqe +oWE +oWE +oWE +dYR +vvK +iIB +bmm +bmm +bEF +xKa +aLe +aLe +aLe +pVW +cgs +bES +bES +bES +cgs +kzo +uid +fDJ +rAN +fDJ +fDJ +fDJ +fDJ +cgs +cgs +oPX +jQD +asF +csL +ciY +qup +ciY +ciY +ciY +qup +ciY +wLu +pTs +cKE +ciY +kiF +hBu +gRU +baZ +cQw +ciY +ePu +tVF +ciY +ciY +vMe +ciY +ciY +ciY +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(208,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bjR +bzO +bmm +inj +bmm +bmm +bmm +oWE +bmm +bmm +bmm +ujY +bmm +iIB +bmm +vFk +bEF +ipF +aLe +aLe +aLe +pVW +aaa +aaa +aab +aaa +aaa +aaa +fDJ +oND +vue +ioU +tPX +dFd +fDJ +aab +ciY +csL +ePu +uhA +hmu +ciY +ciY +ciY +qeI +ciY +ciY +ciY +cKF +uxB +cQw +csL +cga +vlh +wvD +dbX +cga +cQw +cBe +ciY +ciY +nCZ +nCZ +nCZ +fjf +ciY +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(209,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bjR +bzO +bmm +inj +gOd +bjR +iek +oWE +gOd +bjR +iek +ujY +bmm +iIB +hCr +bEF +bEF +aaa +aaa +aaa +aab +aaa +aaa +aaa +aab +aaa +aaa +aaa +fDJ +vjd +sSS +kCd +gXL +xhR +fDJ +aab +ciY +cBQ +cBQ +yjR +cBQ +ciY +pCv +ciY +rGa +ciY +vHJ +ciY +bUx +ePu +cja +csL +rbZ +ePu +mJi +pqA +cIu +ciY +ePu +ctq +ciY +nCZ +iXD +nCZ +hXR +ciY +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(210,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bEG +bEG +bEG +bEG +bEG +mxH +fOi +aUR +gSE +nHv +iek +oWE +gOd +nHv +swk +hsP +jqU +mSJ +bEF +bEF +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aab +aaa +aaa +aaa +fDJ +ska +gWp +vyQ +mJp +jRM +fDJ +aaa +aaa +aab +cBQ +cGW +cBQ +ciY +sKQ +oBM +llx +upZ +lHm +ciY +fPq +cga +ciY +pbc +ctq +tVF +kpR +raH +eba +ciY +cga +cHf +ciY +nCZ +nCZ +nCZ +pko +ciY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(211,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bEG +pAU +gnG +rLo +bEG +bEG +buT +inj +gOd +bjR +iek +mmt +gOd +bjR +iek +byl +bmm +iIB +bEF +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +fDJ +qGU +qGU +qGU +fDJ +mpm +fDJ +aab +aaa +doE +cBQ +mAZ +cBQ +ciY +qlE +cBQ +ece +kBI +eNn +ciY +tVF +iZV +ciY +mQX +ciY +csL +ciY +ciY +ciY +ciY +cja +ciY +ciY +sxv +jOj +hXR +ciY +ciY +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(212,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bEG +iIA +bol +mHO +lbD +bEG +bEG +gUm +bmm +bmm +bmm +oWE +bmm +bmm +bmm +byl +bmm +rnx +bEF +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aaa +doE +aab +aab +doE +doE +rFZ +doE +ciY +ciY +ciY +ciY +qvf +vFV +ciY +euQ +ePu +jgA +tVF +gmU +jPx +gmU +jgA +wgA +cga +ePu +ciY +ciY +ciY +ciY +ciY +ciY +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(213,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bEG +xeG +bol +qtJ +mHO +bvP +bzx +inj +oWE +oWE +oWE +oWE +oWE +oWE +oWE +cDp +kgC +skf +bEF +aaa +aaa +aaa +aaa +aaa +aYm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aaa +aaa +doE +aaa +alv +aaa +aaa +rPK +aaa +aab +aaa +aab +ciY +ciY +ciY +ciY +xmq +csL +sem +sem +jgA +vrA +vMa +pXY +ciY +hyk +csL +ciY +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(214,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +lXA +fhe +goN +edQ +bvR +bvR +bzD +mcq +ido +pya +bmm +bmm +bmm +lEZ +ido +vws +ido +vKP +bEF +sGl +aab +aab +aab +aYm +aYm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aaa +aaa +doE +aab +alv +aaa +aaa +rPK +aaa +aaa +aaa +aaa +aab +aab +aab +ciY +ciY +cBQ +ciY +ciY +ciY +ciY +ciY +ciY +ciY +cQC +meB +ciY +aab +aaa +aab +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(215,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +yig +bmL +bol +buE +bEG +btk +bEG +bqn +bAE +bjR +bjR +bjR +bjR +bjR +bAE +bqn +bAE +bqn +bEF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +doE +aaa +aab +aab +aaa +rPK +aaa +aab +aaa +aab +aab +aaa +aab +aab +aaa +aab +aaa +aaa +aab +aab +aab +aab +ciY +ciY +ciY +ciY +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(216,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +kWu +lVU +ecV +nkk +rxW +btp +bol +bjR +boI +bjR +tnJ +pXs +eWC +bjR +boI +bjR +boI +bjR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +abp +doE +aaa +aab +aab +doE +rPK +doE +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(217,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bEG +bEG +jza +mYv +bol +btp +bol +bjR +bAN +bEF +cWE +bGN +dgz +bEF +brL +bjR +bol +bjR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oiQ +aaa +aaa +doE +aaa +xRM +aab +aaa +rPK +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(218,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bEG +owa +ndH +brD +btp +bol +bjR +bol +bqn +cWQ +bGM +fEO +bqn +bol +bjR +bol +bjR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aaa +aaa +doE +aaa +alv +aaa +aaa +rPK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(219,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bEG +bEG +bEG +bEG +bEG +xir +bjR +xir +bjR +bjR +bjR +bjR +bjR +xir +bjR +xir +bjR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xRM +aab +aaa +doE +aaa +oiQ +aaa +aaa +rPK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(220,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +brK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +doE +aaa +aab +aaa +doE +rPK +doE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(221,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +doE +aaa +aab +aaa +aaa +rPK +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(222,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aaa +aaa +doE +aaa +alv +aaa +aaa +rPK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(223,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alv +aaa +aaa +doE +aaa +alv +aaa +aaa +rPK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(224,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +amh +aaa +aaa +doE +aaa +alv +aab +doE +rPK +doE +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(225,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +doE +doE +doE +aaa +aaa +aab +aaa +aaa +doE +doE +doE +doE +doE +rPK +doE +doE +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(226,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +qcH +cic +clB +cnk +cid +cie +cie +cie +cvs +cie +cie +cie +cnk +cic +wNp +cic +qcH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(227,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +cic +cjZ +cjZ +cjZ +cie +cie +ckb +cdK +cjZ +udq +ckb +cie +cie +clA +lNG +aKM +cie +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(228,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +cic +cjZ +cjZ +cjZ +clB +ckb +ckb +cdK +cjZ +udq +ckb +ckb +cie +jgm +fYN +kKV +cie +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(229,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +cic +clA +kOa +jgm +cie +ckb +ckb +cdK +cjZ +udq +ckb +ckb +clB +puj +uMu +qEP +cie +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(230,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cid +cid +cie +cie +cie +ckb +ckb +cdK +cjZ +udq +ckb +ckb +cie +cie +cie +cid +cid +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(231,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cid +cie +cie +ckb +ckb +ckb +ckb +cdK +cjZ +udq +ckb +ckb +ckb +ckb +cie +cie +cid +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(232,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cij +cie +ckb +ckb +ckb +ckb +ckb +cdK +cjZ +udq +ckb +ckb +ckb +ckb +ckb +cie +cij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(233,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cie +ckb +ckb +ckb +ckb +ckb +ckb +cdK +cjZ +udq +ckb +ckb +ckb +ckb +ckb +ckb +cie +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(234,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +cie +cic +clH +ckb +ckb +ckb +ckb +cdK +nnC +udq +ckb +ckb +ckb +ckb +cDN +cic +cie +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(235,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +cie +ckb +ckb +ckb +ckb +ckb +ckb +oFj +cvt +asI +ckb +ckb +ckb +ckb +ckb +ckb +cie +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(236,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +cij +cie +ckb +ckb +ckb +ckb +ckb +nGV +syl +uac +ckb +ckb +ckb +ckb +ckb +cie +cij +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(237,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +cie +cie +ckb +ckb +ckb +ckb +ckb +ckb +ckb +ckb +ckb +ckb +ckb +cie +cie +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(238,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +cie +cie +ckb +ckb +ckb +ckb +ckb +ckb +ckb +ckb +ckb +cie +cie +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(239,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +cie +cie +ckb +ckb +ckb +ckb +ckb +ckb +ckb +cie +cie +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(240,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +cie +cie +jUt +ckb +cvv +ckb +jUt +cie +cie +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(241,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +cie +cie +ckb +cid +ckb +cie +cie +aab +aab +aaa +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(242,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aaa +aaa +aab +aab +cij +cie +cie +cie +cij +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(243,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(244,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(245,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(246,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(247,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(248,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(249,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(250,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(251,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(252,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(253,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(254,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(255,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} diff --git a/_maps/map_files220/delta/delta.dmm b/_maps/map_files220/delta/delta.dmm new file mode 100644 index 000000000000..3ff0020f5264 --- /dev/null +++ b/_maps/map_files220/delta/delta.dmm @@ -0,0 +1,168832 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/space, +/area/space) +"aae" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Singularity"; + name = "Singularity Blast Doors" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"aaj" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/pet/dog/security/warden, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/warden) +"aaH" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/structure/table/glass, +/obj/item/reagent_containers/food/snacks/grown/banana{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/reagent_containers/syringe/antiviral{ + pixel_y = 8; + pixel_x = -4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology/lab) +"aaZ" = ( +/obj/effect/landmark/spawner/carp, +/turf/space, +/area/space) +"abj" = ( +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"abv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/station/maintenance/auxsolarstarboard) +"abw" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"abQ" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/starboard2) +"abV" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "GYM"; + name = "Dungeon Privacy Shutters" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/interrogation) +"ace" = ( +/obj/machinery/power/solar{ + name = "Aft Starboard Solar Panel" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/maintenance/auxsolarstarboard) +"acf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/space, +/area/station/maintenance/auxsolarstarboard) +"acg" = ( +/obj/structure/lattice/catwalk, +/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/space, +/area/station/maintenance/auxsolarstarboard) +"ach" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/space, +/area/station/maintenance/auxsolarstarboard) +"aci" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/space, +/area/station/maintenance/auxsolarstarboard) +"acj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/space, +/area/station/maintenance/auxsolarstarboard) +"acn" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"aco" = ( +/obj/structure/lattice/catwalk, +/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/space, +/area/station/maintenance/auxsolarstarboard) +"acp" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/maintenance/auxsolarstarboard) +"acs" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"acC" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"acE" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/space, +/area/station/maintenance/auxsolarstarboard) +"acF" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"acG" = ( +/obj/machinery/power/solar{ + name = "Aft Starboard Solar Panel" + }, +/obj/structure/cable, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/maintenance/auxsolarstarboard) +"acS" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"acU" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/gun{ + pixel_x = -2 + }, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun{ + pixel_x = 2 + }, +/obj/item/gun/energy/gun{ + pixel_x = 4 + }, +/obj/item/gun/energy/gun{ + pixel_x = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"acX" = ( +/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/wood/oak, +/area/station/science/robotics/showroom) +"adb" = ( +/turf/simulated/wall, +/area/station/hallway/secondary/entry) +"add" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_1) +"ade" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/pod_1) +"adg" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/maintenance/auxsolarstarboard) +"adh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/space, +/area/space/nearstation) +"ado" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"adr" = ( +/obj/structure/table/reinforced, +/obj/item/kitchen/knife, +/obj/item/kitchen/rollingpin, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"adt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/starboard) +"adu" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"adx" = ( +/obj/machinery/status_display/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_1) +"adz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/space, +/area/space/nearstation) +"adA" = ( +/obj/structure/bookcase/random, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"adL" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_1) +"adN" = ( +/turf/simulated/wall/r_wall, +/area/station/hallway/secondary/entry) +"adO" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_1) +"adR" = ( +/obj/structure/cable{ + 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/station/maintenance/port) +"adS" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"adZ" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aea" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"aeb" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aec" = ( +/obj/item/kirbyplants, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aed" = ( +/obj/docking_port/mobile/pod{ + id = "pod1"; + name = "escape pod 1" + }, +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock"; + name = "Escape Pod Hatch" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_1) +"aee" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/arrival/station) +"aef" = ( +/obj/machinery/door/airlock/external{ + id_tag = "admin_home"; + locked = 1 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aeg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aeh" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + 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/plasteel/white, +/area/station/science/robotics/chargebay) +"aes" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/machinery/computer/sm_monitor{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/controlroom) +"aet" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"aey" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"aez" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"aeA" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"aeC" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"aeI" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aeJ" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"aeK" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 8 + }, +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_4) +"aeL" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_4) +"aeM" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"aeN" = ( +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"aeO" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/decal/warning_stripes/east, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aeP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aeQ" = ( +/obj/docking_port/mobile/pod{ + dir = 4; + id = "pod4"; + name = "escape pod 4" + }, +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock"; + name = "Escape Pod Hatch" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_4) +"aeT" = ( +/obj/item/mounted/frame/apc_frame, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"afa" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_4) +"afb" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"afc" = ( +/obj/structure/sign/pods{ + pixel_x = -32 + }, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"afd" = ( +/obj/machinery/status_display/directional/north, +/obj/machinery/light/directional/south, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_4) +"afe" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/pod_4) +"aff" = ( +/obj/structure/closet/emcloset, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"afg" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/auxsolarstarboard) +"afh" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"afi" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"afj" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/northeast, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"afk" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/station/hallway/secondary/entry) +"afl" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/hallway/secondary/entry) +"afm" = ( +/mob/living/simple_animal/pet/cat/birman/Crusher, +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/station/hallway/secondary/entry) +"afn" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/warning_stripes/northwest, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"afx" = ( +/obj/machinery/power/smes, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"afy" = ( +/obj/machinery/camera{ + c_tag = "Fore Starboard Solars"; + network = list("SS13","Engineering") + }, +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"afz" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/item/wrench, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/hallway/secondary/entry) +"afC" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/hallway/secondary/entry) +"afG" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"afJ" = ( +/obj/machinery/status_display/directional/west, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"afM" = ( +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/machinery/door/airlock/engineering{ + name = "Fore Starboard Solar Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/auxsolarstarboard) +"afN" = ( +/obj/effect/decal/warning_stripes/west, +/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/plating, +/area/station/maintenance/auxsolarstarboard) +"afO" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/structure/sign/vacuum{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"afP" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"afU" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"agd" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"age" = ( +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"agg" = ( +/obj/machinery/status_display/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"agh" = ( +/obj/machinery/status_display/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Arrivals Center Fore"; + dir = 8 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"agk" = ( +/obj/structure/window/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/shuttle/arrival/station) +"agp" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Starboard Arrivals Storage"; + dir = 4; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/hallway/secondary/entry) +"agA" = ( +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"agB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"agC" = ( +/obj/structure/sign/vacuum{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"agD" = ( +/turf/simulated/wall/mineral/titanium/nodiagonal, +/area/shuttle/arrival/station) +"agE" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/arrival/station) +"agF" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/arrival/station) +"agI" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Virology Shutters"; + id_tag = "Virology2" + }, +/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{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"agJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"agT" = ( +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/hardhat/orange, +/obj/item/clothing/head/hardhat/orange, +/obj/structure/closet/crate/internals, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"agU" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"agV" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"agW" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"agX" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"ahh" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"ahj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"ahl" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"aht" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/cable{ + 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/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"ahy" = ( +/obj/machinery/door/airlock/glass{ + name = "Vacant Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/public/vacant_office) +"ahz" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/door/airlock/external{ + id_tag = "ferry_home"; + locked = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"ahA" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"ahB" = ( +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock" + }, +/obj/effect/decal/warning_stripes/east, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel, +/area/shuttle/arrival/station) +"ahC" = ( +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"ahE" = ( +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock" + }, +/obj/effect/decal/warning_stripes/west, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel, +/area/shuttle/arrival/station) +"ahF" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"ahP" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"ahV" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"ahW" = ( +/obj/machinery/light/directional/south, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aik" = ( +/obj/machinery/light/directional/north, +/obj/structure/closet/emcloset, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"ail" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/landmark/spawner/late/crew, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aim" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/landmark/spawner/late/crew, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aio" = ( +/obj/machinery/light/directional/north, +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aip" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"ait" = ( +/obj/machinery/economy/atm/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aiz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"aiE" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aiF" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aiG" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/window/full/shuttle, +/turf/simulated/floor/grass/no_creep, +/area/shuttle/arrival/station) +"aiH" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aiI" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aiL" = ( +/obj/structure/marker_beacon{ + icon_state = "markerburgundy-on"; + initialized = 1 + }, +/obj/structure/window/full/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/station/hallway/secondary/exit) +"aiQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel/white, +/area/station/science/research) +"aiR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/ants, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"aiX" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"ajd" = ( +/obj/item/radio/beacon, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"ajf" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"ajy" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"ajD" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/crew/assistant, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"ajF" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/obj/item/storage/pill_bottle/dice, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"ajK" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"ajL" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"ajM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"ajN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"ajX" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 11; + id = "specops_home"; + name = "port bay 2"; + width = 5 + }, +/turf/space, +/area/space) +"aka" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"akb" = ( +/obj/machinery/status_display/directional/east, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"akw" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"akx" = ( +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aky" = ( +/obj/structure/closet/wardrobe/grey, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"akz" = ( +/obj/structure/closet/wardrobe/yellow, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"akA" = ( +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"akB" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/fore2) +"akG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"akY" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall/mineral/titanium, +/area/shuttle/arrival/station) +"akZ" = ( +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock" + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"ala" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/mineral/titanium, +/area/shuttle/arrival/station) +"ali" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"alk" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/fore2) +"aln" = ( +/obj/structure/chair/comfy/teal{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"alt" = ( +/obj/structure/sign/vacuum{ + pixel_x = 32 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"alv" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"alw" = ( +/obj/structure/chair/comfy/shuttle, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"aly" = ( +/obj/machinery/status_display/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Arrivals Center Aft"; + dir = 8 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"alD" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/machinery/camera{ + c_tag = "Chief Engineer's Quarters"; + network = list("Engineering","SS13") + }, +/obj/machinery/light_switch/north, +/obj/effect/decal/warning_stripes/northwest, +/obj/item/rpd/bluespace, +/turf/simulated/floor/plasteel, +/area/station/command/office/ce) +"alG" = ( +/obj/machinery/status_display/directional/west, +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Arrivals Aft Starboard"; + dir = 4; + pixel_y = -22 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"alH" = ( +/obj/structure/computerframe{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) +"alJ" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"alM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"alN" = ( +/obj/structure/barricade/wooden, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"alR" = ( +/obj/structure/chair/stool, +/obj/machinery/alarm/directional/north, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"alT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/processing) +"alW" = ( +/obj/machinery/bodyscanner{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"alX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"amd" = ( +/obj/structure/door_assembly/door_assembly_mhatch, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore2) +"amf" = ( +/obj/effect/decal/cleanable/insectguts, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"amh" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"amu" = ( +/obj/machinery/status_display/directional/north, +/obj/machinery/light/directional/south, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_3) +"amz" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"amA" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"amB" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"amC" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"amD" = ( +/obj/item/trash/candy, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"amE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"amF" = ( +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore2) +"amG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"amH" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"amL" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"amN" = ( +/obj/structure/sign/pods, +/turf/simulated/wall, +/area/station/hallway/secondary/entry) +"amP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"amQ" = ( +/obj/structure/table/wood, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"amR" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/vomit, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"amS" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"amT" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"amU" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"amV" = ( +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"anl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"ann" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"anp" = ( +/obj/machinery/power/apc/cryo/north, +/obj/machinery/camera{ + c_tag = "Arrivals Hall Center" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"ans" = ( +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"ant" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"anv" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"any" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) +"anz" = ( +/obj/item/kirbyplants, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"anA" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/snacks/meat/slab{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore2) +"anB" = ( +/obj/structure/sign/nosmoking_2, +/turf/simulated/wall, +/area/station/maintenance/fore2) +"anC" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore2) +"anP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"anQ" = ( +/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/plasteel/white/corner{ + dir = 8 + }, +/area/station/hallway/secondary/entry) +"anU" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"anW" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Hall Starboard"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"anX" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"anY" = ( +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"anZ" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aoa" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/saltshaker, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore2) +"aoc" = ( +/obj/item/broken_bottle, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"aod" = ( +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/maintenance/fore2) +"aoe" = ( +/obj/structure/table, +/obj/random/toolbox, +/obj/machinery/newscaster/directional/east, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aof" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white/side, +/area/station/maintenance/fore2) +"aog" = ( +/obj/structure/sink/kitchen/north, +/obj/machinery/newscaster/directional/east, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/maintenance/fore2) +"aoh" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white/side, +/area/station/maintenance/fore2) +"aoi" = ( +/obj/structure/sink/kitchen/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white/side, +/area/station/maintenance/fore2) +"aoo" = ( +/turf/simulated/wall, +/area/station/public/vacant_office) +"aop" = ( +/turf/simulated/wall, +/area/station/command/customs) +"aoq" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"aor" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aos" = ( +/turf/simulated/wall, +/area/station/command/bridge) +"aou" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aow" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"aox" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/iv_bag/blood/random, +/obj/item/reagent_containers/iv_bag/blood/random, +/obj/item/reagent_containers/iv_bag/blood/random, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/maintenance/fore2) +"aoA" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"aoB" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"aoC" = ( +/turf/simulated/wall, +/area/station/security/checkpoint/secondary) +"aoE" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"aoI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/maintenance/fore2) +"aoJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/fore2) +"aoK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/maintenance/fore2) +"aoL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/fore2) +"aoM" = ( +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/maintenance/fore2) +"aoN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"aoR" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"aoS" = ( +/obj/structure/table, +/obj/random/toolbox, +/obj/item/wrench, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aoT" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/turf/simulated/floor/plasteel/grimy, +/area/station/public/vacant_office) +"aoV" = ( +/obj/machinery/photocopier, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel/grimy, +/area/station/public/vacant_office) +"aoX" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/public/vacant_office) +"aoY" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"aoZ" = ( +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"apa" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/light_switch/north, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"apb" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/machinery/light/small/directional/north, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"apc" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"ape" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/ids, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/station/command/customs) +"apf" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/station/command/customs) +"apg" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light_switch/east, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/station/command/customs) +"aph" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/fore2) +"api" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/entry) +"apj" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/station/hallway/secondary/entry) +"apk" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/hallway/secondary/entry) +"apl" = ( +/obj/structure/filingcabinet, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"apm" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/restraints/handcuffs, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"apn" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/radio, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"apo" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"app" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"apq" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"apr" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/window{ + dir = 4; + name = "Atmospherics Desk" + }, +/obj/machinery/door/window{ + dir = 8; + name = "Atmospherics Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/atmos{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"apv" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/hallway/secondary/entry) +"apw" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/maintenance/fore2) +"apx" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/maintenance/fore2) +"apy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white/side{ + dir = 1 + }, +/area/station/maintenance/fore2) +"apz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/maintenance/fore2) +"apA" = ( +/obj/structure/table, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/white/side{ + dir = 1 + }, +/area/station/maintenance/fore2) +"apC" = ( +/obj/machinery/door/airlock/glass{ + autoclose = 0; + heat_proof = 1; + id_tag = "turbine_door_int"; + locked = 1; + name = "Turbine Interior Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"apF" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/maintenance/auxsolarport) +"apG" = ( +/turf/simulated/wall, +/area/station/maintenance/electrical_shop) +"apH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical_shop) +"apI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"apK" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"apL" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/public/vacant_office) +"apM" = ( +/turf/simulated/floor/plasteel/grimy, +/area/station/public/vacant_office) +"apP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/maintenance/fore2) +"apR" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/folder/yellow, +/obj/item/pen, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"apS" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"apT" = ( +/obj/machinery/status_display/directional/east, +/obj/structure/computerframe, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"apV" = ( +/obj/machinery/keycard_auth/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/command/customs) +"apW" = ( +/obj/structure/table, +/obj/machinery/alarm/directional/east, +/obj/machinery/kitchen_machine/microwave, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/maintenance/fore2) +"apX" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/command/customs) +"apY" = ( +/obj/machinery/alarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/maintenance/fore2) +"aqa" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/camera{ + c_tag = "Arrivals Lobby" + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/hallway/secondary/entry) +"aqb" = ( +/obj/structure/chair/comfy/brown, +/turf/simulated/floor/plasteel/grimy, +/area/station/hallway/secondary/entry) +"aqc" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/grimy, +/area/station/hallway/secondary/entry) +"aqd" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel/grimy, +/area/station/hallway/secondary/entry) +"aqe" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/hallway/secondary/entry) +"aqg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/command/customs) +"aqh" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"aqi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Customs Desk" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/turf/simulated/floor/plasteel, +/area/station/command/customs) +"aqj" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"aqk" = ( +/obj/item/cigbutt/roach, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"aql" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"aqm" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"aqn" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"aqo" = ( +/obj/structure/closet/crate, +/obj/item/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore2) +"aqp" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/fore2) +"aqs" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/service/kitchen) +"aqu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Checkpoint" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/simulated/floor/plasteel, +/area/station/security/checkpoint/secondary) +"aqv" = ( +/obj/structure/table/wood, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/obj/item/wrench, +/obj/item/wirerod, +/obj/item/clothing/under/misc/waiter, +/obj/item/clothing/accessory/waistcoat, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/electrical_shop) +"aqw" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/electrical_shop) +"aqx" = ( +/obj/structure/table/wood, +/obj/item/storage/box/matches, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/electrical_shop) +"aqy" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"aqz" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"aqA" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"aqB" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/obj/item/taperecorder, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"aqC" = ( +/obj/structure/table/wood, +/obj/item/firelock_electronics{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/airalarm_electronics{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"aqD" = ( +/obj/item/kirbyplants, +/obj/machinery/light/small/directional/north, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"aqE" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/apc_electronics, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"aqF" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"aqG" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"aqH" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"aqI" = ( +/obj/structure/chair/office/light, +/turf/simulated/floor/plasteel/grimy, +/area/station/public/vacant_office) +"aqJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/public/vacant_office) +"aqN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"aqO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"aqQ" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"aqR" = ( +/obj/machinery/ai_status_display/west, +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "blue" + }, +/area/station/command/customs) +"aqS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/command/customs) +"aqT" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/command/customs) +"aqU" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/entry) +"aqV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/hallway/secondary/entry) +"aqW" = ( +/turf/simulated/floor/carpet, +/area/station/hallway/secondary/entry) +"aqY" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel/grimy, +/area/station/public/vacant_office) +"aqZ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/hallway/secondary/entry) +"ara" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"arb" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/checkpoint/secondary) +"arc" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Checkpoint"; + dir = 8 + }, +/obj/machinery/status_display/directional/east, +/obj/machinery/computer/prisoner{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"ard" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"are" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/fore2) +"arf" = ( +/obj/machinery/computer/arcade{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"arg" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"arh" = ( +/obj/item/kirbyplants, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"ari" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"arj" = ( +/obj/item/kirbyplants, +/obj/structure/sign/poster/contraband/random/north, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"arn" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/plasteel/dark, +/area/station/security/brig) +"aro" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/electrical_shop) +"arp" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/electrical_shop) +"arq" = ( +/obj/structure/table/wood, +/obj/item/clothing/head/that, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/electrical_shop) +"arr" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"ars" = ( +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"art" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"aru" = ( +/obj/structure/table/wood, +/obj/item/poster/random_contraband{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/poster/random_contraband{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/poster/random_contraband{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"arv" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"arw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"arx" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/machinery/camera{ + c_tag = "Journalist Office"; + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel/grimy, +/area/station/public/vacant_office) +"ary" = ( +/obj/structure/computerframe, +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"arz" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"arA" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/bikehorn/rubberducky, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/fore) +"arB" = ( +/obj/structure/table/wood, +/obj/item/phone, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel/grimy, +/area/station/public/vacant_office) +"arC" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel/grimy, +/area/station/public/vacant_office) +"arE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"arF" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"arG" = ( +/obj/structure/table/wood, +/obj/item/camera, +/obj/machinery/light/small/directional/south, +/obj/item/camera_film, +/obj/item/camera_film, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"arH" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/lizard/croco/Gena, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/fore) +"arJ" = ( +/obj/machinery/camera{ + c_tag = "Customs Desk"; + dir = 4; + pixel_y = -22 + }, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/obj/machinery/computer/card{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluefull" + }, +/area/station/command/customs) +"arK" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/command/customs) +"arL" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/command/customs) +"arM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/checkpoint/secondary) +"arN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"arO" = ( +/turf/simulated/floor/plasteel/grimy, +/area/station/hallway/secondary/entry) +"arP" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/station/hallway/secondary/entry) +"arQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/reinforced/reversed{ + dir = 8; + name = "Customs Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/general{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/command/customs) +"arR" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"arS" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/checkpoint/secondary) +"arT" = ( +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/machinery/computer/security{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/checkpoint/secondary) +"arU" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"arV" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"arW" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"arX" = ( +/obj/machinery/computer/arcade, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"arY" = ( +/obj/structure/table/wood, +/obj/item/toy/minimeteor, +/obj/structure/sign/poster/contraband/random/north, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"asa" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"asb" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"asc" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"asd" = ( +/turf/simulated/wall, +/area/station/maintenance/disposal) +"ash" = ( +/obj/machinery/power/solar{ + name = "Aft Starboard Solar Panel" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/maintenance/auxsolarport) +"asl" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/airalarm_electronics, +/obj/item/airlock_electronics, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"asn" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/customs) +"aso" = ( +/obj/structure/computerframe, +/obj/item/circuitboard/secure_data, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"asp" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"asq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"asr" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ast" = ( +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"asw" = ( +/obj/machinery/status_display/directional/west, +/obj/machinery/computer/med_data{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/station/command/customs) +"asx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/command/customs) +"asy" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/command/customs) +"asz" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"asA" = ( +/obj/effect/decal/warning_stripes/yellow, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/entry) +"asB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/engine, +/area/station/science/explab) +"asC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/checkpoint/secondary) +"asE" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/hallway/secondary/entry) +"asF" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/checkpoint/secondary) +"asG" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"asH" = ( +/obj/machinery/ai_status_display/east, +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"asI" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"asJ" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"asK" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"asL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/ants, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"asM" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"asN" = ( +/obj/structure/table/wood, +/obj/item/coin/iron{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/coin/iron{ + pixel_x = -4; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"asO" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"asP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"asQ" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "garbage" + }, +/obj/effect/decal/warning_stripes/northwest, +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"asR" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/structure/sign/poster/contraband/random/north, +/obj/machinery/door/poddoor/preopen{ + id_tag = "innerdisposal" + }, +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"asS" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/mass_driver{ + dir = 4; + id_tag = "trash" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"asT" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor{ + id_tag = "trash"; + protected = 0 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"asV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/space, +/area/station/maintenance/auxsolarport) +"asW" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "redcorner" + }, +/area/station/hallway/secondary/entry) +"asX" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/window/reinforced/reversed{ + dir = 4; + name = "Security Checkpoint" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/doors{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/checkpoint/secondary) +"asY" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/entry) +"asZ" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/hallway/secondary/entry) +"ata" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/station/maintenance/auxsolarport) +"atb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/space, +/area/station/maintenance/auxsolarport) +"atc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/space, +/area/station/maintenance/auxsolarport) +"atd" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/controlroom) +"ate" = ( +/obj/structure/table/wood, +/obj/item/circuitboard/med_data, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/electrical_shop) +"atf" = ( +/obj/structure/table/wood, +/obj/item/airalarm_electronics, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/electrical_shop) +"atg" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"ath" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"ati" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"atj" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"atk" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"atn" = ( +/obj/structure/computerframe, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"atp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/maintenance/fore) +"atq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/fore) +"atr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fore) +"ats" = ( +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fore) +"att" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fore) +"atu" = ( +/obj/structure/closet/cabinet{ + name = "booze cabinet" + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fore) +"atv" = ( +/obj/structure/table/wood, +/obj/item/ashtray/plastic, +/obj/item/cigbutt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fore) +"atx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"atz" = ( +/obj/structure/closet/secure_closet, +/obj/item/storage/secure/briefcase, +/obj/machinery/alarm/directional/south, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "blue" + }, +/area/station/command/customs) +"atA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/command/customs) +"atB" = ( +/obj/structure/filingcabinet, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "blue" + }, +/area/station/command/customs) +"atC" = ( +/obj/machinery/alarm/directional/south, +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel/grimy, +/area/station/hallway/secondary/entry) +"atD" = ( +/obj/item/kirbyplants, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel/grimy, +/area/station/hallway/secondary/entry) +"atE" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel/grimy, +/area/station/hallway/secondary/entry) +"atF" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/turf/simulated/floor/plasteel/grimy, +/area/station/hallway/secondary/entry) +"atG" = ( +/obj/structure/closet/wardrobe/red, +/obj/machinery/newscaster/security_unit/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"atH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"atI" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/checkpoint/secondary) +"atK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/space, +/area/station/maintenance/auxsolarport) +"atL" = ( +/obj/structure/lattice/catwalk, +/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/space, +/area/station/maintenance/auxsolarport) +"atM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"atS" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"atU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/space, +/area/station/maintenance/auxsolarport) +"atV" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/machinery/driver_button{ + id_tag = "trash"; + name = "Trash Ejector Button"; + pixel_x = -24 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"atX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"atY" = ( +/obj/machinery/power/solar{ + name = "Aft Starboard Solar Panel" + }, +/obj/structure/cable, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/maintenance/auxsolarport) +"atZ" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/maintenance/auxsolarport) +"aub" = ( +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"aud" = ( +/obj/structure/closet/secure_closet/warden, +/obj/item/megaphone, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/warden) +"auh" = ( +/obj/structure/table/wood, +/obj/machinery/alarm/directional/west, +/obj/item/circuitboard/microwave, +/obj/item/stack/sheet/glass{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/stack/sheet/glass, +/obj/item/stack/cable_coil/random{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/electrical_shop) +"aui" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/newscaster/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/electrical_shop) +"auj" = ( +/obj/structure/table/wood, +/obj/item/poster/random_contraband{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/poster/random_contraband{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/poster/random_contraband{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/electrical_shop) +"auk" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/chair/stool, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"aum" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"auo" = ( +/obj/item/kirbyplants, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"aup" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/lighter/zippo, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"aus" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "garbage" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"aut" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore2) +"auu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"auv" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"auw" = ( +/obj/item/kirbyplants, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"aux" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"auy" = ( +/obj/structure/table/wood, +/obj/item/toy/AI, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"auz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/maintenance/disposal) +"auA" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"auB" = ( +/obj/structure/window/reinforced, +/obj/machinery/door_control/shutter/west{ + id = "innerdisposal"; + name = "Disposal Blast door control" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"auC" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"auE" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/disposal) +"auG" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/station/engineering/controlroom) +"auH" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/hallway/secondary/entry) +"auJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"auK" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) +"auL" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/electrical_shop) +"auM" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"auN" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fore) +"auO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall, +/area/station/maintenance/fore2) +"auP" = ( +/obj/structure/rack, +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"auR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"auY" = ( +/obj/structure/sign/poster/official/obey{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"auZ" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"avc" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"avd" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"avf" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Checkpoint Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"avg" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"avi" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore2) +"avj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"avk" = ( +/obj/structure/closet/crate, +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"avm" = ( +/obj/structure/table/wood, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"avn" = ( +/obj/machinery/computer/arcade{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"avo" = ( +/obj/structure/table/wood, +/obj/item/lighter/random, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"avp" = ( +/obj/structure/table/wood, +/obj/item/clothing/glasses/regular/hipster, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"avq" = ( +/obj/structure/table/wood, +/obj/machinery/alarm/directional/south, +/obj/item/toy/flash, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"avr" = ( +/obj/structure/table/wood, +/obj/item/toy/figure/crew/wizard, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"avs" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/disposal) +"avu" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "garbage" + }, +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"avv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/maintenance/disposal) +"avw" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/effect/decal/warning_stripes/north, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"avx" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/glasses/meson, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"avC" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"avE" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/engineering/controlroom) +"avI" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"avL" = ( +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"avM" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"avZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"awh" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"awm" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall15a"; + location = "hall15" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"awq" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/maintenance/fore2) +"aws" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore2) +"awu" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore2) +"awv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore2) +"aww" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/barricade/wooden, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore2) +"awx" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/security/checkpoint/secondary) +"awA" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"awB" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"awC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/southeastcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"awD" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/southwest, +/obj/effect/decal/warning_stripes/north, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"awE" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Danger: Conveyor Access" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/maintenance{ + dir = 4 + }, +/obj/machinery/conveyor/northwest/ccw{ + id = "garbage" + }, +/obj/effect/decal/warning_stripes/northeast, +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"awF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"awI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"awM" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"awP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/engineering/controlroom) +"awV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/mob/living/simple_animal/mothroach{ + name = "Сеньйор"; + desc = "Мотылёк. Обожает светочи. Знает всю атмосферику, но из-за своего скверного характера не расскажет, даже если бы мог говорить." + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/control) +"awW" = ( +/obj/effect/decal/cleanable/fungus, +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/fore) +"awX" = ( +/turf/simulated/wall, +/area/station/maintenance/fore) +"awY" = ( +/obj/machinery/door/airlock/maintenance, +/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/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore2) +"axb" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/starboard2) +"axe" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 8; + location = "Janitor" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plating, +/area/station/service/janitor) +"axg" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"axh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"axi" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"axk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Arrivals South"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"axl" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) +"axm" = ( +/turf/simulated/wall, +/area/station/maintenance/fore2) +"axp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"axt" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"axv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/maintenance/fore2) +"axx" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"axy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"axz" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"axA" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"axB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/maintenance/disposal) +"axC" = ( +/obj/machinery/alarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"axD" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/maintenance/disposal) +"axE" = ( +/obj/machinery/power/apc/directional/south, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/station/maintenance/disposal) +"axF" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry) +"axI" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"axJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"axK" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"axL" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"axM" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"axN" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"axO" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"axP" = ( +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/engineering/controlroom) +"axR" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/engineering/controlroom) +"axS" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"axV" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 4; + filter_type = "o2"; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"axW" = ( +/obj/item/kirbyplants, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"axY" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"axZ" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aya" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"ayb" = ( +/obj/structure/closet/emcloset/anchored, +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ayd" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ayj" = ( +/obj/machinery/economy/vending/autodrobe, +/obj/machinery/camera{ + c_tag = "Mime Office" + }, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"ayk" = ( +/obj/effect/decal/cleanable/ants, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"aym" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/brig) +"ayo" = ( +/obj/structure/closet/secure_closet/clown, +/obj/item/clothing/suit/soldiercoat, +/obj/item/clothing/under/costume/soldieruniform, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/service/clown) +"ayt" = ( +/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, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"ayv" = ( +/obj/structure/sign/directions/engineering{ + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + pixel_y = 1 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/turf/simulated/wall, +/area/station/service/janitor) +"ayx" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"ayy" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"ayz" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/medical, +/obj/structure/sign/directions/security{ + pixel_y = 8 + }, +/turf/simulated/wall, +/area/station/supply/sorting) +"ayA" = ( +/turf/simulated/wall, +/area/station/supply/sorting) +"ayC" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ayD" = ( +/turf/simulated/wall, +/area/station/supply/storage) +"ayE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore2) +"ayF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/warden) +"ayG" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"ayH" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/recycler, +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"ayI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"ayJ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Gas to Loop" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"ayK" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"ayL" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"ayM" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"ayO" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/engine/supermatter) +"ayP" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"ayR" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"ayT" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"ayV" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"ayW" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ayX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"azb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aze" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/fore) +"azf" = ( +/obj/structure/rack, +/obj/item/weldingtool, +/obj/item/assembly/voice, +/obj/item/clothing/head/welding, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/warning_stripes/northwest, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal) +"azh" = ( +/obj/structure/table/wood, +/obj/item/lipstick/random, +/obj/item/lipstick/random{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/lipstick/random{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/snacks/baguette, +/obj/item/flashlight/lamp/green{ + pixel_x = 6; + pixel_y = 16 + }, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"azk" = ( +/obj/effect/landmark/start/clown, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/service/clown) +"azo" = ( +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"azq" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/service/janitor) +"azr" = ( +/obj/structure/closet/jcloset, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purplecorner" + }, +/area/station/service/janitor) +"azs" = ( +/obj/structure/sink/directional/north, +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "purple" + }, +/area/station/service/janitor) +"azt" = ( +/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/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"azw" = ( +/obj/structure/table/glass, +/obj/machinery/light/directional/north, +/obj/item/storage/firstaid/regular{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"azx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"azy" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"azB" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/sorting) +"azC" = ( +/obj/machinery/camera{ + c_tag = "Cargo Backroom" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"azD" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/sorting) +"azE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/sorting) +"azF" = ( +/obj/machinery/door_control/shutter/east{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_y = -3; + req_access_txt = "31" + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"azG" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/door_control/shutter/west{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_y = -3; + req_access_txt = "31" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/station/supply/storage) +"azH" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/alarm/directional/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/storage) +"azI" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/storage) +"azJ" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/storage) +"azK" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/storage) +"azL" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/storage) +"azM" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/storage) +"azN" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/storage) +"azO" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/storage) +"azP" = ( +/obj/machinery/light/directional/north, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/storage) +"azQ" = ( +/obj/structure/closet/crate, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/station/supply/storage) +"azR" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"azS" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Danger: Conveyor Access" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/maintenance{ + dir = 4 + }, +/obj/machinery/conveyor/northeast/ccw{ + id = "garbage" + }, +/obj/effect/decal/warning_stripes/southeast, +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"azT" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id_tag = "engsm" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating, +/area/station/engineering/engine/supermatter) +"azU" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"azV" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"azW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"azZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"aAa" = ( +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"aAb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"aAd" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"aAe" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/space, +/area/space/nearstation) +"aAg" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"aAi" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"aAj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"aAk" = ( +/obj/structure/rack, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aAs" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/spray/waterflower, +/obj/item/toy/figure/crew/mime{ + pixel_x = -5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/stamp/mime{ + pixel_x = 7 + }, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"aAw" = ( +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"aAB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"aAD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"aAE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/service/janitor) +"aAI" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"aAK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"aAL" = ( +/obj/structure/closet/crate/secure/loot, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aAM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"aAN" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aAO" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aAP" = ( +/obj/structure/closet/cardboard, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aAT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aAV" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aAX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aAY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aAZ" = ( +/obj/structure/closet/crate, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aBa" = ( +/obj/machinery/conveyor/south{ + id = "QMLoad" + }, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"aBb" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/service/janitor) +"aBf" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id_tag = "engsm" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating, +/area/station/engineering/engine/supermatter) +"aBg" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/fore) +"aBn" = ( +/obj/effect/decal/warning_stripes/arrow{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/storage) +"aBo" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aBp" = ( +/obj/machinery/power/apc/directional/south, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"aBw" = ( +/obj/structure/statue/tranquillite/mime/unique, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"aBx" = ( +/obj/structure/statue/bananium/clown/unique, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/service/clown) +"aBD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Medbay Reception" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"aBE" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ants, +/obj/item/reagent_containers/food/snacks/friedegg, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"aBG" = ( +/obj/machinery/alarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/sorting) +"aBH" = ( +/obj/item/storage/box/lights/mixed, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"aBJ" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aBK" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aBL" = ( +/obj/structure/closet/crate/internals, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"aBM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aBO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/door/poddoor/shutters{ + id_tag = "qm_warehouse"; + name = "Warehouse Shutters" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aBP" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aBQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aBS" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aBU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"aBV" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/space, +/area/space/nearstation) +"aBX" = ( +/obj/machinery/atmospherics/supermatter_crystal, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"aBY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aCd" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) +"aCi" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aCj" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/scrubber, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aCk" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/station/engineering/controlroom) +"aCl" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aCo" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aCp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aCv" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aCD" = ( +/obj/effect/landmark/start/cargo_technician, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"aCE" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"aCF" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"aCG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"aCH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/sorting) +"aCI" = ( +/obj/item/storage/box/mousetraps, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aCJ" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + location = "QM #1" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aCK" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/decal/warning_stripes/arrow{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aCL" = ( +/obj/machinery/economy/vending/hydrodrobe, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"aCN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aCO" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/storage) +"aCP" = ( +/mob/living/simple_animal/bot/cleanbot{ + name = "D.E.N." + }, +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "purple" + }, +/area/station/service/janitor) +"aCS" = ( +/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/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aCT" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"aCU" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aCV" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"aCW" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aCZ" = ( +/obj/machinery/door/airlock/atmos/glass{ + heat_proof = 1; + name = "Supermatter Chamber" + }, +/obj/machinery/door_control/bolt_control/west{ + id = "smint" + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id_tag = "engsm" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"aDc" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aDd" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"aDe" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aDf" = ( +/obj/item/wrench, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aDh" = ( +/obj/machinery/light/directional/east, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aDj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aDy" = ( +/obj/item/emptysandbag, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"aDC" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/space, +/area/space/nearstation) +"aDG" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"aDH" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/fore) +"aDL" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Warehouse Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aDN" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"aDQ" = ( +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"aDR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aDS" = ( +/obj/structure/plasticflaps, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aDT" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + location = "QM #2" + }, +/obj/effect/decal/warning_stripes/yellow, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aDW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/arrow{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aDX" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/storage) +"aDY" = ( +/obj/machinery/conveyor/southeast/ccw{ + id = "QMLoad" + }, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"aDZ" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/controlroom) +"aEa" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/space, +/area/space/nearstation) +"aEb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/space, +/area/station/maintenance/auxsolarport) +"aEc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/station/maintenance/auxsolarport) +"aEd" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 1; + filter_type = "n2"; + name = "nitrogen filter"; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"aEe" = ( +/obj/machinery/light/directional/west, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aEf" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aEg" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"aEj" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aEk" = ( +/obj/machinery/disposal{ + name = "Deathposal" + }, +/obj/structure/sign/vacuum{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"aEl" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Nitrogen to Loop" + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aEm" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"aEp" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/space, +/area/space/nearstation) +"aEr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/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" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aEt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/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" + }, +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"aEx" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"aEB" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/bananalamp{ + layer = 3.1; + pixel_x = 6; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/snacks/grown/banana{ + pixel_x = 6 + }, +/obj/item/reagent_containers/food/snacks/grown/banana{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/snacks/grown/banana{ + pixel_x = -6 + }, +/obj/item/reagent_containers/food/snacks/pie, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/service/clown) +"aED" = ( +/obj/machinery/power/apc/directional/south, +/obj/effect/decal/warning_stripes/southwest, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"aEF" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"aEG" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/starboard2) +"aEH" = ( +/obj/structure/closet/crate, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aEI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/sorting) +"aEK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"aEL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aEM" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + name = "evidence outlet" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aEN" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aEO" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/window/classic/reversed{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/janitor{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"aEP" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"aEQ" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aER" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"aES" = ( +/turf/simulated/wall, +/area/station/service/janitor) +"aEW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/storage) +"aEX" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aEY" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aEZ" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aFa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aFb" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "supply bay"; + width = 12 + }, +/turf/space, +/area/space) +"aFd" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aFe" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aFf" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 8; + filter_type = "n2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aFg" = ( +/obj/structure/sign/fire, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"aFi" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aFj" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"aFl" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aFp" = ( +/obj/machinery/light/directional/west, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + location = "QM #3" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/camera{ + c_tag = "Cargo Dock West"; + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aFs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"aFt" = ( +/turf/simulated/wall, +/area/station/service/clown) +"aFv" = ( +/turf/simulated/wall, +/area/station/service/mime) +"aFx" = ( +/turf/simulated/wall, +/area/station/public/sleep) +"aFy" = ( +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/service/janitor) +"aFz" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/space, +/area/space/nearstation) +"aFA" = ( +/turf/simulated/wall, +/area/station/service/bar) +"aFB" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"aFC" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"aFD" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/sorting) +"aFI" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"aFJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/sorting) +"aFK" = ( +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/sorting) +"aFL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/station/supply/sorting) +"aFM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aFN" = ( +/obj/machinery/door/airlock/external{ + id_tag = "supply_home"; + locked = 1; + name = "Cargo Docking Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"aFO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aFR" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"aFS" = ( +/obj/machinery/status_display/supply_display, +/turf/simulated/wall, +/area/station/supply/storage) +"aFV" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aGa" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aGc" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aGd" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small/directional/south, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/item/tank/internals/plasma, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aGe" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 4; + pixel_x = -6 + }, +/obj/item/pen/red{ + pixel_y = 6; + pixel_x = -4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"aGf" = ( +/obj/machinery/conveyor/east{ + id = "QMLoad" + }, +/obj/machinery/door/poddoor{ + id_tag = "QMLoaddoor"; + name = "supply dock loading door" + }, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"aGi" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"aGr" = ( +/obj/structure/dresser, +/turf/simulated/floor/wood/fancy, +/area/station/public/sleep_female) +"aGs" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/cable{ + 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 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"aGy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"aGz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"aGD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm/directional/north, +/obj/structure/table/wood, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/bar) +"aGE" = ( +/obj/structure/table/wood, +/obj/machinery/bottler, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/bar) +"aGF" = ( +/obj/machinery/economy/vending/bardrobe, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"aGK" = ( +/turf/simulated/wall, +/area/station/supply/office) +"aGP" = ( +/obj/machinery/conveyor/east{ + id = "QMLoad" + }, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"aGQ" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/warning_stripes/arrow{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aGR" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aGW" = ( +/obj/structure/lattice, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/space, +/area/space/nearstation) +"aGX" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aGY" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/auxsolarport) +"aGZ" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/incinerator) +"aHa" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/turbine) +"aHc" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aHh" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"aHi" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/processing) +"aHk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"aHl" = ( +/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/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"aHm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"aHp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aHr" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "IAA" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/legal/lawoffice) +"aHz" = ( +/obj/structure/closet/cardboard, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aHA" = ( +/obj/machinery/computer/arcade/battle{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aHB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood/fancy, +/area/station/public/sleep_female) +"aHI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"aHJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"aHO" = ( +/obj/structure/table/glass, +/obj/item/phone{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/lighter/zippo/cmo{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/clothing/glasses/hud/health/sunglasses, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"aHP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"aHQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light_switch/west, +/turf/simulated/floor/wood/fancy, +/area/station/public/sleep_female) +"aHR" = ( +/obj/structure/sink/directional/west, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"aHT" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargodelivery" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"aHU" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargodelivery" + }, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"aHX" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/service/janitor) +"aHZ" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/deliveryChute, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"aIa" = ( +/obj/machinery/status_display/directional/north, +/obj/structure/chair/sofa/right, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/supply/office) +"aIb" = ( +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/obj/structure/chair/sofa, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/supply/office) +"aIc" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/ai_status_display/north, +/obj/structure/chair/sofa/left, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/supply/office) +"aId" = ( +/obj/machinery/light_switch/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/supply/storage) +"aIe" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aIf" = ( +/obj/machinery/door_control/shutter/east{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_y = 8 + }, +/obj/machinery/door_control/shutter/east{ + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_y = -8 + }, +/obj/machinery/camera{ + c_tag = "Cargo Dock East"; + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aIg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/service{ + name = "Bar Office" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"aIh" = ( +/obj/machinery/conveyor/southeast{ + id = "cargodelivery" + }, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"aIi" = ( +/obj/machinery/conveyor/southwest/ccw{ + id = "QMLoad2" + }, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"aIj" = ( +/obj/machinery/conveyor/west{ + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id_tag = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"aIk" = ( +/obj/machinery/conveyor/west{ + id = "QMLoad2" + }, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"aIq" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/air{ + filled = 0.05 + }, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aIr" = ( +/obj/machinery/power/smes, +/obj/machinery/light/small/directional/north, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aIs" = ( +/obj/machinery/camera{ + c_tag = "Port Fore Solars"; + network = list("SS13","Engineering") + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aIt" = ( +/obj/machinery/disposal, +/obj/structure/sign/deathsposal{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/turbine) +"aIu" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/turbine) +"aIv" = ( +/obj/machinery/atmospherics/unary/tank/toxins, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/turbine) +"aIw" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/machinery/light/directional/north, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/turbine) +"aIx" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister, +/obj/machinery/camera{ + c_tag = "Turbine"; + network = list("SS13","Engineering") + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/turbine) +"aIy" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/turbine) +"aIz" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/turbine) +"aIA" = ( +/obj/machinery/power/smes{ + charge = 1e+006 + }, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/turbine) +"aIB" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aID" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aIE" = ( +/obj/machinery/light/directional/south, +/obj/machinery/status_display/directional/south, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aIF" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aIG" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aIH" = ( +/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" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aIQ" = ( +/obj/machinery/economy/vending/janidrobe, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "purple" + }, +/area/station/service/janitor) +"aIT" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/space, +/area/space/nearstation) +"aIU" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "Mime"; + name = "Mime Privacy Shutters" + }, +/turf/simulated/floor/plating, +/area/station/service/mime) +"aIW" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"aIX" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"aIY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"aJb" = ( +/obj/structure/closet/secure_closet/bar, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"aJc" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"aJd" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/supply/office) +"aJe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Delivery Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aJf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"aJg" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/light/nightshifted/east, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"aJh" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargodisposals" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"aJj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/supply/office) +"aJk" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/supply/office) +"aJm" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aJo" = ( +/obj/structure/cable{ + 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/plasteel/grimy, +/area/station/service/library) +"aJs" = ( +/obj/machinery/door_control/shutter/north{ + id = "engsm"; + name = "Radiation Shutters Control"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aJu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Prison Solitary 2"; + dir = 8; + network = list("Prison","SS13") + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"aJv" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aJy" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/space, +/area/space/nearstation) +"aJz" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/space, +/area/space/nearstation) +"aJD" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aJE" = ( +/obj/machinery/conveyor/south{ + id = "QMLoad2" + }, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"aJF" = ( +/obj/item/kirbyplants, +/obj/item/radio/intercom/directional/south, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aJG" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small/directional/south, +/obj/item/multitool, +/obj/item/multitool{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aJH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"aJI" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aJM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aJN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/northwest, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"aJO" = ( +/obj/machinery/atmospherics/binary/pump{ + name = "Gas to Turbine" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"aJR" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"aJS" = ( +/obj/machinery/light/directional/north, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"aJU" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"aJV" = ( +/obj/structure/sign/biohazard, +/turf/simulated/wall/r_wall, +/area/station/engineering/controlroom) +"aJY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) +"aJZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aKa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"aKb" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aKd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"aKh" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random/west, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aKi" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aKk" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/cryo/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/public/sleep) +"aKl" = ( +/obj/structure/railing, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"aKm" = ( +/obj/structure/flora/junglebush/large, +/turf/simulated/floor/grass/jungle, +/area/station/maintenance/fsmaint) +"aKq" = ( +/obj/structure/railing, +/obj/item/kirbyplants, +/obj/machinery/camera{ + c_tag = "Theatre East"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"aKr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/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/plasteel, +/area/station/security/brig) +"aKt" = ( +/obj/machinery/camera{ + c_tag = "Fore Hallway North"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"aKu" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark/lightsout, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"aKw" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"aKx" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aKy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"aKz" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargodisposals" + }, +/obj/structure/plasticflaps, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"aKB" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/supply/office) +"aKD" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/supply/office) +"aKE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Supply Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/supply/office) +"aKF" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/closet/emcloset, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"aKI" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aKJ" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aKK" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aKL" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aKY" = ( +/obj/machinery/power/solar_control{ + dir = 4; + name = "Aft Port Solar Control" + }, +/obj/structure/cable, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aKZ" = ( +/obj/machinery/alarm/directional/south, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aLb" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen/engi, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "caution" + }, +/area/station/maintenance/turbine) +"aLc" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"aLf" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/turbine) +"aLk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/turbine) +"aLp" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall/r_wall, +/area/station/engineering/controlroom) +"aLr" = ( +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Fore Port Solar Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/auxsolarport) +"aLs" = ( +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aLu" = ( +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aLv" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aLw" = ( +/obj/machinery/power/terminal, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aLx" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"aLA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"aLD" = ( +/obj/machinery/door/airlock/bananium{ + name = "Clown's Office" + }, +/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/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/clown, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/service/clown) +"aLE" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"aLM" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/suit_storage_unit/engine, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"aLS" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"aLT" = ( +/obj/item/wrench, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"aLV" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + location = "QM #4" + }, +/obj/effect/decal/warning_stripes/yellow, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #4"; + suffix = "#4" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aLW" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/station/supply/sorting) +"aLZ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/station/supply/sorting) +"aMa" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"aMc" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/supply/office) +"aMd" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"aMe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/supply/office) +"aMf" = ( +/obj/structure/closet/crate/internals, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aMi" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Hydroponics Desk" + }, +/obj/structure/window/reinforced, +/obj/structure/sign/poster/official/random/north, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"aMj" = ( +/obj/structure/table/wood, +/obj/item/ammo_box/shotgun/beanbag, +/obj/item/gun/projectile/revolver/doublebarrel, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/bar) +"aMk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/bar) +"aMl" = ( +/obj/machinery/chem_master/condimaster, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"aMp" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/ai_monitored/storage/eva) +"aMA" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/maintenance/turbine) +"aMG" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Port to Turbine" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"aMJ" = ( +/obj/structure/sign/vacuum, +/turf/simulated/wall/r_wall, +/area/station/maintenance/turbine) +"aMK" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"aML" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/warning_stripes/southwest, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aMM" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"aMO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/maintenance/turbine) +"aMV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aMW" = ( +/obj/machinery/hydroponics/soil, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"aMY" = ( +/obj/machinery/door/airlock/bathroom{ + id = "toilet2"; + id_tag = "toilet2"; + name = "Toilet" + }, +/turf/simulated/floor/plasteel, +/area/station/service/theatre) +"aNb" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aNe" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aNh" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/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 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"aNj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"aNk" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/storage) +"aNl" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/sorting) +"aNm" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"aNp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/arrow, +/obj/effect/decal/warning_stripes/yellow/partial, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"aNq" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/supply/office) +"aNr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"aNs" = ( +/obj/machinery/light/directional/east, +/obj/machinery/alarm/directional/east, +/obj/machinery/camera{ + c_tag = "Cargo Break Room"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/supply/office) +"aNt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/cargotech, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/station/supply/storage) +"aNv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Supply Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"aNw" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aNx" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "cargodelivery"; + name = "deliver conveyor"; + pixel_x = -10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"aNy" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "cargodisposals"; + name = "Trash Filter Switch" + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aNB" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + name = "Virology Shutters"; + id_tag = "Virology1" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"aNH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"aNJ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5; + color = "lightblue" + }, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"aNT" = ( +/obj/structure/sign/fire, +/turf/simulated/wall/r_wall, +/area/station/maintenance/turbine) +"aNU" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6; + level = 1 + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"aOb" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"aOd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/turbine) +"aOg" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos) +"aOj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"aOk" = ( +/obj/structure/sign/fire, +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos) +"aOl" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos) +"aOm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"aOo" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"aOp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/landmark/start/atmospheric, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aOq" = ( +/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/plating, +/area/station/maintenance/fore) +"aOx" = ( +/turf/simulated/wall, +/area/station/service/theatre) +"aOA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"aOE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"aOG" = ( +/obj/structure/disposalpipe/segment, +/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/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"aOH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "Bar"; + name = "Bar Privacy Shutters" + }, +/turf/simulated/floor/plating, +/area/station/service/bar) +"aOI" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "lightblue" + }, +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/landmark/spawner/rev, +/obj/structure/sign/poster/official/random/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"aOJ" = ( +/obj/machinery/light/directional/west, +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/sorting) +"aOK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"aOL" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"aOM" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/supply/sorting) +"aON" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargodisposals" + }, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"aOO" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/supply/office) +"aOP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"aOS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aOU" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/space, +/area/space/nearstation) +"aOW" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"aPk" = ( +/obj/machinery/door/poddoor{ + id_tag = "turbinevent"; + name = "Turbine Vent" + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"aPl" = ( +/obj/structure/sign/vacuum{ + pixel_y = -32 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/power/turbine{ + dir = 8; + luminosity = 2 + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"aPm" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/power/compressor{ + comp_id = "incineratorturbine"; + dir = 4; + luminosity = 2 + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"aPn" = ( +/obj/machinery/igniter{ + id = "Incinerator"; + luminosity = 2 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"aPp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"aPr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/binary/valve{ + name = "Exhaust Reuse" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/maintenance/turbine) +"aPt" = ( +/obj/machinery/atmospherics/binary/valve{ + name = "Exhaust Disposal" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/turbine) +"aPy" = ( +/obj/machinery/light/directional/north, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aPz" = ( +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aPC" = ( +/obj/machinery/status_display/directional/north, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aPG" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aPH" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aPI" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aPK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 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/floor/plating, +/area/station/maintenance/fore) +"aPL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aPS" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/simulated/floor/carpet/orange, +/area/station/service/theatre) +"aPU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"aPW" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/carpet, +/area/station/service/theatre) +"aQb" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"aQe" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/sorting) +"aQf" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"aQh" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j2s"; + name = "Sorting Office"; + sort_type_txt = "2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/sorting) +"aQi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/syndicatebomb/training, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/range) +"aQk" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/supply/office) +"aQl" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/sorting) +"aQn" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aQp" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Cargo Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mail_sorting{ + dir = 4 + }, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"aQr" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aQs" = ( +/obj/machinery/light/directional/east, +/obj/machinery/conveyor/southwest{ + id = "QMLoad2" + }, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"aQu" = ( +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/structure/closet/secure_closet/cargotech, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aQv" = ( +/obj/effect/decal/warning_stripes/arrow{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aQE" = ( +/obj/machinery/door/airlock/multi_tile/security/glass, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"aQM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"aQO" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"aQQ" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/reagent_containers/food/pill/patch/silver_sulf, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/maintenance/turbine) +"aQR" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/newscaster/directional/south, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/station/maintenance/turbine) +"aQT" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aQV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/atmoscontrol, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aQW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/atmos_alert, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aQX" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aQY" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aQZ" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/atmos) +"aRb" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/airalarm_electronics, +/obj/item/airalarm_electronics, +/obj/item/firealarm_electronics, +/obj/item/firealarm_electronics, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aRc" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aRd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/ne) +"aRf" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/stack/rods{ + amount = 8 + }, +/obj/item/storage/box/lights/mixed, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aRg" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aRh" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/stack/sheet/plasteel{ + amount = 5 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aRi" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/atmos) +"aRm" = ( +/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" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aRw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"aRz" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"aRA" = ( +/obj/structure/railing, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"aRH" = ( +/obj/effect/decal/warning_stripes/arrow, +/obj/effect/decal/warning_stripes/yellow/partial, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"aRK" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"aRL" = ( +/obj/structure/table, +/obj/machinery/firealarm/directional/south, +/obj/item/storage/box, +/obj/item/storage/box/lights/mixed{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/station/supply/sorting) +"aRM" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/destTagger{ + pixel_x = -4 + }, +/obj/item/rcs{ + pixel_x = 8; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/sorting) +"aRO" = ( +/obj/machinery/telepad_cargo, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/station/supply/sorting) +"aRP" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"aRQ" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "yellow" + }, +/area/station/supply/office) +"aRR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/supply/office) +"aRS" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/supply/office) +"aRT" = ( +/obj/machinery/kitchen_machine/candy_maker, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "cmo" + }, +/area/station/maintenance/starboard2) +"aRU" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/station/supply/storage) +"aRV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/storage) +"aRY" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/virology_maint) +"aRZ" = ( +/obj/machinery/status_display/supply_display, +/turf/simulated/wall/r_wall, +/area/station/supply/qm) +"aSb" = ( +/turf/simulated/wall/r_wall, +/area/station/supply/qm) +"aSe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"aSl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/genetics) +"aSq" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aSw" = ( +/obj/machinery/conveyor/west{ + id = "QMLoad2" + }, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"aSx" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating/airless, +/area/station/maintenance/turbine) +"aSy" = ( +/obj/machinery/door/poddoor{ + id_tag = "auxincineratorvent"; + name = "Incineration Chamber Vent" + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"aSz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/turbine) +"aSA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6; + initialize_directions = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aSB" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/mask/gas, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aSC" = ( +/obj/machinery/power/solar{ + name = "Aft Starboard Solar Panel" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/maintenance/starboardsolar) +"aSD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"aSE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"aSF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"aSH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"aSI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aSJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"aSK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/atmos) +"aSL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10; + initialize_directions = 10 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aSM" = ( +/obj/structure/lattice, +/turf/space, +/area/station/engineering/atmos) +"aSR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"aSX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"aTj" = ( +/obj/structure/cable{ + 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, +/turf/simulated/floor/plasteel/goonplaque, +/area/station/hallway/primary/fore) +"aTp" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"aTs" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aTt" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aTv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) +"aTw" = ( +/obj/structure/table/reinforced, +/obj/item/stamp/granted, +/obj/item/stamp/granted{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aTz" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/qm) +"aTA" = ( +/obj/machinery/photocopier, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/station/supply/qm) +"aTB" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/crew/qm, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"aTC" = ( +/obj/machinery/computer/security/mining, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"aTD" = ( +/obj/machinery/computer/supplycomp, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"aTE" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"aTS" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/space, +/area/space/nearstation) +"aTT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aTU" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"aTW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aTX" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aTZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aUe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aUf" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"aUg" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Air to Pure"; + target_pressure = 101 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "arrival" + }, +/area/station/engineering/atmos) +"aUh" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aUi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"aUm" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Air Tank"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/engine/air, +/area/station/engineering/atmos) +"aUn" = ( +/turf/simulated/floor/engine/air, +/area/station/engineering/atmos) +"aUo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"aUs" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/alarm/directional/south, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"aUt" = ( +/obj/machinery/power/solar_control{ + dir = 8; + name = "Fore Starboard Solar Control" + }, +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"aUu" = ( +/obj/machinery/door/airlock/engineering{ + name = "Fore Starboard Solar Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor, +/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 = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"aUx" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/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/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"aUD" = ( +/turf/simulated/wall, +/area/station/security/checkpoint/south) +"aUG" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/economy/vending/cargodrobe, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/station/supply/storage) +"aUI" = ( +/obj/structure/railing, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"aUM" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aUN" = ( +/obj/machinery/light/directional/west, +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/newscaster/directional/west, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/station/supply/office) +"aUO" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/multitool, +/obj/item/pen/red, +/obj/item/screwdriver/cargo, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/office) +"aUQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aUR" = ( +/obj/machinery/photocopier, +/obj/machinery/status_display/supply_display/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/office) +"aUS" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Cargo Office" + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo Requests Console"; + pixel_y = 30 + }, +/obj/item/storage/firstaid/regular, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/office) +"aUT" = ( +/obj/structure/table, +/obj/machinery/power/apc/directional/north, +/obj/item/paper_bin, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/office) +"aUU" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/office) +"aUW" = ( +/obj/machinery/light/directional/east, +/obj/item/kirbyplants, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/station/supply/office) +"aUX" = ( +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/storage) +"aUY" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aUZ" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aVa" = ( +/obj/machinery/computer/supplycomp{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"aVc" = ( +/obj/machinery/door/airlock/external{ + id_tag = "atmostanks_door_ext"; + locked = 1; + name = "Atmos External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/access_button/west{ + autolink_id = "atmostanks_btn_ext"; + name = "exterior access button"; + req_access_txt = "32" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"aVg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/storage) +"aVj" = ( +/obj/machinery/button/windowtint/east{ + id = "qm"; + pixel_y = 6; + req_one_access_txt = "41" + }, +/obj/machinery/keycard_auth/east{ + pixel_y = -6 + }, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"aVp" = ( +/obj/structure/table/wood, +/obj/structure/disposalpipe/segment, +/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" + }, +/obj/item/book/manual/wiki/sop_legal{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/main) +"aVC" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aVD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/atmos) +"aVE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"aVF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aVG" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aVH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aVI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aVJ" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/camera{ + c_tag = "Atmospherics North"; + dir = 1; + network = list("SS13","Engineering") + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aVK" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/fore) +"aVL" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aVN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aVO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aVP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"aVQ" = ( +/obj/structure/table/wood/poker, +/obj/item/deck/cards, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"aVR" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"aVT" = ( +/obj/machinery/atmospherics/portable/canister/air{ + anchored = 1 + }, +/turf/simulated/floor/engine/air, +/area/station/engineering/atmos) +"aVU" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/engine/air, +/area/station/engineering/atmos) +"aVV" = ( +/obj/structure/flora/ausbushes/grassybush, +/mob/living/simple_animal/pig/Sanya, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"aVX" = ( +/obj/structure/ore_box, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"aWe" = ( +/obj/machinery/door/airlock/glass{ + id = "privateroom"; + id_tag = "privateroom"; + name = "Private Room" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "privateroom" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/dark, +/area/station/service/theatre) +"aWf" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"aWg" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"aWh" = ( +/obj/machinery/economy/slot_machine, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"aWj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/mob/living/carbon/human/monkey/punpun, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"aWn" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/office) +"aWo" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"aWq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"aWu" = ( +/obj/effect/decal/warning_stripes/south, +/mob/living/simple_animal/hostile/gorilla/cargo_domestic{ + name = "Forklift" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aWz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aWA" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"aWB" = ( +/obj/effect/decal/warning_stripes/red/hollow, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/alarm/directional/west, +/obj/effect/landmark/start/security_officer, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/main) +"aWC" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + width = 7 + }, +/turf/space, +/area/space) +"aWD" = ( +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/machinery/computer/card/minor/qm, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo Requests Console"; + pixel_y = 30 + }, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"aWG" = ( +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Cargo Dock South"; + dir = 1 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aWH" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"aWI" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/stamp/granted{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stamp/qm, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"aWJ" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/item/paper_bin, +/obj/structure/sign/poster/official/random/east, +/obj/item/flashlight/lamp/green{ + pixel_x = 6; + pixel_y = 16 + }, +/obj/item/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"aWQ" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/y{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"aWR" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/space, +/area/station/maintenance/turbine) +"aXa" = ( +/turf/simulated/floor/engine/co2, +/area/station/engineering/atmos) +"aXb" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics CO2 Tank"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/engine/co2, +/area/station/engineering/atmos) +"aXe" = ( +/obj/machinery/camera{ + c_tag = "Animal Garden" + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"aXg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aXh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "CO2 to Pure" + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aXi" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"aXj" = ( +/obj/machinery/atmospherics/unary/thermomachine/heater{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aXk" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aXl" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aXm" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aXn" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/station/engineering/atmos) +"aXo" = ( +/turf/simulated/wall, +/area/station/engineering/atmos) +"aXp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Storage" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aXq" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/engineering/atmos) +"aXr" = ( +/obj/machinery/light/directional/west, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aXs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6; + initialize_directions = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aXu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"aXv" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "arrival" + }, +/area/station/engineering/atmos) +"aXw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aXy" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/hallway/secondary/entry) +"aXB" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "privateroom" + }, +/turf/simulated/floor/plating, +/area/station/service/theatre) +"aXE" = ( +/obj/machinery/camera{ + c_tag = "Theatre South"; + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"aXG" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aXH" = ( +/obj/machinery/light_switch/north, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"aXJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"aXK" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/window/classic/reversed{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mule_bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"aXL" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/office) +"aXM" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"aXN" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8; + initialize_directions = 11 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aXO" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"aXT" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/office) +"aXU" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"aXV" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/storage) +"aXW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aXY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage/secondary) +"aYb" = ( +/obj/machinery/atmospherics/unary/thermomachine/heater, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"aYg" = ( +/turf/simulated/floor/plasteel, +/area/station/supply/qm) +"aYh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"aYj" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/machinery/firealarm/directional/east, +/obj/item/megaphone, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"aYt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aYu" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/engine/co2, +/area/station/engineering/atmos) +"aYv" = ( +/obj/machinery/atmospherics/portable/canister/carbon_dioxide{ + anchored = 1 + }, +/turf/simulated/floor/engine/co2, +/area/station/engineering/atmos) +"aYy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"aYz" = ( +/obj/machinery/atmospherics/unary/thermomachine/heater/on{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aYA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aYD" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/lightreplacer, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"aYF" = ( +/obj/machinery/light/directional/west, +/obj/machinery/light_switch/west, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"aYG" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aYJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aYK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aYL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"aYM" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "O2 to Pure"; + target_pressure = 101 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/atmos) +"aYN" = ( +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Atmospherics East"; + dir = 8; + network = list("Engineering","SS13") + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"aYO" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos) +"aYP" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"aYQ" = ( +/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" + }, +/turf/simulated/floor/wood/cherry, +/area/station/service/hydroponics) +"aYZ" = ( +/turf/simulated/wall, +/area/station/service/kitchen) +"aZa" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Restaurant" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"aZc" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"aZd" = ( +/obj/machinery/camera{ + c_tag = "Fore Hallway South"; + 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 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"aZg" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/office) +"aZl" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/office) +"aZm" = ( +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"aZn" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm{ + dir = 1; + name = "custom placement"; + pixel_x = -26; + pixel_y = -26 + }, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/station/supply/storage) +"aZo" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/storage) +"aZp" = ( +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/supply/storage) +"aZs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel, +/area/station/supply/office) +"aZt" = ( +/obj/machinery/power/apc/directional/west, +/obj/machinery/camera{ + c_tag = "Cargo Dock SouthWest"; + dir = 4 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/storage) +"aZu" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall, +/area/station/maintenance/fsmaint) +"aZv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/qm) +"aZz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/station/supply/qm) +"aZA" = ( +/obj/machinery/camera{ + c_tag = "Quartermaster Office"; + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"aZB" = ( +/obj/machinery/alarm/directional/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"aZC" = ( +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"aZD" = ( +/obj/machinery/light/directional/east, +/obj/machinery/suit_storage_unit/qm/secure, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"aZY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"aZZ" = ( +/obj/machinery/economy/vending/cigarette, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"baa" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/space, +/area/space/nearstation) +"bac" = ( +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"baf" = ( +/obj/machinery/door/airlock/multi_tile/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prisonlockers) +"bai" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"baj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"bak" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"bal" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/trinary/filter{ + filter_type = 3; + name = "Gas filter (CO2 tank)"; + on = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"bam" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"ban" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bao" = ( +/obj/machinery/atmospherics/meter, +/obj/item/wrench, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bap" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/canister, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bas" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/machinery/suit_storage_unit/atmos, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bau" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bav" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bax" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "O2 to Airmix"; + on = 1; + target_pressure = 101 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/station/engineering/atmos) +"bay" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"baA" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Oxygen Tank"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/engine/o2, +/area/station/engineering/atmos) +"baB" = ( +/turf/simulated/floor/engine/o2, +/area/station/engineering/atmos) +"baC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/maintenance/fore) +"baE" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"baF" = ( +/turf/simulated/wall, +/area/station/service/hydroponics) +"baL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"baM" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + pixel_y = 9 + }, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"baN" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/space, +/area/station/engineering/atmos) +"baQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/processor{ + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"baT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/kirbyplants, +/obj/machinery/light/directional/east, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"baU" = ( +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"baV" = ( +/obj/machinery/light/directional/west, +/obj/machinery/alarm/directional/south, +/obj/machinery/autolathe, +/obj/machinery/light_switch/west, +/obj/machinery/firealarm{ + dir = 1; + name = "custom placement"; + pixel_x = -26; + pixel_y = -26 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/station/supply/office) +"baW" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/office) +"baX" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/office) +"baY" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/office) +"baZ" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/toy/figure/crew/cargotech, +/obj/machinery/computer/guestpass{ + pixel_y = -28 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/office) +"bba" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/office) +"bbb" = ( +/obj/machinery/computer/supplycomp{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/office) +"bbc" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/cargo_technician, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/office) +"bbd" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/east, +/obj/item/stamp/granted{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/stamp/denied{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/station/supply/office) +"bbe" = ( +/turf/simulated/wall, +/area/station/supply/miningdock) +"bbf" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/supply/miningdock) +"bbi" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/supply/miningdock) +"bbj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/qm) +"bbk" = ( +/obj/structure/table/reinforced, +/obj/item/coin/silver{ + pixel_y = 5; + pixel_x = 3 + }, +/obj/item/lighter/zippo/engraved{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/effect/spawner/lootdrop/officetoys, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"bbl" = ( +/obj/machinery/light/directional/south, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"bbC" = ( +/obj/effect/decal/warning_stripes/arrow{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Supply Lobby" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"bbE" = ( +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"bbF" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/space, +/area/station/engineering/atmos) +"bbM" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/camera{ + c_tag = "Atmospherics West"; + dir = 4; + network = list("Engineering","SS13"); + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"bbN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/atmos) +"bbO" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bbP" = ( +/obj/effect/landmark/start/atmospheric, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bbQ" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 1; + filter_type = "" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bbR" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/closet/secure_closet/atmos_personal, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bbS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/atmospheric, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bbT" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bbW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bbZ" = ( +/obj/machinery/atmospherics/portable/canister/oxygen{ + anchored = 1 + }, +/turf/simulated/floor/engine/o2, +/area/station/engineering/atmos) +"bca" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/engine/o2, +/area/station/engineering/atmos) +"bcb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"bcd" = ( +/obj/structure/sink/directional/east, +/obj/machinery/firealarm/directional/west, +/obj/effect/landmark/start/chef, +/turf/simulated/floor/plasteel, +/area/station/service/kitchen) +"bce" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/landmark/start/chef, +/turf/simulated/floor/plasteel, +/area/station/service/kitchen) +"bcg" = ( +/obj/machinery/door/airlock/glass, +/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" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"bch" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/service/kitchen) +"bci" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/sop_legal, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 3 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light/directional/north, +/obj/machinery/economy/vending/wallmed/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/warden) +"bcj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/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/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/service/kitchen) +"bco" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Transit Tube" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/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/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/engineering/aitransit) +"bcq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"bcr" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, +/obj/machinery/door/airlock/public{ + name = "Kitchen" + }, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"bcs" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"bcv" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"bcx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"bcA" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/aisat) +"bcB" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"bcC" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"bcD" = ( +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/obj/structure/closet/secure_closet/miner, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"bcE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/miner, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "purple" + }, +/area/station/supply/miningdock) +"bcH" = ( +/obj/machinery/camera{ + c_tag = "Mining Access" + }, +/obj/structure/closet/secure_closet/miner, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"bcI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"bcM" = ( +/obj/machinery/light/directional/north, +/obj/machinery/computer/supplycomp/public, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"bcP" = ( +/turf/simulated/wall, +/area/station/hallway/primary/port) +"bdk" = ( +/turf/simulated/floor/engine/plasma, +/area/station/engineering/atmos) +"bdl" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Toxins Tank"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/engine/plasma, +/area/station/engineering/atmos) +"bdn" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Plasma to Pure" + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "purple" + }, +/area/station/engineering/atmos) +"bdo" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bdp" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bdq" = ( +/obj/machinery/door/airlock/security{ + name = "Detective" + }, +/obj/structure/barricade/wooden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/old_detective) +"bdr" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bds" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/machinery/suit_storage_unit/atmos, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bdt" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/trinary/filter{ + dir = 1; + filter_type = 1; + name = "Gas filter (O2 tank)"; + on = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "blue" + }, +/area/station/engineering/atmos) +"bdu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"bdv" = ( +/obj/structure/dresser, +/obj/machinery/light_switch/north, +/obj/item/toy/figure/crew/cmo{ + pixel_x = 4; + pixel_y = 14; + layer = 3.4 + }, +/obj/machinery/button/windowtint/north{ + id = "CMO_Bedroom"; + pixel_x = -8 + }, +/obj/structure/mirror{ + pixel_x = 26 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"bdx" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/simulated/floor/plasteel, +/area/station/service/kitchen) +"bdy" = ( +/obj/machinery/light/directional/south, +/obj/machinery/economy/vending/dinnerware, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/service/kitchen) +"bdG" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"bdK" = ( +/obj/machinery/door/airlock/engineering, +/obj/structure/barricade/wooden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"bdL" = ( +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Kitchen East"; + dir = 8 + }, +/obj/machinery/door_control/shutter/east{ + id = "Kitchen Windows"; + name = "Kitchen Privacy Shutters Control"; + pixel_y = 5 + }, +/obj/machinery/door_control/shutter/east{ + id = "Kitchen Dinner Windows"; + name = "Kitchen Dinner Shutters Control"; + pixel_y = -5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"bdO" = ( +/obj/machinery/power/apc/engineering/east, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"bdP" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"bdQ" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/simulated/floor/carpet/orange, +/area/station/service/bar/atrium) +"bdR" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"bdT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"bdU" = ( +/turf/simulated/wall, +/area/station/hallway/primary/fore) +"bdV" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"bdW" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"bdX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"bdY" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"bdZ" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bea" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"beb" = ( +/obj/effect/decal/warning_stripes/arrow{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"bed" = ( +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/arrow{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/supply/miningdock) +"bee" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/service/hydroponics) +"beg" = ( +/obj/effect/landmark/start/shaft_miner, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"beh" = ( +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/arrow{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/supply/miningdock) +"bei" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"bek" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"bel" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/mapping_helpers/airlock/access/any/supply/mule_bot, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/machinery/door/window/classic/reversed, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"ben" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "purple" + }, +/area/station/supply/miningdock) +"beo" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bep" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/warden) +"beq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"ber" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bes" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + id_tag = "mining_home"; + locked = 1; + name = "Mining Dock Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bex" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"bez" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"beB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"beC" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"beE" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/engine/plasma, +/area/station/engineering/atmos) +"beF" = ( +/obj/machinery/atmospherics/portable/canister/toxins{ + anchored = 1 + }, +/turf/simulated/floor/engine/plasma, +/area/station/engineering/atmos) +"beJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"beK" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"beM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"beP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"beQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/atmos) +"beR" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"beS" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance" + }, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"beU" = ( +/turf/simulated/floor/plasteel{ + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"bfa" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/disposal, +/turf/simulated/floor/plasteel, +/area/station/service/theatre) +"bfd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/service/theatre) +"bfe" = ( +/obj/machinery/kitchen_machine/candy_maker, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"bfk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"bfm" = ( +/obj/machinery/kitchen_machine/oven, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"bfp" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"bfq" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/primary/fore) +"bfr" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"bfu" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"bfw" = ( +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/west, +/obj/machinery/mineral/equipment_vendor, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bfx" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"bfA" = ( +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bfB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"bfC" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bfD" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/supply/miningdock) +"bfE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"bfG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"bfH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fsmaint) +"bfK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/miningdock) +"bfL" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/spawner/random_spawners/cobweb_left_rare, +/turf/simulated/floor/grass/jungle, +/area/station/maintenance/fsmaint) +"bfN" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bfO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bfZ" = ( +/obj/effect/landmark/start/shaft_miner, +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/arrow{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bgb" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/trinary/filter{ + name = "Gas filter (Toxins tank)"; + on = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "purple" + }, +/area/station/engineering/atmos) +"bgc" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Port Mix to Port Ports" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bgd" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Port Mix to Starboard Ports" + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bge" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bgf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Storage" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bgg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bgh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bgi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "N2 to Airmix"; + on = 1; + target_pressure = 101 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/engineering/atmos) +"bgj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"bgl" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Nitrogen Tank"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/engine/n2, +/area/station/engineering/atmos) +"bgm" = ( +/turf/simulated/floor/engine/n2, +/area/station/engineering/atmos) +"bgn" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"bgp" = ( +/obj/structure/sign/botany, +/turf/simulated/wall, +/area/station/service/hydroponics) +"bgs" = ( +/turf/simulated/wall, +/area/station/maintenance/starboard2) +"bgt" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/starboard2) +"bgw" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"bgx" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"bgy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"bgA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/obj/effect/landmark/lightsout, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"bgB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"bgC" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"bgD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"bgE" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"bgG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"bgK" = ( +/obj/item/kirbyplants, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/supply/miningdock) +"bgL" = ( +/obj/effect/decal/cleanable/dirt, +/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, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"bgN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bgO" = ( +/obj/item/kirbyplants, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/supply/miningdock) +"bgP" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"bgS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bgT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/miningdock) +"bgU" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"bgW" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bhf" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"bhj" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bhk" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bhl" = ( +/obj/machinery/power/apc/engineering/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bhn" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bho" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/camera{ + c_tag = "Atmospherics South"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bhp" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bhr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"bht" = ( +/obj/machinery/atmospherics/portable/canister/nitrogen{ + anchored = 1 + }, +/turf/simulated/floor/engine/n2, +/area/station/engineering/atmos) +"bhu" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/engine/n2, +/area/station/engineering/atmos) +"bhv" = ( +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Hydroponics" + }, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"bhw" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"bhx" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"bhy" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"bhA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"bhB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/bed{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"bhC" = ( +/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/storage/secondary) +"bhH" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/reagent_containers/food/snacks/dough, +/obj/item/reagent_containers/food/snacks/dough{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/enzyme, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"bhK" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/simulated/floor/carpet/orange, +/area/station/service/bar/atrium) +"bhL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"bhN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"bhO" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"bhU" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore) +"bhV" = ( +/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/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"bhX" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"bhY" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/station/hallway/primary/fore) +"bie" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"big" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/supply/miningdock) +"bih" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"bil" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/miningdock) +"bim" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/supply/miningdock) +"bin" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Mining Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mining{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bio" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Mining Dock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bip" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"biJ" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"biK" = ( +/turf/simulated/floor/engine/n20, +/area/station/engineering/atmos) +"biL" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics N2O Tank"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/engine/n20, +/area/station/engineering/atmos) +"biM" = ( +/obj/effect/decal/warning_stripes/red/partial, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"biN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "n2o to Pure" + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "escape" + }, +/area/station/engineering/atmos) +"biO" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Pure to Ports" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"biP" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Mix to Ports" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"biQ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Air to Ports" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"biR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"biS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"biT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"biU" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/effect/decal/warning_stripes/yellow/hollow, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"biV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"biW" = ( +/obj/item/toy/plushie/carpplushie/gold, +/turf/space, +/area/space) +"biX" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/ai) +"biY" = ( +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/public/storage/tools) +"biZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/trinary/filter{ + dir = 1; + filter_type = 2; + name = "Gas filter (N2 tank)"; + on = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/engineering/atmos) +"bja" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"bjc" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"bje" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/plating, +/area/station/service/hydroponics) +"bjf" = ( +/obj/machinery/camera{ + c_tag = "Hydroponics Backroom" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"bjg" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/security/brig) +"bji" = ( +/obj/effect/decal/cleanable/ants, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"bjj" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"bjl" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/table/reinforced, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Kitchen Desk" + }, +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Hydroponics Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "Hydroponics Shutters"; + name = "Hydroponics Shutters" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "Kitchen Windows"; + name = "Kitchen Privacy Shutters" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"bjp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"bjq" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/storage/box/donkpockets, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"bjy" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"bjz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/command/office/ce) +"bjC" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"bjE" = ( +/obj/machinery/bluespace_beacon, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bjF" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"bjG" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/supply/miningdock) +"bjH" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bjJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/supply/miningdock) +"bjK" = ( +/obj/item/kirbyplants, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"bjL" = ( +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/supply/miningdock) +"bjN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/supply/miningdock) +"bjO" = ( +/obj/machinery/camera{ + c_tag = "Mining Dock"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/miningdock) +"bjP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/command/office/ce) +"bjQ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/miningdock) +"bjR" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/supply/miningdock) +"bjS" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/gps/mining, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"bjT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/command/office/ce) +"bjU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"bjZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"bka" = ( +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"bkb" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/science/robotics/showroom) +"bkd" = ( +/obj/structure/displaycase/hos, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/black, +/area/station/command/office/hos) +"bke" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"bkg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random/south, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"bkt" = ( +/obj/structure/window/reinforced, +/turf/space, +/area/space/nearstation) +"bku" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/turf/space, +/area/space/nearstation) +"bkv" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/engine/n20, +/area/station/engineering/atmos) +"bkw" = ( +/obj/machinery/atmospherics/portable/canister/sleeping_agent{ + anchored = 1 + }, +/turf/simulated/floor/engine/n20, +/area/station/engineering/atmos) +"bkz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bkA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bkB" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bkC" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bkI" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bkJ" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bkK" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bkL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bkM" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bkN" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bkO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/atmos) +"bkP" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/binary/pump{ + dir = 0; + name = "Pure to SM" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"bkQ" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/engineering/atmos) +"bkR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"bkT" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"bkU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"bkW" = ( +/obj/structure/closet/secure_closet/paramedic, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"bkZ" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/economy/vending/hydroseeds, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"blc" = ( +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"blj" = ( +/obj/machinery/smartfridge, +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Kitchen Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/service/kitchen) +"blk" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"blo" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"blp" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light/directional/south, +/obj/machinery/light_switch/south, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bls" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"blt" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"blu" = ( +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"blv" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"blw" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"blx" = ( +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bly" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"blB" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm/directional/south, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"blC" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"blD" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"blE" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/effect/landmark/start/shaft_miner, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"blF" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"blG" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"blH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/command/office/ce) +"blN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/arrow{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"blO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"blP" = ( +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Court" + }, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"bmg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"bmo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"bmp" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bmq" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bmr" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bms" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/space, +/area/space/nearstation) +"bmu" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/trinary/filter{ + filter_type = 4; + name = "Gas filter (N2O tank)"; + on = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "escape" + }, +/area/station/engineering/atmos) +"bmv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bmw" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bmx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bmy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bmz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8; + initialize_directions = 11 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bmA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bmB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bmC" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bmD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bmE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10; + initialize_directions = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bmF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 6 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bmG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bmH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bmI" = ( +/obj/structure/table/reinforced, +/obj/item/stack/rods{ + amount = 8 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bmL" = ( +/obj/item/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/atmos) +"bmM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"bmN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"bmS" = ( +/obj/structure/showcase{ + density = 0; + dir = 8; + icon = 'icons/mob/robots.dmi'; + icon_state = "robot_old"; + name = "Cyborg Statue"; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bmU" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"bmV" = ( +/obj/machinery/camera{ + c_tag = "Hydroponics"; + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/economy/vending/hydronutrients, +/obj/machinery/door_control/shutter/east{ + id = "Hydroponics Shutters"; + name = "Hydroponics Privacy Shutters Control"; + pixel_y = -5 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"bmW" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/sleep) +"bmX" = ( +/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/table/reinforced, +/obj/machinery/door/window/classic/normal{ + dir = 1; + name = "Kitchen Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "kitchenhall"; + name = "Kitchen Shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/service/kitchen) +"bmY" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bmZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "Kitchen Windows"; + name = "Kitchen Privacy Shutters" + }, +/turf/simulated/floor/plating, +/area/station/service/kitchen) +"bna" = ( +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = 1 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/turf/simulated/wall, +/area/station/service/bar/atrium) +"bnd" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 4 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/wall, +/area/station/hallway/primary/fore) +"bnf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bnh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/arrow{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/partial{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bni" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/shovel, +/obj/item/shovel, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bnk" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"bns" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"bny" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"bnK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/reflector/box{ + dir = 8 + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"bnM" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"bnO" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/aisat) +"bnP" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/aisat) +"bnR" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/space, +/area/space/nearstation) +"bnS" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8; + initialize_directions = 11 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"bnT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"bnU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"bnV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bnW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"bnX" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bnY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bnZ" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/crew/atmos, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"boa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 9 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bob" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"boc" = ( +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"boe" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat) +"boh" = ( +/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 = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/telecomms/chamber) +"boi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/landmark/start/botanist, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/service/hydroponics) +"boj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"bok" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hydroponics, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"bol" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"bon" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/station/telecomms/chamber) +"bop" = ( +/obj/machinery/camera{ + c_tag = "Central Ring Hallway North" + }, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"bos" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/control) +"bov" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/north) +"box" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"boz" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/camera{ + c_tag = "Central Ring Hallway North" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"boA" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"boD" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"boG" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"boH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"boI" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/processing) +"boK" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/maintenance/fsmaint) +"boW" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"bpm" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"bpn" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bpo" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bpq" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bps" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bpu" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/space, +/area/space/nearstation) +"bpv" = ( +/turf/simulated/floor/engine/vacuum, +/area/station/engineering/atmos) +"bpw" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Gas Mix Tank"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/engine/vacuum, +/area/station/engineering/atmos) +"bpy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/station/engineering/atmos) +"bpz" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Unfiltered & Air to Mix"; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bpA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bpB" = ( +/obj/machinery/atmospherics/binary/pump{ + name = "Pure to Mix" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bpC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bpD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bpE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bpF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"bpH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bpI" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 4 + }, +/obj/effect/landmark/start/atmospheric, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bpJ" = ( +/obj/structure/table/reinforced, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bpK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bpM" = ( +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10; + initialize_directions = 10 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bpQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/permabrig) +"bpU" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"bpV" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/hallway/primary/port) +"bpY" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper/precision{ + pixel_y = 4; + pixel_x = -12 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgreen"; + dir = 1 + }, +/area/station/medical/virology/lab) +"bqb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"bqi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/service/hydroponics) +"bqj" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"bqk" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"bql" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/obj/item/pen, +/obj/item/reagent_containers/food/snacks/grown/apple, +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Hydroponics Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "Hydroponics Shutters"; + name = "Hydroponics Shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"bqn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/north) +"bqo" = ( +/obj/structure/table/glass, +/obj/machinery/economy/vending/wallmed/directional/south, +/obj/machinery/newscaster/directional/west, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Chief Medical Officer's Office"; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"bqt" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall15"; + location = "hall14" + }, +/obj/effect/landmark/lightsout, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/landmark{ + icon = 'icons/effects/spawner_icons.dmi'; + icon_state = "spooky"; + name = "Observer-Start" + }, +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/north) +"bqH" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"bqI" = ( +/obj/effect/decal/warning_stripes/yellow/partial, +/obj/machinery/door/window/classic/normal{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/arrow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"bqK" = ( +/obj/item/chair/light, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bqM" = ( +/obj/machinery/door/airlock/multi_tile/security/glass{ + id_tag = "visitup" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel/dark, +/area/station/security/visitingroom) +"bqR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"bqV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/security/glass{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"brp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"brq" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/space, +/area/space/nearstation) +"brr" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/space, +/area/space/nearstation) +"brs" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/space, +/area/space/nearstation) +"brt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"brw" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"brx" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/engine/vacuum, +/area/station/engineering/atmos) +"brA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"brB" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/green, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"brC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"brD" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"brE" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Mix to Filter"; + on = 1 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"brF" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"brG" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/clothing/mask/gas, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6; + initialize_directions = 6 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"brH" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4; + initialize_directions = 11 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"brI" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"brJ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/item/t_scanner, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"brK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"brM" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"brP" = ( +/obj/effect/landmark/start/security_officer, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/storage) +"brR" = ( +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"brS" = ( +/turf/simulated/floor/plasteel, +/area/station/maintenance/starboard2) +"brT" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"brU" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=engi3"; + location = "engi2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"brV" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"brW" = ( +/turf/simulated/wall, +/area/station/engineering/tech_storage) +"brX" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"brZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"bsb" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/aisat) +"bsc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"bsd" = ( +/obj/structure/table/reinforced, +/obj/item/seeds/lime, +/obj/item/seeds/watermelon, +/obj/item/seeds/grape, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/watermelon, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "Hydroponics Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "Hydroponics Shutters"; + name = "Hydroponics Shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"bsh" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"bsi" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"bsj" = ( +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"bsm" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/hallway/primary/central/north) +"bsn" = ( +/obj/machinery/camera{ + c_tag = "Central Ring Hallway North"; + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"bsq" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + name = "Bar Requests Console"; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"bsr" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"bsv" = ( +/turf/simulated/wall, +/area/station/hallway/primary/central/west) +"bsA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/window/brigdoor{ + id = "Cell 4"; + name = "Cell 4"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/prison/cell_block/A) +"bsC" = ( +/obj/machinery/light/directional/south, +/obj/structure/closet/wardrobe/miner, +/obj/item/radio/intercom/directional/south, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bsD" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/sign/security{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/security/lobby) +"bsG" = ( +/turf/simulated/wall/r_wall, +/area/station/legal/lawoffice) +"bsH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/lobby) +"bsI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"bsQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8; + initialize_directions = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"btc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/service/library) +"btd" = ( +/turf/simulated/wall/r_wall, +/area/station/turret_protected/ai) +"btf" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + name = "Virology Shutters"; + id_tag = "Virology1" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"btg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/station/engineering/atmos) +"bth" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bti" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/effect/landmark/start/atmospheric, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"btj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"btk" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"btl" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Waste to Filter"; + on = 1 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"btm" = ( +/obj/machinery/light/directional/west, +/obj/machinery/alarm/directional/west, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"btn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"btx" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bty" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"btA" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"btD" = ( +/obj/structure/sink/directional/west, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"btF" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"btH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/primary/central/west) +"btI" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"btJ" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"btK" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/ne) +"btL" = ( +/turf/simulated/wall/r_wall, +/area/station/command/vault) +"btS" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/starboard2) +"btT" = ( +/turf/simulated/wall, +/area/station/security/lobby) +"btV" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/lobby) +"btY" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/turf/simulated/floor/plasteel, +/area/station/security/visitingroom) +"buo" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8; + initialize_directions = 11 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "arrival" + }, +/area/station/engineering/atmos) +"bup" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4; + initialize_directions = 11 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"buq" = ( +/obj/machinery/atmospherics/binary/pump{ + name = "Mix to Distro" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bur" = ( +/obj/machinery/atmospherics/unary/thermomachine/heater, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bus" = ( +/obj/machinery/atmospherics/unary/thermomachine/freezer{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"but" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"buu" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/portable/pump, +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/engineering/atmos) +"buv" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/portable/pump, +/obj/machinery/camera{ + c_tag = "Atmospherics Storage"; + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/engineering/atmos) +"buw" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/plasteel{ + icon_state = "escape" + }, +/area/station/engineering/atmos) +"bux" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/plasteel{ + icon_state = "escape" + }, +/area/station/engineering/atmos) +"buK" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "escape" + }, +/area/station/hallway/primary/port) +"buL" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/station/engineering/tech_storage) +"buM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"buQ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"buR" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"buS" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/biogenerator, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"buT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "Hydroponics Shutters"; + name = "Hydroponics Shutters" + }, +/turf/simulated/floor/plating, +/area/station/service/hydroponics) +"buX" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/space, +/area/station/engineering/atmos) +"bvc" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/equipmentstorage) +"bvd" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/item/coin/silver, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/station/command/vault) +"bve" = ( +/obj/machinery/status_display/directional/north, +/obj/structure/closet/secure_closet/freezer/money, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/greengrid, +/area/station/command/vault) +"bvf" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/station/command/vault) +"bvh" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/requests_console{ + department = "Warden"; + departmentType = 7; + name = "Warden's Requests Console"; + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/warden) +"bvl" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/visitingroom) +"bvv" = ( +/obj/structure/window/reinforced, +/obj/machinery/camera{ + c_tag = "AI Minisatellite North"; + dir = 1; + network = list("SS13","Minisat") + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bvz" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/station/turret_protected/ai) +"bvC" = ( +/obj/item/kirbyplants, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bvD" = ( +/obj/machinery/atmospherics/unary/thermomachine/heater/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "arrival" + }, +/area/station/engineering/atmos) +"bvE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bvF" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Air to Distro"; + on = 1; + target_pressure = 101 + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bvG" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/camera{ + c_tag = "Atmospherics Distribution"; + dir = 1; + network = list("SS13","Engineering") + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bvH" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bvI" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Air to Waste"; + target_pressure = 101 + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bvJ" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"bvK" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos) +"bvL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"bvM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/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, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"bvO" = ( +/obj/machinery/dna_scannernew, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"bvP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/maintenance/starboard) +"bvT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port) +"bvV" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/sw) +"bvW" = ( +/obj/structure/rack, +/obj/item/circuitboard/robotics{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/mecha_control, +/obj/effect/decal/warning_stripes/southwest, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/tech_storage) +"bvX" = ( +/obj/structure/rack, +/obj/item/circuitboard/communications{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/card, +/obj/effect/decal/warning_stripes/south, +/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" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/tech_storage) +"bvY" = ( +/obj/structure/rack, +/obj/item/circuitboard/aicore{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/aiupload, +/obj/item/circuitboard/borgupload{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/tech_storage) +"bwf" = ( +/turf/simulated/wall/r_wall, +/area/station/command/bridge) +"bwg" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast north"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"bwm" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"bwq" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/station/command/vault) +"bws" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"bwu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"bwv" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/command/vault) +"bwA" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bwF" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bwG" = ( +/obj/machinery/porta_turret, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/ai) +"bwH" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bwJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bwK" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bwL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"bwM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "AI Minisatellite NorthWest"; + dir = 8; + network = list("SS13","Minisat") + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bwN" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/gravitygenerator) +"bwP" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/break_room) +"bwQ" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/station/engineering/break_room) +"bwS" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"bwY" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/closet/firecloset, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bwZ" = ( +/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/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bxc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"bxe" = ( +/obj/machinery/washing_machine, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Medbay Staff Room"; + network = list("Medbay","SS13") + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"bxf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"bxg" = ( +/obj/structure/table, +/obj/machinery/light/directional/east, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/hallway/primary/port) +"bxh" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/tech_storage) +"bxi" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) +"bxj" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/tech_storage) +"bxk" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/camera{ + c_tag = "Secure Technical Storage"; + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/tech_storage) +"bxl" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) +"bxm" = ( +/obj/machinery/computer/card, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bxn" = ( +/obj/machinery/computer/crew, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bxo" = ( +/obj/machinery/computer/med_data, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bxp" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs, +/obj/item/flash, +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"bxq" = ( +/obj/machinery/computer/prisoner, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/command/bridge) +"bxr" = ( +/obj/machinery/computer/security, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/command/bridge) +"bxs" = ( +/obj/machinery/computer/secure_data, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/command/bridge) +"bxt" = ( +/obj/structure/table/reinforced, +/obj/machinery/status_display/directional/north, +/obj/machinery/door_control/shutter{ + id = "bridge blast north"; + name = "North Bridge Blast Door Control" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"bxu" = ( +/obj/machinery/computer/station_alert, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/command/bridge) +"bxv" = ( +/obj/machinery/computer/atmos_alert, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/command/bridge) +"bxw" = ( +/obj/machinery/computer/monitor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellow" + }, +/area/station/command/bridge) +"bxx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"bxy" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/alarm/directional/south, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bxA" = ( +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/hallway/primary/central/ne) +"bxB" = ( +/obj/machinery/door/airlock/vault{ + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/vault, +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/command/vault) +"bxD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"bxE" = ( +/obj/machinery/nuclearbomb, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/greengrid, +/area/station/command/vault) +"bxG" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/vault) +"bxJ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/lobby) +"bxK" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/lobby) +"bxM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "AI Minisatellite NorthEast"; + dir = 4; + network = list("Minisat","SS13"); + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bxP" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bxX" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/robot_parts/r_leg, +/obj/item/robot_parts/l_leg, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bxY" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bxZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"bya" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/hallway/secondary/entry) +"byc" = ( +/obj/machinery/ai_slipper, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"byd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"bye" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"byf" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"byg" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"byh" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"byi" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"byk" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/warning_stripes/yellow, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"byl" = ( +/turf/simulated/wall, +/area/station/engineering/break_room) +"byn" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"byr" = ( +/turf/simulated/wall, +/area/station/engineering/hardsuitstorage) +"byu" = ( +/obj/item/kirbyplants, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"byv" = ( +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"byw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"byx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/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, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"byF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"byG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"byH" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Port Hallway North"; + dir = 8 + }, +/obj/machinery/atmospherics/portable/pump, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/hallway/primary/port) +"byI" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/effect/decal/warning_stripes/south, +/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/plasteel, +/area/station/engineering/tech_storage) +"byJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/maintenance/fore) +"byN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"byQ" = ( +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Central Ring Hallway West"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) +"byR" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"byS" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"byU" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"byV" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"byX" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/door_control/shutter/east{ + id = "bridge blast east"; + name = "East Bridge Blast Door Control"; + req_access_txt = "19" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"byY" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/obj/item/flash, +/obj/item/storage/box/ids, +/obj/item/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"bza" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"bzb" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) +"bzc" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/station/command/vault) +"bzd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/greengrid, +/area/station/command/vault) +"bze" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "Surgery1" + }, +/obj/machinery/holosign/surgery{ + id = "Surgery1" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/surgery/primary) +"bzt" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/curtain/open/shower, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"bzv" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall/r_wall, +/area/station/turret_protected/ai) +"bzw" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bzy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"bzz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bzA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bzB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"bzC" = ( +/obj/machinery/door/window{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"bzD" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/pen, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bzE" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/gravitygenerator) +"bzG" = ( +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/gravitygenerator) +"bzH" = ( +/obj/machinery/status_display/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bzI" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bzJ" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/warning_stripes/northeast, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bzK" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bzL" = ( +/turf/simulated/wall, +/area/station/engineering/gravitygenerator) +"bzN" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bzO" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/radio/intercom/directional/north, +/obj/item/crowbar/engineering, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bzU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/service/hydroponics) +"bzV" = ( +/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/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bAe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"bAf" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/pump, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/hallway/primary/port) +"bAg" = ( +/obj/structure/table/reinforced, +/obj/item/plant_analyzer, +/obj/item/plant_analyzer, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bAh" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer, +/obj/item/assembly/signaler, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/tech_storage) +"bAi" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/tech_storage) +"bAk" = ( +/obj/structure/table/reinforced, +/obj/item/mmi, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bAm" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/fitness) +"bAp" = ( +/obj/structure/table/reinforced, +/obj/item/aiModule/reset, +/obj/item/flash, +/obj/item/flash, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/tech_storage) +"bAr" = ( +/obj/item/kirbyplants, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"bAs" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/bridge) +"bAt" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"bAw" = ( +/obj/machinery/computer/security/mining, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkbrown" + }, +/area/station/command/bridge) +"bAx" = ( +/obj/machinery/computer/supplycomp, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkbrown" + }, +/area/station/command/bridge) +"bAy" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/bluespace_beacon, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"bAC" = ( +/obj/machinery/computer/security/telescreen/rd{ + pixel_y = 2 + }, +/turf/simulated/wall, +/area/station/command/bridge) +"bAD" = ( +/obj/machinery/computer/shuttle/mining, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkbrown" + }, +/area/station/command/bridge) +"bAE" = ( +/obj/machinery/computer/aifixer, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkpurple" + }, +/area/station/command/bridge) +"bAF" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"bAI" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/light/small/directional/south, +/obj/structure/closet/crate, +/obj/item/storage/belt/champion, +/obj/item/stack/sheet/mineral/gold, +/obj/item/stack/sheet/mineral/gold, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/station/command/vault) +"bAJ" = ( +/obj/machinery/ai_status_display/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/greengrid, +/area/station/command/vault) +"bAN" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/hallway/primary/starboard) +"bAT" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"bBd" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/ai) +"bBf" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bBg" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/ai) +"bBi" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/station/engineering/gravitygenerator) +"bBj" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/gravitygenerator) +"bBl" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/gravitygenerator) +"bBn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"bBo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bBq" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"bBr" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bBt" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generation Access"; + dir = 4; + network = list("Engineering","SS13"); + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 4 + }, +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bBv" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "AI Minisatellite South"; + network = list("SS13","Minisat") + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bBy" = ( +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bBz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bBA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bBE" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/station/engineering/break_room) +"bBG" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/break_room) +"bBH" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/break_room) +"bBI" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "caution" + }, +/area/station/engineering/break_room) +"bBO" = ( +/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 = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"bBP" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bBQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/engineering/tech_storage) +"bBR" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/tech_storage) +"bBT" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/engineering/tech_storage) +"bBU" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/east, +/obj/item/aicard, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bBW" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bBX" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/obj/item/analyzer, +/obj/item/analyzer, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bBY" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bBZ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Primary Tool Storage"; + name = "Primary Tool Storage Console"; + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bCa" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bCb" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bCc" = ( +/obj/structure/closet/crate/internals, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/hardhat/orange, +/obj/item/clothing/head/hardhat/orange, +/obj/item/clothing/head/hardhat/orange, +/obj/item/clothing/head/hardhat/orange, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bCe" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/public/storage/tools) +"bCg" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/north, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bCn" = ( +/obj/machinery/light/directional/north, +/obj/machinery/door_control/shutter/north{ + id = "bridge blast west"; + name = "West Bridge Blast Door Control"; + pixel_x = null; + req_access_txt = "19" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"bCq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluecorners" + }, +/area/station/command/bridge) +"bCr" = ( +/obj/structure/window/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bCs" = ( +/obj/machinery/door/window/reinforced/reversed{ + name = "Captains seat" + }, +/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 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bCu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" + }, +/area/station/command/bridge) +"bCy" = ( +/obj/machinery/light/directional/north, +/obj/machinery/door_control/shutter/north{ + id = "bridge blast east"; + name = "East Bridge Blast Door Control"; + pixel_x = null; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"bCE" = ( +/obj/machinery/camera{ + c_tag = "Central Ring Hallway East"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"bCG" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel/dark, +/area/station/command/meeting_room) +"bCP" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/storage) +"bCT" = ( +/obj/item/radio/intercom/directional/south, +/obj/item/radio/intercom/private{ + pixel_x = -28; + pixel_y = -10 + }, +/obj/item/radio/intercom/custom{ + pixel_y = 28 + }, +/obj/effect/landmark{ + icon = 'icons/effects/spawner_icons.dmi'; + icon_state = "AI"; + name = "tripai" + }, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"bCU" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/ai) +"bCV" = ( +/obj/machinery/ai_slipper, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"bCW" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/directional/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/ai) +"bCX" = ( +/obj/effect/landmark/start/ai, +/obj/item/radio/intercom/private{ + pixel_x = 28; + pixel_y = 5 + }, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + name = "AI Requests Console"; + pixel_x = 32; + pixel_y = 32 + }, +/obj/item/radio/intercom/custom{ + pixel_y = 5; + pixel_x = -28 + }, +/obj/machinery/newscaster/security_unit{ + name = "west bump"; + pixel_x = -32; + pixel_y = 32 + }, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bCY" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_y = -24 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Chamber North"; + dir = 1; + network = list("SS13","Minisat"); + start_active = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bCZ" = ( +/obj/machinery/ai_slipper, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"bDa" = ( +/obj/item/radio/intercom/directional/south, +/obj/item/radio/intercom/private{ + pixel_x = 28; + pixel_y = -10 + }, +/obj/item/radio/intercom/custom{ + pixel_y = 28 + }, +/obj/effect/landmark{ + icon = 'icons/effects/spawner_icons.dmi'; + icon_state = "AI"; + name = "tripai" + }, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"bDc" = ( +/turf/simulated/floor/greengrid, +/area/station/engineering/gravitygenerator) +"bDd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/gravitygenerator) +"bDe" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/closet/radiation, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bDf" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/gravitygenerator) +"bDg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bDh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bDi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Foyer" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/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/plasteel, +/area/station/engineering/gravitygenerator) +"bDj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bDk" = ( +/obj/machinery/hologram/holopad, +/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/plasteel, +/area/station/engineering/gravitygenerator) +"bDl" = ( +/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 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bDm" = ( +/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 + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bDo" = ( +/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 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bDp" = ( +/turf/simulated/wall, +/area/station/maintenance/port2) +"bDq" = ( +/obj/structure/cable{ + 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/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bDr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/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 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bDu" = ( +/obj/structure/cable{ + 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/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bDx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/junction, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bDy" = ( +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/engineering/break_room) +"bDC" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"bDE" = ( +/obj/item/kirbyplants, +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bDF" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/engineering/tech_storage) +"bDH" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/cyborgrecharger{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/mech_bay_power_console, +/obj/item/circuitboard/mech_recharger{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/circuitboard/mechfab{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/tech_storage) +"bDI" = ( +/obj/item/kirbyplants, +/obj/machinery/ai_status_display/east, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bDJ" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/rdconsole{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/circuitboard/rdserver{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/destructive_analyzer, +/obj/item/circuitboard/protolathe{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/circuitboard/circuit_imprinter{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/tech_storage) +"bDK" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/public/storage/tools) +"bDL" = ( +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"bDN" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/public/storage/tools) +"bDO" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/public/storage/tools) +"bDP" = ( +/obj/structure/table/reinforced, +/obj/item/stack/rods, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bDQ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/storage/tools) +"bDR" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/central/nw) +"bDS" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/gps, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bDT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast west"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/bridge) +"bDU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"bDY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"bEd" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bEe" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/restraints/handcuffs, +/obj/item/flash, +/turf/simulated/floor/carpet, +/area/station/command/bridge) +"bEg" = ( +/obj/machinery/computer/communications, +/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, +/turf/simulated/floor/carpet, +/area/station/command/bridge) +"bEh" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv{ + pixel_y = 6 + }, +/turf/simulated/floor/carpet, +/area/station/command/bridge) +"bEi" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/flashlight/lamp, +/turf/simulated/floor/carpet, +/area/station/command/bridge) +"bEj" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bEk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/bridge) +"bEm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"bEn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast east"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/bridge) +"bEo" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/ne) +"bED" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bEE" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_y = -24 + }, +/obj/machinery/door_control/shutter/north{ + id = "AI-door"; + name = "AI Entrance Blast Doors"; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/ai) +"bEF" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bEG" = ( +/obj/machinery/gravity_generator/main/station, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/station/engineering/gravitygenerator) +"bEI" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/gravitygenerator) +"bEJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/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/plasteel, +/area/station/engineering/break_room) +"bEK" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bEL" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"bEM" = ( +/obj/machinery/power/port_gen/pacman, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bEN" = ( +/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/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bEO" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bEQ" = ( +/obj/machinery/camera{ + c_tag = "Engineering Storage"; + dir = 1; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/engineering/break_room) +"bER" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/engineering/break_room) +"bES" = ( +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/engineering/break_room) +"bET" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "caution" + }, +/area/station/engineering/break_room) +"bEU" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/east, +/obj/machinery/alarm/directional/south, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/station/engineering/break_room) +"bEW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bEX" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bEY" = ( +/obj/structure/dresser, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"bEZ" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bFb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bFd" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Engineering Entrance"; + dir = 4; + network = list("Engineering","SS13"); + pixel_y = -22 + }, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bFe" = ( +/obj/machinery/light/directional/north, +/obj/effect/decal/warning_stripes/north, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bFf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bFg" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/break_room) +"bFi" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bFj" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/cloning{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/circuitboard/clonescanner{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/circuitboard/clonepod{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/circuitboard/cryo_tube{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/circuitboard/pandemic{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/circuitboard/bodyscanner{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/circuitboard/sleeper{ + pixel_x = 9; + pixel_y = -9 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/tech_storage) +"bFk" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/autolathe{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/circuitboard/ore_redemption{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/tech_storage) +"bFl" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/micro_laser, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bFm" = ( +/obj/structure/rack, +/obj/item/painter, +/obj/item/toner, +/obj/machinery/status_display/directional/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bFn" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/public/storage/tools) +"bFo" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/storage/tools) +"bFp" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/storage/tools) +"bFq" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/public/storage/tools) +"bFr" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bFu" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast west"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"bFx" = ( +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bFy" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bFz" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bFB" = ( +/obj/machinery/camera{ + c_tag = "Bridge Port"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bFC" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bFD" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bFE" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast east"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"bFF" = ( +/obj/structure/rack, +/obj/machinery/light/small/directional/south, +/obj/item/aicard, +/obj/item/storage/secure/briefcase, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bFG" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/taperecorder, +/turf/simulated/floor/carpet, +/area/station/command/bridge) +"bFH" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/structure/cable{ + 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/carpet, +/area/station/command/bridge) +"bFK" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/folder/blue, +/obj/item/pen, +/turf/simulated/floor/carpet, +/area/station/command/bridge) +"bFL" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/machinery/light/small/directional/south, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -3 + }, +/obj/item/multitool/command, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bFN" = ( +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bFO" = ( +/obj/machinery/camera{ + c_tag = "Bridge Starboard"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bFQ" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"bFR" = ( +/obj/item/kirbyplants, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"bFV" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/detective) +"bGq" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/mmi, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bGs" = ( +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/gravitygenerator) +"bGt" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/closet/radiation, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bGu" = ( +/obj/machinery/status_display/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Gravity Generation"; + dir = 1; + network = list("SS13","Engineering") + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bGv" = ( +/obj/machinery/alarm/directional/south, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bGw" = ( +/obj/machinery/newscaster/directional/south, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bGx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/nightshifted/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/spawner/xeno, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"bGy" = ( +/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/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bGz" = ( +/turf/simulated/wall/r_wall, +/area/station/command/office/ce) +"bGA" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/engineering/break_room) +"bGB" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generation"; + dir = 1; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/gravitygenerator) +"bGD" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/cans/starkist, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bGE" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bGF" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/lightreplacer, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bGG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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/junction/reversed, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bGH" = ( +/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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bGI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bGK" = ( +/obj/structure/cable{ + 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 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bGL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bGM" = ( +/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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bGN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bGO" = ( +/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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"bGP" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/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 = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/tech_storage) +"bGQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-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/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"bGR" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"bGS" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bGT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/engineering/tech_storage) +"bGX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/engineering/tech_storage) +"bGY" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm/directional/east, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bGZ" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bHa" = ( +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/storage/tools) +"bHb" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bHc" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/public/storage/tools) +"bHd" = ( +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/storage/tools) +"bHe" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/public/storage/tools) +"bHh" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bHi" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) +"bHj" = ( +/turf/simulated/wall/r_wall, +/area/station/command/meeting_room) +"bHk" = ( +/turf/simulated/wall, +/area/station/command/meeting_room) +"bHl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Conference Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/structure/cable{ + 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/wood/oak, +/area/station/command/meeting_room) +"bHn" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/command/bridge) +"bHo" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/megaphone, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/command/bridge) +"bHp" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/command/bridge) +"bHq" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/fancy/donut_box, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge Requests Console"; + pixel_y = -30 + }, +/turf/simulated/floor/carpet, +/area/station/command/bridge) +"bHr" = ( +/turf/simulated/floor/carpet, +/area/station/command/bridge) +"bHs" = ( +/obj/machinery/camera{ + c_tag = "Bridge Center"; + dir = 1 + }, +/obj/machinery/turretid/stun{ + control_area = "\improper AI Upload Chamber"; + name = "AI Upload Turret Control"; + pixel_y = -24; + req_one_access_txt = "75" + }, +/turf/simulated/floor/carpet, +/area/station/command/bridge) +"bHt" = ( +/obj/machinery/door_control/shutter/south{ + id = "stationawaygate"; + name = "Expedition Shutters Access Control"; + pixel_x = 7; + req_access_txt = "62" + }, +/obj/machinery/door_control/shutter/south{ + id = "eva-shutters"; + name = "Auxilary E.V.A. Storage"; + pixel_x = -7; + req_one_access_txt = "18" + }, +/obj/machinery/keycard_auth/south{ + pixel_y = -32 + }, +/turf/simulated/floor/carpet, +/area/station/command/bridge) +"bHu" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/paper_bin/nanotrasen, +/obj/item/pen/multi, +/turf/simulated/floor/carpet, +/area/station/command/bridge) +"bHv" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/station/command/bridge) +"bHw" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/command/bridge) +"bHx" = ( +/turf/simulated/wall/r_wall, +/area/station/command/office/captain) +"bHz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + id_tag = "captainofficedoor"; + name = "Captain's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/wood/oak, +/area/station/command/office/captain) +"bHA" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"bHI" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/security/detective) +"bHK" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30 + }, +/obj/item/restraints/handcuffs, +/obj/item/storage/lockbox/spy_kit, +/obj/item/storage/box/bodybags, +/obj/item/flash, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/security/detective) +"bHM" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/table/wood, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/item/taperecorder{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/item/storage/fancy/donut_box, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/simulated/floor/plasteel/dark, +/area/station/security/detective) +"bHN" = ( +/obj/structure/filingcabinet/security, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/detective) +"bHO" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/detective) +"bHP" = ( +/obj/machinery/photocopier, +/obj/machinery/ai_status_display/north, +/obj/structure/reagent_dispensers/peppertank/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/detective) +"bHY" = ( +/obj/structure/table/wood, +/obj/structure/disposalpipe/segment, +/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" + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"bHZ" = ( +/turf/simulated/floor/grass/jungle, +/area/station/maintenance/fsmaint) +"bIb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bIf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/abandoned_garden) +"bIh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"bIi" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "AI Core Door" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/ai_upload{ + dir = 8 + }, +/obj/machinery/light_switch/north{ + pixel_x = -4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/ai) +"bIj" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_y = 24 + }, +/obj/machinery/ai_slipper, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bIk" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "AI Core Door" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/ai_upload{ + dir = 4 + }, +/obj/machinery/turretid/lethal{ + control_area = "\improper AI Chamber"; + name = "AI Chamber Turret Control"; + pixel_x = -5; + pixel_y = 24; + req_access_txt = "75" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/ai) +"bIl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bIm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"bIn" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bIo" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/pen, +/obj/item/flash, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bIp" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"bIq" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"bIr" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"bIs" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"bIu" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"bIv" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"bIx" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bIy" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bIA" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bIC" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bID" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bIG" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/primary/central) +"bII" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bIJ" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/secure_data{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/circuitboard/camera{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/circuitboard/prisoner{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/tech_storage) +"bIK" = ( +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/break_room) +"bIN" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Technical Storage"; + dir = 4 + }, +/obj/item/paicard, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bIO" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/message_monitor{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/circuitboard/aifixer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/teleporter, +/obj/item/circuitboard/teleporter_hub{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/circuitboard/teleporter_station{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/tech_storage) +"bIR" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/stock_parts/cell/high, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bIS" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/storage/box/lights/mixed, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bIT" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/station/public/storage/tools) +"bIV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary tool storage" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/storage/tools) +"bIX" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"bIY" = ( +/obj/structure/table/wood, +/obj/machinery/status_display/directional/west, +/obj/item/flashlight/lamp, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bIZ" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bJa" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bJb" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bJc" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bJe" = ( +/obj/machinery/newscaster/security_unit/south, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bJf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bJg" = ( +/obj/structure/table/wood, +/obj/item/paicard, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bJi" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/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, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"bJj" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/crew/captain, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bJk" = ( +/obj/machinery/light_switch/north, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bJm" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bJn" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bJo" = ( +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bJp" = ( +/obj/structure/sign/bobross{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bJq" = ( +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bJr" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bJs" = ( +/obj/machinery/computer/security/mining{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bJK" = ( +/obj/structure/closet/secure_closet{ + anchored = 1; + name = "Evidence Storage"; + req_access_txt = "4" + }, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/security/evidence) +"bJO" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat) +"bJP" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bJQ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bJR" = ( +/obj/structure/table/reinforced, +/obj/item/robot_parts/chest, +/obj/item/robot_parts/l_arm{ + pixel_x = -6 + }, +/obj/item/robot_parts/r_arm{ + pixel_x = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bJS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"bJT" = ( +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"bJU" = ( +/obj/structure/cable{ + 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 + }, +/obj/machinery/porta_turret, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/ai) +"bJV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-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/greengrid, +/area/station/turret_protected/ai) +"bJW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/greengrid, +/area/station/turret_protected/ai) +"bJX" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bJY" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bKa" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/crowbar/red, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/station/hallway/secondary/entry) +"bKb" = ( +/obj/item/stack/sheet/mineral/sandbags, +/obj/effect/landmark/damageturf, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"bKd" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"bKe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/command/office/ce) +"bKf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/command/office/ce) +"bKg" = ( +/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{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/command/office/ce) +"bKh" = ( +/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/plasteel/dark, +/area/station/command/office/ce) +"bKk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + id_tag = "ceofficedoor"; + name = "Chief Engineer's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/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/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/command/office/ce) +"bKl" = ( +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bKn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"bKp" = ( +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bKr" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bKu" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/powermonitor{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/stationalert, +/obj/item/circuitboard/atmos_alert{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/circuitboard/smes{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/tech_storage) +"bKy" = ( +/obj/item/kirbyplants, +/obj/machinery/ai_status_display/west, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bKz" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"bKA" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/hacking, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction, +/obj/machinery/status_display/directional/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bKB" = ( +/obj/item/kirbyplants, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bKC" = ( +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bKD" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9; + color = "lightblue" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"bKE" = ( +/obj/machinery/door/poddoor/shutters{ + density = 0; + dir = 8; + icon_state = "open"; + id_tag = "meetroomshutters"; + name = "Meeting Room Shutters"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/meeting_room) +"bKF" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/machinery/door_control/shutter{ + id = "meetroomshutters"; + name = "Privacy Shutters"; + pixel_x = 5; + pixel_y = -4; + req_one_access_txt = "18" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bKH" = ( +/obj/structure/chair/comfy/brown, +/turf/simulated/floor/carpet, +/area/station/command/meeting_room) +"bKK" = ( +/obj/structure/chair/comfy/beige, +/turf/simulated/floor/carpet, +/area/station/command/meeting_room) +"bKL" = ( +/obj/structure/table/wood, +/obj/item/phone, +/obj/item/cigbutt/cigarbutt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/station/command/meeting_room) +"bKM" = ( +/obj/machinery/light_switch/south, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bKN" = ( +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bKP" = ( +/obj/machinery/porta_turret, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"bKS" = ( +/obj/machinery/light_switch/north, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bKU" = ( +/obj/machinery/camera/motion{ + c_tag = "AI Upload Chamber" + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bKY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"bKZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bLc" = ( +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bLd" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start/captain, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bLe" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bLf" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bLg" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bLh" = ( +/turf/simulated/wall, +/area/station/public/storage/tools/auxiliary) +"bLi" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/public/storage/tools/auxiliary) +"bLj" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/public/storage/tools/auxiliary) +"bLk" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/door_control/bolt_control/west{ + id = "toilet2" + }, +/obj/structure/sign/poster/official/random/south, +/obj/machinery/light/small/directional/west, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel, +/area/station/service/theatre) +"bLl" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/light/directional/north, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/station/public/storage/tools/auxiliary) +"bLm" = ( +/obj/structure/closet/toolcloset, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/public/storage/tools/auxiliary) +"bLn" = ( +/turf/simulated/wall, +/area/station/security/detective) +"bLo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/security/detective) +"bLp" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/security/detective) +"bLs" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/crew/detective, +/turf/simulated/floor/carpet, +/area/station/security/detective) +"bLt" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/station/security/detective) +"bLx" = ( +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/carpet, +/area/station/security/detective) +"bLy" = ( +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"bLF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"bLK" = ( +/turf/simulated/wall, +/area/station/security/processing) +"bLM" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/space, +/area/space/nearstation) +"bLN" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bLO" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/ai) +"bLP" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"bLQ" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bLR" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"bLS" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"bLT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bLU" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bLV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bLZ" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/metal/fifty{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/machinery/alarm/directional/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bMa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"bMb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/station/hallway/primary/fore) +"bMc" = ( +/obj/machinery/camera{ + c_tag = "Primary Security Hallway North"; + dir = 4; + pixel_y = -22 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"bMg" = ( +/obj/machinery/status_display/directional/west, +/obj/machinery/computer/card/minor/ce{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"bMh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/command/office/ce) +"bMi" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin/nanotrasen, +/obj/item/pen/multi, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/command/office/ce) +"bMj" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/command/office/ce) +"bMk" = ( +/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/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/command/office/ce) +"bMn" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bMt" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bMu" = ( +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bMv" = ( +/obj/machinery/status_display/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bMA" = ( +/obj/structure/sign/poster/official/random/north, +/obj/item/radio/intercom/directional/east, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bMC" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bME" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/east, +/obj/item/circuitboard/sleeper, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bMF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"bMG" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bMH" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "yellow" + }, +/area/station/public/storage/tools) +"bMI" = ( +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/public/storage/tools) +"bMJ" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/station/public/storage/tools) +"bMK" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/public/storage/tools) +"bML" = ( +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"bMM" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bMN" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bMO" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/turf/simulated/floor/carpet, +/area/station/command/meeting_room) +"bMP" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/command/meeting_room) +"bMQ" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow, +/turf/simulated/floor/carpet, +/area/station/command/meeting_room) +"bMR" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/lighter/zippo, +/turf/simulated/floor/carpet, +/area/station/command/meeting_room) +"bMS" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/station/command/meeting_room) +"bMU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bMV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"bMW" = ( +/obj/item/aiModule/reset, +/obj/structure/table/glass, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"bMX" = ( +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bMY" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"bMZ" = ( +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/structure/table/glass, +/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, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"bNa" = ( +/obj/item/aiModule/nanotrasen, +/obj/structure/table/glass, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"bNc" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + 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/wood/oak, +/area/station/command/office/captain) +"bNf" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bNg" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/clothing/mask/cigarette/cigar, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bNh" = ( +/obj/machinery/light/directional/east, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bNi" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/multitool, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/public/storage/tools/auxiliary) +"bNj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/storage/tools/auxiliary) +"bNk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/storage/tools/auxiliary) +"bNl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/storage/tools/auxiliary) +"bNn" = ( +/obj/structure/table/tray, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/mask/surgical, +/obj/item/autopsy_scanner{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/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" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/security/detective) +"bNr" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/grimy, +/area/station/security/detective) +"bNs" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/hand_labeler, +/turf/simulated/floor/carpet, +/area/station/security/detective) +"bNt" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/detective, +/turf/simulated/floor/carpet, +/area/station/security/detective) +"bNx" = ( +/obj/effect/landmark/lightsout, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/lobby) +"bNy" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bNz" = ( +/obj/structure/flora/junglebush, +/turf/simulated/floor/grass/jungle, +/area/station/maintenance/fsmaint) +"bNA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/processing) +"bNB" = ( +/obj/machinery/mineral/ore_redemption, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"bNC" = ( +/obj/structure/chair/stool/bar{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/starboard) +"bNH" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bNI" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/lobby) +"bNL" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber South"; + dir = 1; + network = list("SS13","Minisat"); + start_active = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai) +"bNM" = ( +/turf/simulated/wall/r_wall, +/area/station/turret_protected/aisat) +"bNN" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/station/turret_protected/aisat) +"bNP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/flasher{ + pixel_x = -24 + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "AI-door"; + name = "AI Chamber Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Chamber Observation" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bNQ" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/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/station/security/processing) +"bNR" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall/r_wall, +/area/station/turret_protected/aisat) +"bNU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/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, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"bNZ" = ( +/obj/machinery/camera{ + c_tag = "Chief Engineer's Office"; + dir = 4; + network = list("Engineering","SS13"); + pixel_y = -22 + }, +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 7; + name = "Chief Engineer Requests Console"; + pixel_x = -32 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"bOa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/command/office/ce) +"bOb" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start/chief_engineer, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/command/office/ce) +"bOd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/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/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/command/office/ce) +"bOe" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"bOf" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/station/command/office/ce) +"bOg" = ( +/obj/structure/sign/nosmoking_2, +/turf/simulated/wall, +/area/station/engineering/break_room) +"bOh" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/port) +"bOi" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall, +/area/station/engineering/break_room) +"bOj" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/assembly/voice, +/obj/item/assembly/voice, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/tech_storage) +"bOl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fsmaint) +"bOn" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bOq" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bOr" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/tech_storage) +"bOs" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/tech_storage) +"bOt" = ( +/obj/item/kirbyplants, +/obj/machinery/light_switch/south, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/tech_storage) +"bOu" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/crowbar, +/obj/machinery/newscaster/directional/south, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/tech_storage) +"bOv" = ( +/obj/effect/decal/warning_stripes/yellow, +/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, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"bOw" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/tech_storage) +"bOx" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/south, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/multitool, +/obj/item/multitool, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bOy" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bOz" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bOA" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/public/storage/tools) +"bOC" = ( +/turf/simulated/wall, +/area/station/public/storage/tools) +"bOD" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) +"bOE" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bOF" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/station/command/meeting_room) +"bOG" = ( +/turf/simulated/floor/carpet, +/area/station/command/meeting_room) +"bOH" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/hop, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"bOI" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/station/command/meeting_room) +"bOJ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/station/command/meeting_room) +"bOM" = ( +/obj/machinery/computer/account_database{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/meeting_room) +"bOO" = ( +/obj/item/aiModule/crewsimov, +/obj/structure/table/glass, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"bOP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bOQ" = ( +/obj/machinery/hologram/holopad, +/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 = 5 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"bOR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bOS" = ( +/obj/item/aiModule/corp, +/obj/structure/table/glass, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"bOT" = ( +/turf/simulated/wall, +/area/station/turret_protected/ai_upload) +"bOU" = ( +/obj/structure/bed/dogbed{ + name = "fox box" + }, +/obj/machinery/newscaster/security_unit/west, +/mob/living/simple_animal/pet/dog/fox/Renault, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/captain) +"bOV" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bOX" = ( +/obj/structure/chair/comfy/brown, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bOZ" = ( +/turf/simulated/wall, +/area/station/command/office/ntrep) +"bPa" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bPb" = ( +/obj/machinery/camera{ + c_tag = "Captain's Room"; + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bPc" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"bPd" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "yellow" + }, +/area/station/public/storage/tools/auxiliary) +"bPe" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/stack/rods, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/station/public/storage/tools/auxiliary) +"bPf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"bPg" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/box/lights/mixed, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/public/storage/tools/auxiliary) +"bPh" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/alarm/directional/south, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/public/storage/tools/auxiliary) +"bPi" = ( +/obj/structure/morgue, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/security/detective) +"bPj" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/security/detective) +"bPk" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/clothing/gloves/color/latex, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/security/detective) +"bPl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light_switch/south{ + pixel_x = 5 + }, +/obj/machinery/firealarm/directional/south{ + pixel_x = -5 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/detective) +"bPo" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/carpet, +/area/station/security/detective) +"bPp" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/item/reagent_containers/food/drinks/flask/detflask, +/turf/simulated/floor/carpet, +/area/station/security/detective) +"bPq" = ( +/obj/machinery/computer/arcade{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"bPs" = ( +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/button/windowtint/south{ + id = "Detective"; + pixel_x = -5 + }, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/carpet, +/area/station/security/detective) +"bPz" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/dark, +/area/station/security/visitingroom) +"bPC" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/space, +/area/space/nearstation) +"bPF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"bPG" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/decal/warning_stripes/northeastcorner, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"bPH" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/alarm/directional/north, +/obj/machinery/atmospherics/portable/canister/air, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"bPI" = ( +/obj/machinery/porta_turret, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bPJ" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bPL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bPN" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bPO" = ( +/obj/machinery/light/directional/north, +/obj/machinery/ai_status_display/north, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"bPP" = ( +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"bPQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"bPR" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"bPS" = ( +/turf/simulated/wall, +/area/space/nearstation) +"bPT" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/structure/transit_tube{ + icon_state = "D-SE" + }, +/turf/space, +/area/space/nearstation) +"bPU" = ( +/obj/structure/lattice, +/obj/structure/transit_tube{ + icon_state = "E-SW" + }, +/turf/space, +/area/space/nearstation) +"bPV" = ( +/obj/structure/lattice, +/obj/structure/transit_tube, +/turf/space, +/area/space/nearstation) +"bPW" = ( +/obj/structure/lattice, +/obj/structure/transit_tube{ + icon_state = "W-SE" + }, +/turf/space, +/area/space/nearstation) +"bPX" = ( +/obj/structure/lattice, +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/turf/space, +/area/space/nearstation) +"bPY" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bPZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/east, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light_switch/east, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"bQa" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/maintenance/fsmaint) +"bQb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/classic/normal{ + dir = 1; + name = "Cargo Bay Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/general{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -6; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"bQd" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/stamp/ce, +/obj/item/paper/tcommskey, +/obj/structure/cable{ + 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/machinery/door_control/normal{ + id = "ceofficedoor"; + name = "Office Door"; + pixel_x = -5; + req_access_txt = "56" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/command/office/ce) +"bQg" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"bQi" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CE" + }, +/turf/simulated/floor/plating, +/area/station/command/office/ce) +"bQk" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/ai_status_display/north, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel/grimy, +/area/station/command/office/ce) +"bQl" = ( +/obj/machinery/light/directional/north, +/obj/structure/bed, +/obj/item/bedsheet/ce, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel/grimy, +/area/station/command/office/ce) +"bQm" = ( +/obj/structure/dresser, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel/grimy, +/area/station/command/office/ce) +"bQo" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/storage) +"bQp" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Engineering Lobby"; + dir = 4; + network = list("Engineering","SS13"); + pixel_y = -22 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bQq" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/closet/radiation, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"bQr" = ( +/turf/simulated/wall, +/area/station/engineering/control) +"bQs" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/break_room) +"bQt" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bQw" = ( +/obj/machinery/camera{ + c_tag = "Port Hallway South"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"bQx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/station/science/xenobiology) +"bQz" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"bQA" = ( +/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/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"bQB" = ( +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + pixel_y = 1 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/turf/simulated/wall, +/area/station/public/storage/tools) +"bQC" = ( +/obj/machinery/alarm/directional/north, +/obj/machinery/teleport/hub, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"bQD" = ( +/obj/machinery/light/directional/north, +/obj/machinery/ai_status_display/north, +/obj/machinery/teleport/station, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"bQE" = ( +/obj/structure/table/wood, +/obj/machinery/ai_status_display/west, +/obj/item/storage/briefcase, +/obj/item/storage/secure/briefcase, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bQG" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bQH" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/camera{ + c_tag = "Command Meeting Room"; + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"bQI" = ( +/turf/simulated/wall, +/area/station/command/office/blueshield) +"bQK" = ( +/obj/machinery/alarm/directional/west, +/obj/machinery/porta_turret{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"bQL" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/ai_upload) +"bQM" = ( +/obj/machinery/ai_slipper, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bQN" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"bQO" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/item/flashlight/lamp/green, +/obj/machinery/light/directional/west, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain) +"bQP" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/item/paper_bin/nanotrasen, +/obj/item/melee/chainofcommand, +/obj/item/pen/multi, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain) +"bQQ" = ( +/obj/structure/table/wood, +/obj/machinery/door/window{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Captain's Desk Door" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/captain{ + dir = 1 + }, +/obj/item/folder/blue, +/obj/item/stamp/captain, +/obj/structure/cable{ + 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/carpet/black, +/area/station/command/office/captain) +"bQR" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Captain's Desk Door" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/captain{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain) +"bQS" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/item/storage/secure/briefcase, +/obj/item/storage/lockbox/medal, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain) +"bQT" = ( +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Captain's Office" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bQU" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"bQV" = ( +/obj/structure/sign/directions/engineering{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + pixel_y = 1 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/turf/simulated/wall, +/area/station/public/storage/tools/auxiliary) +"bQW" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/storage/tools/auxiliary) +"bQX" = ( +/obj/machinery/door/airlock/glass{ + name = "Auxiliary Tool Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/public/storage/tools/auxiliary) +"bRa" = ( +/obj/machinery/door/airlock/security{ + name = "Detective" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/forensics, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/detective) +"bRb" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"bRm" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/space, +/area/space/nearstation) +"bRr" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bRs" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bRt" = ( +/obj/machinery/computer/teleporter, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"bRu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "AI Minisatellite West"; + dir = 8; + network = list("SS13","Minisat") + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bRv" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "AI Minisatellite East"; + dir = 4; + network = list("Minisat","SS13"); + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bRx" = ( +/obj/structure/showcase{ + density = 0; + dir = 4; + icon = 'icons/mob/robots.dmi'; + icon_state = "robot_old"; + name = "Cyborg Statue"; + pixel_x = -9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"bRz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat) +"bRB" = ( +/obj/machinery/ai_slipper, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat) +"bRD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat) +"bRG" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"bRJ" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bRL" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bRM" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/sign/vacuum{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bRN" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/transit_tube{ + icon_state = "S-NE" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bRO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube{ + icon_state = "D-NW" + }, +/turf/space, +/area/space/nearstation) +"bRP" = ( +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/turf/space, +/area/space/nearstation) +"bRQ" = ( +/obj/structure/lattice, +/obj/structure/transit_tube{ + icon_state = "NW-SE" + }, +/turf/space, +/area/space/nearstation) +"bRR" = ( +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/turf/space, +/area/space/nearstation) +"bRS" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/warning_stripes/northeast, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"bRV" = ( +/obj/machinery/status_display/directional/west, +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"bRW" = ( +/obj/structure/table/reinforced, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 5 + }, +/obj/item/lighter/zippo/ce, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/command/office/ce) +"bRX" = ( +/obj/structure/table/reinforced, +/obj/item/cartridge/engineering{ + pixel_x = -6 + }, +/obj/item/cartridge/engineering{ + pixel_x = 6 + }, +/obj/item/cartridge/engineering{ + pixel_y = 6 + }, +/obj/item/reagent_containers/food/pill/patch/silver_sulf, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/command/office/ce) +"bRY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/command/office/ce) +"bRZ" = ( +/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/plasteel/dark, +/area/station/command/office/ce) +"bSa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Bedroom" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/command/office/ce) +"bSb" = ( +/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/plasteel/dark, +/area/station/command/office/ce) +"bSc" = ( +/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 = 9 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/command/office/ce) +"bSd" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/start/chief_engineer, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/command/office/ce) +"bSh" = ( +/obj/item/radio/beacon, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"bSj" = ( +/obj/effect/turf_decal{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"bSk" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/hallway/secondary/entry) +"bSm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"bSo" = ( +/obj/machinery/camera{ + c_tag = "MiniSat Central"; + network = list("SS13","Minisat") + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bSr" = ( +/obj/machinery/atmospherics/meter, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"bSy" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port) +"bSz" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"bSB" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/station/hallway/secondary/entry) +"bSD" = ( +/obj/machinery/camera{ + c_tag = "Central Ring Hallway West"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) +"bSE" = ( +/turf/simulated/wall/r_wall, +/area/station/command/office/hop) +"bSH" = ( +/obj/machinery/smartfridge/secure/circuits/aiupload/experimental, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bSI" = ( +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"bSJ" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_y = -21 + }, +/obj/machinery/computer/aiupload{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bSK" = ( +/obj/machinery/power/apc/important/south, +/obj/structure/cable, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bSL" = ( +/obj/item/radio/intercom/private{ + pixel_y = -28 + }, +/obj/machinery/computer/borgupload{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bSM" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"bSN" = ( +/obj/machinery/smartfridge/secure/circuits/aiupload/highrisk, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"bSO" = ( +/obj/machinery/keycard_auth/north{ + pixel_x = -24; + dir = 4 + }, +/obj/machinery/computer/card{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain Requests Console"; + pixel_x = -30 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain) +"bSP" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain) +"bSQ" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/landmark/start/captain, +/obj/structure/cable{ + 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/carpet/black, +/area/station/command/office/captain) +"bSR" = ( +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain) +"bSS" = ( +/obj/structure/table/wood, +/obj/item/hand_tele, +/obj/item/coin/plasma, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain) +"bST" = ( +/turf/simulated/wall/r_wall, +/area/station/command/office/captain/bedroom) +"bSV" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"bSW" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/starboard) +"bSX" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/starboard) +"bTb" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"bTc" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"bTd" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"bTf" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/economy/vending/chefdrobe, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel, +/area/station/service/kitchen) +"bTg" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/orange, +/area/station/service/bar/atrium) +"bTn" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/brig) +"bTs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/aisat) +"bTt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bTu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bTv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bTw" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bTz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bTB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat) +"bTD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat) +"bTE" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat) +"bTF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat) +"bTG" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bTH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Foyer" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bTI" = ( +/obj/machinery/ai_slipper, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bTK" = ( +/obj/machinery/hologram/holopad, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bTL" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bTM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Teleporter Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bTN" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/aisat) +"bTO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bTQ" = ( +/obj/item/radio/beacon, +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/aisat) +"bTR" = ( +/obj/machinery/hologram/holopad, +/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/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/aisat) +"bTS" = ( +/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/plasteel/dark, +/area/station/aisat) +"bTT" = ( +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/aisat) +"bTU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/transit_tube/station{ + dir = 8 + }, +/obj/structure/transit_tube_pod, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bTV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/command/office/ce) +"bTY" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port) +"bTZ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"bUe" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law/black, +/turf/simulated/floor/plasteel/dark, +/area/station/security/interrogation/observation) +"bUi" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/command/office/ce) +"bUj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/command/office/ce) +"bUk" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/command/office/ce) +"bUl" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"bUm" = ( +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CE" + }, +/turf/simulated/floor/plating, +/area/station/command/office/ce) +"bUo" = ( +/turf/simulated/floor/plasteel/grimy, +/area/station/command/office/ce) +"bUp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/command/office/ce) +"bUq" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/command/office/ce) +"bUr" = ( +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/structure/cable{ + 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/plasteel, +/area/station/engineering/tech_storage) +"bUA" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/port) +"bUB" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=engi2"; + location = "engi1" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall4"; + location = "engi3" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"bUD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"bUJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/space/nearstation) +"bUL" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall4a"; + location = "hall4" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=engi1"; + location = "hall3" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-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/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/west) +"bUM" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) +"bUO" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel/dark, +/area/station/hallway/primary/central/west) +"bUQ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/nanotrasen, +/obj/item/stamp/hop, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel Requests Console"; + pixel_y = 30 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"bUR" = ( +/obj/item/kirbyplants, +/obj/machinery/keycard_auth/north, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"bUT" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"bUU" = ( +/obj/structure/table/wood, +/obj/machinery/smartfridge/id, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"bUV" = ( +/obj/machinery/ai_status_display/west, +/obj/machinery/computer/communications{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain) +"bUW" = ( +/obj/machinery/light_switch/south, +/obj/machinery/camera{ + c_tag = "Captain's Desk"; + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain) +"bUY" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain) +"bUZ" = ( +/obj/structure/displaycase/captain, +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain) +"bVa" = ( +/obj/machinery/light/directional/west, +/obj/effect/landmark/start/captain, +/obj/structure/toilet/material/captain{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/captain/bedroom) +"bVb" = ( +/obj/machinery/shower{ + pixel_y = 22 + }, +/obj/structure/curtain/open/shower, +/obj/item/soap/deluxe, +/obj/item/bikehorn/rubberducky/captainducky, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/captain/bedroom) +"bVc" = ( +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Central Ring Hallway East"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) +"bVd" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall13"; + location = "hall12" + }, +/obj/effect/landmark/lightsout, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall11"; + location = "hall10" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/east) +"bVf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/space, +/area/space/nearstation) +"bVj" = ( +/obj/machinery/camera{ + c_tag = "Minisat Teleporter Room"; + dir = 4; + network = list("Minisat","SS13"); + pixel_y = -22 + }, +/obj/machinery/turretid/stun{ + control_area = "\improper AI Satellite"; + name = "AI Antechamber Turret Control"; + pixel_x = -28; + req_access_txt = "75" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bVp" = ( +/obj/item/radio/beacon, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall12"; + location = "hall11" + }, +/mob/living/simple_animal/bot/secbot/beepsky, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/lobby) +"bVs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/space, +/area/space/nearstation) +"bVy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plating, +/area/station/security/execution) +"bVz" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"bVB" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/starboard) +"bVC" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"bVD" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"bVH" = ( +/obj/structure/window/reinforced, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bVJ" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/structure/showcase{ + density = 0; + dir = 4; + icon = 'icons/mob/robots.dmi'; + icon_state = "robot_old"; + name = "Cyborg Statue"; + pixel_x = -9; + pixel_y = 2 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bVL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bVN" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bVO" = ( +/obj/structure/showcase{ + density = 0; + dir = 4; + icon = 'icons/mob/robots.dmi'; + icon_state = "robot_old"; + name = "Cyborg Statue"; + pixel_x = -9; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bVR" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat) +"bVS" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/turret_protected/aisat) +"bVT" = ( +/obj/structure/showcase{ + density = 0; + dir = 8; + icon = 'icons/mob/robots.dmi'; + icon_state = "robot_old"; + name = "Cyborg Statue"; + pixel_x = 9; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bVU" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bVV" = ( +/obj/structure/window/reinforced, +/obj/machinery/light/small/directional/west, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bVW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bVX" = ( +/obj/structure/window/reinforced, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bVY" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/transit_tube{ + icon_state = "N-SE" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"bVZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/turf/space, +/area/space/nearstation) +"bWa" = ( +/obj/structure/transit_tube{ + icon_state = "D-SE" + }, +/turf/space, +/area/space/nearstation) +"bWb" = ( +/obj/structure/lattice, +/obj/structure/transit_tube{ + icon_state = "NE-SW" + }, +/turf/space, +/area/space/nearstation) +"bWc" = ( +/obj/structure/transit_tube{ + icon_state = "D-NW" + }, +/turf/space, +/area/space/nearstation) +"bWd" = ( +/obj/structure/lattice, +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/turf/space, +/area/space/nearstation) +"bWl" = ( +/obj/machinery/keycard_auth/west{ + pixel_x = -34 + }, +/obj/machinery/door_control/shutter/west{ + id = "engstorage"; + name = "Engineering Secure Storage Control"; + req_access_txt = "11" + }, +/obj/machinery/door_control/shutter/west{ + id = "transitlock"; + name = "Transit Tube Lockdown Control"; + pixel_y = -8; + req_access_txt = "11" + }, +/obj/machinery/computer/security/engineering{ + dir = 4 + }, +/obj/machinery/button/windowtint/west{ + id = "CE"; + pixel_y = 8; + range = 12; + req_access_txt = "56" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"bWn" = ( +/obj/machinery/photocopier, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"bWo" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CE" + }, +/turf/simulated/floor/plating, +/area/station/command/office/ce) +"bWp" = ( +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CE" + }, +/turf/simulated/floor/plating, +/area/station/command/office/ce) +"bWq" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CE" + }, +/turf/simulated/floor/plating, +/area/station/command/office/ce) +"bWr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bWt" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"bWu" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bWv" = ( +/obj/machinery/ai_status_display/south, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bWx" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bWy" = ( +/obj/machinery/status_display/directional/east, +/obj/machinery/alarm/directional/south, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"bWz" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/port) +"bWE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port) +"bWF" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"bWG" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port) +"bWH" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port) +"bWI" = ( +/obj/machinery/alarm/directional/east, +/obj/machinery/suit_storage_unit/ce, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/command/office/ce) +"bWJ" = ( +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port) +"bWK" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"bWM" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central) +"bWP" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/reinforced/normal{ + dir = 4; + name = "Access Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/hop{ + dir = 4 + }, +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "Access Queue" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "hop"; + name = "Privacy Shutters" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/hop) +"bWQ" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/hop) +"bWR" = ( +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"bWT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"bWW" = ( +/obj/machinery/door/airlock/command{ + id_tag = "captainofficedoor"; + name = "Captain's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/structure/cable{ + 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/wood/oak, +/area/station/command/office/captain) +"bWX" = ( +/turf/simulated/wall, +/area/station/command/office/captain) +"bWY" = ( +/turf/simulated/floor/plasteel/white, +/area/station/command/office/captain/bedroom) +"bWZ" = ( +/obj/structure/sink/directional/west, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/captain/bedroom) +"bXc" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"bXi" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"bXm" = ( +/obj/machinery/camera{ + c_tag = "Minisat Power Station"; + dir = 8; + network = list("SS13","Minisat") + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"bXo" = ( +/obj/structure/table/glass, +/obj/machinery/light_switch/north, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/item/soap, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"bXy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port) +"bXC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"bXD" = ( +/obj/machinery/camera{ + c_tag = "Primary Security Hallway" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"bXG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/space/nearstation) +"bXH" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bXI" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bXJ" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bXK" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/south, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"bXL" = ( +/obj/machinery/porta_turret, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bXM" = ( +/obj/structure/table/reinforced, +/obj/machinery/status_display/directional/south, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bXN" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/south, +/obj/item/clipboard, +/obj/item/toy/figure/crew/borg, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bXO" = ( +/obj/structure/table/reinforced, +/obj/machinery/ai_status_display/south, +/obj/item/folder/blue, +/obj/item/folder/yellow, +/obj/item/aicard, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bXP" = ( +/obj/item/kirbyplants, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/aisat) +"bXQ" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/turf/space, +/area/space/nearstation) +"bXR" = ( +/obj/structure/lattice, +/obj/structure/transit_tube{ + icon_state = "E-NW" + }, +/turf/space, +/area/space/nearstation) +"bXS" = ( +/obj/structure/lattice, +/obj/structure/transit_tube{ + icon_state = "W-NE" + }, +/turf/space, +/area/space/nearstation) +"bXT" = ( +/obj/structure/lattice, +/obj/structure/transit_tube{ + icon_state = "D-NW" + }, +/turf/space, +/area/space/nearstation) +"bXU" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/control) +"bXV" = ( +/obj/structure/filingcabinet, +/obj/machinery/camera{ + c_tag = "IAA Office"; + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"bXW" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"bXX" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/starboard2) +"bXY" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/fire, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"bYa" = ( +/obj/effect/spawner/random_barrier/possibly_welded_airlock, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"bYc" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"bYe" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/port) +"bYf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/hallway/primary/port) +"bYg" = ( +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"bYi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"bYj" = ( +/turf/simulated/wall, +/area/station/service/library) +"bYk" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/service/library) +"bYl" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/space, +/area/space/nearstation) +"bYn" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/medical, +/obj/structure/sign/directions/security{ + pixel_y = 8 + }, +/turf/simulated/wall, +/area/station/service/library) +"bYo" = ( +/obj/machinery/alarm/directional/west, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/warning_stripes/southwest, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"bYp" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "hop"; + name = "Privacy Shutters" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hop) +"bYq" = ( +/obj/machinery/computer/card{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/hop) +"bYu" = ( +/obj/machinery/status_display/directional/east, +/obj/machinery/pdapainter, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"bYv" = ( +/turf/simulated/wall/r_wall, +/area/station/command/office/ntrep) +"bYx" = ( +/turf/simulated/wall/r_wall, +/area/station/command/office/blueshield) +"bYy" = ( +/obj/machinery/photocopier, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain/bedroom) +"bYA" = ( +/obj/machinery/light_switch/north, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain/bedroom) +"bYB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"bYD" = ( +/turf/simulated/wall, +/area/station/command/office/captain/bedroom) +"bYE" = ( +/obj/machinery/door/airlock/silver{ + name = "Captain's Bathroom" + }, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/captain/bedroom) +"bYH" = ( +/turf/simulated/wall, +/area/station/legal/courtroom) +"bYI" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"bYJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/space, +/area/space/nearstation) +"bYK" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Court" + }, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"bYL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/starboard) +"bYM" = ( +/turf/simulated/wall, +/area/station/legal/lawoffice) +"bYN" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "IAA" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/legal/lawoffice) +"bYP" = ( +/obj/machinery/door/airlock/lawyer, +/obj/effect/mapping_helpers/airlock/access/any/security/iaa, +/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/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"bYR" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Magistrate" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/legal/magistrate) +"bYU" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/maintenance/fsmaint) +"bYY" = ( +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/west) +"bZf" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"bZh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/flasher{ + pixel_x = -24 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Telecommunications" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/telecomms/chamber) +"bZj" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"bZk" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"bZl" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"bZm" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"bZn" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"bZo" = ( +/obj/structure/grille, +/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/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"bZp" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"bZr" = ( +/obj/structure/sign/vacuum, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/control) +"bZs" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"bZt" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"bZw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"bZx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"bZA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"bZB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"bZC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/smes) +"bZD" = ( +/obj/machinery/power/smes{ + charge = 2e+006 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/smes) +"bZE" = ( +/obj/machinery/power/smes{ + charge = 2e+006 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light_switch/east, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/smes) +"bZF" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/reinforced/normal{ + dir = 8; + name = "Security Reception" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ + dir = 8 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/brig) +"bZG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"bZI" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"bZJ" = ( +/obj/structure/table/wood, +/obj/machinery/light_switch/north, +/obj/machinery/computer/library, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"bZK" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"bZM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"bZN" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"bZO" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"bZP" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/item/radio/intercom/directional/north, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"bZR" = ( +/obj/structure/table/wood, +/obj/machinery/computer/library, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"bZS" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/item/radio/intercom/directional/north, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"bZV" = ( +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/west) +"bZW" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall/r_wall, +/area/station/command/office/hop) +"bZX" = ( +/obj/machinery/light/directional/west, +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/hop) +"caa" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/south, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Head of Personnel's Office" + }, +/obj/machinery/keycard_auth/east, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"cab" = ( +/obj/structure/closet/secure_closet/ntrep, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"cad" = ( +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "NT Representative's Office" + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "NT Representative"; + departmentType = 5; + name = "NT Representative Requests Console"; + pixel_y = 30 + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"cae" = ( +/obj/structure/bookcase/sop, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"caf" = ( +/obj/structure/chair/sofa/right, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"cag" = ( +/obj/structure/chair/sofa, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"cah" = ( +/obj/structure/chair/sofa/corner, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"cai" = ( +/obj/item/flag/nt, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"caj" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"cak" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"cal" = ( +/obj/structure/closet/secure_closet/blueshield, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Blueshield"; + departmentType = 5; + name = "Blueshield Requests Console"; + pixel_y = 30 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"cam" = ( +/obj/structure/table/wood, +/obj/item/pinpointer, +/obj/item/disk/nuclear, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain/bedroom) +"car" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/item/card/id/captains_spare, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain/bedroom) +"cat" = ( +/obj/item/kirbyplants, +/obj/machinery/newscaster/security_unit/east, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain/bedroom) +"cax" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"cay" = ( +/obj/machinery/light/directional/north, +/obj/structure/chair/office, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"caz" = ( +/obj/machinery/camera{ + c_tag = "Primary Security Hallway East"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/hallway/primary/starboard) +"caA" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/office, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"caC" = ( +/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" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"caF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/machinery/light_switch/north, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"caH" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/folder/yellow, +/obj/item/folder/red{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/simulated/floor/wood/oak, +/area/station/legal/lawoffice) +"caK" = ( +/obj/machinery/light/directional/north, +/obj/machinery/photocopier, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"caM" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/legal/lawoffice) +"caO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"caQ" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom/directional/north, +/obj/machinery/flasher_button{ + id = "hopflash"; + pixel_x = -38; + pixel_y = -6 + }, +/obj/machinery/door_control/shutter/west{ + id = "hop"; + name = "Privacy Shutters"; + pixel_y = -8; + req_one_access_txt = "18" + }, +/obj/machinery/door_control/shutter/west{ + id = "hopqueueshutters"; + name = "Queue Shutters"; + req_one_access_txt = "18" + }, +/obj/machinery/door_control/ticket_machine_button{ + pixel_x = -24; + pixel_y = 8 + }, +/obj/machinery/computer/guestpass/hop, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/hop) +"caT" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "hos_secure_doors" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"caV" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/telecomms/chamber) +"caW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/telecomms/chamber) +"caX" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/telecomms/chamber) +"caY" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat Telecomms"; + network = list("SS13","Minisat"); + start_active = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/telecomms/chamber) +"cba" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cbb" = ( +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cbc" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cbd" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"cbe" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cbi" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cbl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"cbn" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"cbo" = ( +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/control) +"cbp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/control) +"cbq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"cbr" = ( +/obj/structure/chair/comfy/teal{ + dir = 1 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"cbu" = ( +/obj/item/kirbyplants, +/obj/machinery/camera{ + c_tag = "Engine Room North"; + network = list("Engineering","SS13") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cbv" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/decal/warning_stripes/northwest, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/smes) +"cbw" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/smes) +"cbx" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/smes) +"cby" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cbz" = ( +/obj/machinery/suit_storage_unit/captain, +/obj/machinery/light/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain/bedroom) +"cbA" = ( +/turf/simulated/wall/r_wall, +/area/space/nearstation) +"cbB" = ( +/obj/structure/sign/poster/official/random/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall, +/area/station/maintenance/port) +"cbE" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cbF" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cbG" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/librarian, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cbH" = ( +/obj/effect/decal/warning_stripes/east, +/obj/effect/landmark/spawner/rev, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology/lab) +"cbJ" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Library Fore"; + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cbK" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cbL" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cbM" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cbN" = ( +/obj/machinery/photocopier, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cbO" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cbQ" = ( +/obj/machinery/alarm/directional/east, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"cbR" = ( +/obj/structure/cable{ + 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/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cbS" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/hop) +"cbU" = ( +/obj/machinery/power/apc/directional/east, +/obj/machinery/camera{ + c_tag = "Head of Personnel's Office"; + dir = 8 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"cbW" = ( +/obj/machinery/keycard_auth/west, +/obj/machinery/button/windowtint/north{ + dir = 4; + id = "NT"; + pixel_x = -24 + }, +/obj/machinery/door_control/normal/west{ + id = "ntrepofficedoor"; + name = "Office Door"; + pixel_y = -8; + req_access_txt = "73" + }, +/obj/machinery/light_switch/west{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"cbX" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/paper_bin/nanotrasen, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 12 + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"cbY" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/nanotrasen_rep, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"cbZ" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"cca" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"ccb" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"ccc" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/east, +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"ccd" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"cce" = ( +/obj/structure/table/wood, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"ccf" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/blueshield, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"ccg" = ( +/obj/machinery/door_control/normal/south{ + id = "blueshieldofficedoor"; + name = "Office Door"; + pixel_x = 24; + req_access_txt = "67" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"cch" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen/multi/fountain, +/obj/item/paper/safe_code{ + owner = "captain" + }, +/obj/item/lighter/zippo/cap, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain/bedroom) +"cci" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/landmark/start/captain, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain/bedroom) +"ccj" = ( +/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 = 10 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain/bedroom) +"cck" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain/bedroom) +"ccm" = ( +/obj/machinery/door/window{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/captain{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain/bedroom) +"ccn" = ( +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain/bedroom) +"cco" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/machinery/light/small/directional/east, +/obj/effect/landmark/start/captain, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain/bedroom) +"ccq" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/station/legal/courtroom) +"ccr" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/chair/office, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"cct" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"ccx" = ( +/obj/structure/table/reinforced, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"ccC" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/stamp/law, +/obj/item/clothing/glasses/sunglasses, +/turf/simulated/floor/carpet/red, +/area/station/legal/lawoffice) +"ccD" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/carpet/red, +/area/station/legal/lawoffice) +"ccU" = ( +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/telecomms/chamber) +"ccW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/telecomms/chamber) +"ccX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/telecomms/chamber) +"cda" = ( +/obj/machinery/power/grounding_rod{ + anchored = 1 + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cdb" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cdc" = ( +/obj/machinery/power/grounding_rod{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cdd" = ( +/obj/structure/sign/vacuum, +/turf/simulated/wall/r_wall, +/area/station/engineering/control) +"cde" = ( +/obj/machinery/light/directional/west, +/obj/machinery/status_display/directional/west, +/obj/effect/decal/warning_stripes/southwest, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cdf" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cdg" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/maintenance/port) +"cdh" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cdk" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cdl" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cdn" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/smes) +"cdo" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/warning_stripes/southwest, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/smes) +"cdp" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/landmark/start/engineer, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/smes) +"cdq" = ( +/obj/structure/sign/electricshock{ + pixel_x = 32 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/smes) +"cdr" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cdt" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/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/plasteel{ + icon_state = "white" + }, +/area/station/medical/cryo) +"cdx" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cdA" = ( +/obj/item/kirbyplants, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cdB" = ( +/obj/structure/sign/nosmoking_2, +/turf/simulated/wall, +/area/station/service/library) +"cdC" = ( +/obj/machinery/door/morgue, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cdD" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/station/command/office/hop) +"cdE" = ( +/obj/machinery/computer/supplycomp{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/hop) +"cdF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"cdH" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/north, +/obj/item/clipboard, +/obj/item/toy/figure/crew/hop, +/obj/item/megaphone, +/obj/item/storage/box/PDAs, +/obj/item/storage/box/ids, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"cdI" = ( +/obj/machinery/door/window{ + name = "Desk Door" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ntrep, +/obj/machinery/light/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"cdJ" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen/multi/fountain, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"cdK" = ( +/obj/structure/table/wood, +/obj/item/stamp/rep, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"cdN" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"cdO" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"cdP" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"cdQ" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/book/manual/wiki/sop_command, +/obj/item/paper/blueshield, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"cdR" = ( +/obj/structure/table/wood, +/obj/item/ashtray/glass{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/lighter/zippo/blue{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"cdS" = ( +/obj/machinery/door/window{ + name = "Desk Door" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/blueshield, +/obj/machinery/keycard_auth/east{ + pixel_y = -3 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"cdT" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/flask/gold, +/obj/item/razor, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain/bedroom) +"cdU" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/south, +/obj/machinery/computer/security/wooden_tv, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain/bedroom) +"cdV" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain/bedroom) +"cdW" = ( +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain/bedroom) +"cdX" = ( +/obj/machinery/firealarm/directional/south, +/obj/item/kirbyplants, +/obj/machinery/camera{ + c_tag = "Captain's Quarters"; + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain/bedroom) +"cdY" = ( +/obj/structure/table/wood, +/obj/machinery/power/apc/directional/south, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/recharger, +/obj/item/megaphone, +/obj/structure/cable, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain/bedroom) +"cdZ" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain/bedroom) +"cea" = ( +/obj/structure/dresser, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain/bedroom) +"cei" = ( +/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" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"cem" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/flashlight/lamp/green{ + pixel_y = 14; + pixel_x = -5 + }, +/obj/item/pen/multi, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"cen" = ( +/obj/structure/table/wood, +/obj/machinery/computer/secure_data/laptop, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"ceo" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "maintcabin1"; + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"cep" = ( +/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/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/warden) +"ceq" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/multi, +/turf/simulated/floor/carpet/red, +/area/station/legal/lawoffice) +"cer" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/stamp/law, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/station/legal/lawoffice) +"ces" = ( +/turf/simulated/floor/carpet/red, +/area/station/legal/lawoffice) +"cet" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start/internal_affairs, +/turf/simulated/floor/carpet/red, +/area/station/legal/lawoffice) +"ceu" = ( +/obj/structure/barricade/wooden, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/library) +"ceF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/visitingroom) +"ceL" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/bluegrid, +/area/station/telecomms/chamber) +"ceM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/electrical) +"ceP" = ( +/obj/machinery/porta_turret, +/turf/simulated/floor/bluegrid, +/area/station/telecomms/chamber) +"ceU" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"ceV" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Singularity"; + name = "Singularity Blast Doors" + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"ceW" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/control) +"ceX" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/control) +"ceY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/control) +"ceZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/engineering/control) +"cfa" = ( +/obj/structure/closet/secure_closet/captains, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain/bedroom) +"cfb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/control) +"cfc" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cfd" = ( +/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/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/engineering/control) +"cfe" = ( +/obj/structure/cable/yellow{ + 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/decal/warning_stripes/east, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cff" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/smes) +"cfg" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/smes) +"cfh" = ( +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/smes) +"cfi" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = 28; + pixel_y = -28 + }, +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/obj/machinery/power/apc/engineering/south, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/smes) +"cfk" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cfn" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/port) +"cfo" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cfq" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cfr" = ( +/obj/structure/chair/office/dark, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cfs" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cft" = ( +/obj/machinery/bookbinder, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cfu" = ( +/obj/structure/bookcase, +/obj/machinery/light/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cfv" = ( +/obj/structure/chair/comfy/red, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cfx" = ( +/obj/machinery/photocopier, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cfy" = ( +/obj/structure/bookcase, +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Library Starboard" + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cfz" = ( +/obj/structure/chair/comfy/red, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cfB" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/closet/radiation, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cfC" = ( +/obj/machinery/computer/security/mining{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/hop) +"cfD" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/head_of_personnel, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"cfE" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"cfF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cfH" = ( +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"cfK" = ( +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"cfL" = ( +/obj/item/flag/nt, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"cfM" = ( +/obj/machinery/light/directional/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"cfN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"cfO" = ( +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"cfP" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"cfQ" = ( +/obj/machinery/door/airlock/command{ + id_tag = "captainofficedoor"; + name = "Captain's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/turf/simulated/floor/plasteel, +/area/station/command/office/captain/bedroom) +"cfX" = ( +/obj/machinery/light/directional/east, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/courtroom) +"cfZ" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"cga" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/item/megaphone, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"cgf" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/carpet/red, +/area/station/legal/lawoffice) +"cgh" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "IAA office"; + pixel_y = -24 + }, +/turf/simulated/floor/carpet/red, +/area/station/legal/lawoffice) +"cgi" = ( +/obj/machinery/light/directional/south, +/obj/machinery/economy/vending/lawdrobe, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"cgk" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"cgr" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/brig) +"cgu" = ( +/obj/machinery/tcomms/core/station, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/station/telecomms/chamber) +"cgB" = ( +/obj/machinery/camera{ + c_tag = "Singularity NorthEast"; + dir = 8; + network = list("SS13","Singularity","Engineering") + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cgC" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port) +"cgF" = ( +/obj/machinery/flasher{ + id = "hopflash"; + pixel_y = 58 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/station/hallway/primary/central/west) +"cgG" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cgI" = ( +/obj/machinery/ai_status_display/south, +/obj/machinery/recharge_station, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"cgL" = ( +/obj/structure/table/wood/fancy/black, +/obj/machinery/computer/secure_data/laptop, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/courtroom) +"cgM" = ( +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/control) +"cgN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"cgO" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/control) +"cgP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cgQ" = ( +/obj/machinery/shieldwallgen, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"cgS" = ( +/obj/machinery/light/directional/south, +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine/longrange{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/red, +/area/station/legal/lawoffice) +"cgW" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/newscaster/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cgX" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cgY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"cgZ" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"chb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port) +"chd" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/hallway/primary/central/west) +"che" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"chf" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/hop) +"chg" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen/multi, +/obj/item/lighter/zippo/hop, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"chh" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/nanotrasen, +/obj/machinery/door_control/normal{ + id = "hopofficedoor"; + name = "Office Door"; + pixel_x = -8; + req_access_txt = "57" + }, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"chi" = ( +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"chj" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"chl" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"chm" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/cable{ + 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/wood/oak, +/area/station/command/office/ntrep) +"chq" = ( +/obj/machinery/light_switch/west, +/obj/machinery/button/windowtint/west{ + id = "BS"; + pixel_y = -8; + req_access_txt = "67" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"chs" = ( +/obj/structure/closet/cabinet, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"cht" = ( +/turf/simulated/wall/r_wall, +/area/station/command/teleporter) +"chu" = ( +/obj/machinery/light/directional/south, +/obj/machinery/computer/monitor{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"chv" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/command/teleporter) +"chw" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"chy" = ( +/obj/structure/closet/secure_closet{ + anchored = 1; + name = "Evidence Storage"; + req_access_txt = "4" + }, +/obj/item/storage/box/evidence, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/maintenance/old_detective) +"chz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/command/teleporter) +"chA" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"chE" = ( +/obj/machinery/status_display/directional/south, +/obj/machinery/cryopod/robot, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"chF" = ( +/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/wood/fancy/oak, +/area/station/legal/courtroom) +"chG" = ( +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"chJ" = ( +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"chK" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/carpet/red, +/area/station/legal/lawoffice) +"chL" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/clothing/head/helmet/skull/Yorick, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"chM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"chN" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/photocopier, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"chS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"chV" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/maintenance/starboard2) +"chW" = ( +/obj/machinery/computer/message_monitor{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/telecomms/chamber) +"chX" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/telecomms/chamber) +"cia" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable{ + 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/plasteel, +/area/station/engineering/control) +"cib" = ( +/obj/machinery/power/rad_collector{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cic" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Singularity"; + name = "Singularity Blast Doors" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cie" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cif" = ( +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cig" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/book/manual/engineering_particle_accelerator, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"cih" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/hacking{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/book/manual/engineering_singularity_safety, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"cij" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/control) +"cil" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/control) +"cim" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cin" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cio" = ( +/obj/effect/landmark/spawner/xeno, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cip" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen/engi, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"ciq" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/port) +"cir" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/engine, +/area/station/science/explab) +"cis" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "perma_door_ext"; + locked = 1; + name = "Prison Wing" + }, +/obj/machinery/access_button/east{ + autolink_id = "perma_btn_ext"; + name = "Prison Wing Access Button"; + req_one_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/security/brig) +"ciu" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"ciy" = ( +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"ciA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"ciB" = ( +/turf/simulated/wall, +/area/station/command/office/hop) +"ciC" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/newscaster/security_unit/west, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"ciD" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"ciE" = ( +/obj/structure/bed/dogbed/ian, +/obj/machinery/alarm/directional/east, +/mob/living/simple_animal/pet/dog/corgi/Ian, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"ciF" = ( +/obj/machinery/photocopier, +/obj/structure/sign/poster/official/random/west, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"ciH" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/camera{ + c_tag = "NT Representative's Office"; + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"ciL" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"ciO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/wood/oak, +/area/station/command/office/blueshield) +"ciP" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/camera{ + c_tag = "Blueshield's Office"; + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"ciR" = ( +/obj/machinery/photocopier, +/obj/structure/sign/poster/official/random/east, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/command/office/blueshield) +"ciS" = ( +/turf/simulated/wall, +/area/station/command/teleporter) +"ciT" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/command/office/captain/bedroom) +"ciU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Teleporter Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"ciV" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) +"ciX" = ( +/obj/machinery/status_display/directional/south, +/obj/machinery/camera{ + c_tag = "Engine SMES"; + dir = 1; + network = list("Engineering","SS13") + }, +/obj/machinery/computer/monitor{ + dir = 1; + name = "Grid Power Monitoring Computer" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/smes) +"ciY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"cjb" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine/longrange{ + pixel_y = 4 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"cjf" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"cjh" = ( +/obj/effect/mapping_helpers/airlock/access/any/command/magistrate, +/obj/machinery/door/airlock/command, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/autoname, +/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/wood/oak, +/area/station/legal/magistrate) +"cjl" = ( +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/obj/structure/transit_tube{ + icon_state = "D-SE" + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"cjm" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"cjo" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"cjp" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"cjq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/maintenance/starboard2) +"cjt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/item/kirbyplants, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"cjw" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/brig) +"cjx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/interrogation/observation) +"cjy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/interrogation/observation) +"cjA" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"cjC" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/gas/oxygen, +/obj/item/grenade/gas/oxygen, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"cjI" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cjJ" = ( +/obj/machinery/power/tesla_coil{ + anchored = 1 + }, +/obj/structure/cable/yellow, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cjK" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cjL" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Singularity"; + name = "Singularity Blast Doors" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/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/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cjM" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cjN" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cjO" = ( +/obj/machinery/power/apc/engineering/east, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cjP" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Singularity"; + name = "Singularity Blast Doors" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cjQ" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/stack/cable_coil/yellow, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cjR" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cjS" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/black, +/obj/item/wrench, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cjT" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cjU" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/control) +"cjV" = ( +/obj/machinery/shieldgen, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cjW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"cjX" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"ckd" = ( +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/rnd) +"cke" = ( +/obj/structure/girder, +/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/station/maintenance/starboard) +"ckj" = ( +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"ckk" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"ckl" = ( +/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" + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ckm" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"ckn" = ( +/obj/structure/dresser, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"ckp" = ( +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"cks" = ( +/obj/machinery/ai_status_display/east, +/obj/structure/filingcabinet, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"ckt" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "NT" + }, +/turf/simulated/floor/plating, +/area/station/command/office/ntrep) +"cku" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + id_tag = "ntrepofficedoor"; + name = "NT Representative's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ntrep, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/wood/oak, +/area/station/command/office/ntrep) +"ckv" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"ckw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + id_tag = "blueshieldofficedoor"; + name = "Blueshield's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/blueshield, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/wood/oak, +/area/station/command/office/blueshield) +"ckx" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "BS" + }, +/turf/simulated/floor/plating, +/area/station/command/office/blueshield) +"cky" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"ckz" = ( +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"ckA" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"ckB" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/table, +/obj/item/hand_tele, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"ckC" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"ckD" = ( +/obj/machinery/bluespace_beacon, +/obj/machinery/door_control/shutter/north{ + id = "teleaccessshutter"; + name = "Teleporter Shutters Access Control"; + req_access_txt = "17" + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"ckF" = ( +/obj/machinery/teleport/hub, +/turf/simulated/floor/plating, +/area/station/command/teleporter) +"ckG" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "teleaccessshutter"; + name = "Teleporter Access Shutters" + }, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"ckI" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"ckL" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/multi, +/turf/simulated/floor/carpet/red, +/area/station/legal/courtroom) +"ckN" = ( +/obj/structure/table/wood/fancy/black, +/obj/machinery/button/windowtint{ + pixel_x = 5; + pixel_y = 8; + id = "Court"; + range = 9 + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/courtroom) +"ckP" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"ckR" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"ckX" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"cla" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/maintenance/starboard2) +"cli" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"clj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"clo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"clp" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"clr" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/control) +"cls" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Singularity"; + name = "Singularity Blast Doors" + }, +/obj/machinery/door_control/shutter/east{ + id = "Singularity"; + name = "Containment Blast Doors" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"clu" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/engineering/control) +"clv" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/smes) +"clw" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall/r_wall, +/area/station/engineering/equipmentstorage) +"clx" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"clA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/primary/aft) +"clC" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"clD" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"clE" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"clF" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"clG" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"clH" = ( +/obj/structure/table/wood, +/obj/item/camera_film, +/obj/item/camera_film, +/obj/machinery/firealarm/directional/east, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"clI" = ( +/obj/structure/bed, +/obj/item/bedsheet/hop, +/obj/machinery/newscaster/security_unit/west, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"clJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"clK" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Head of Personnel Bedroom" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/hop, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"clP" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/crew/ian, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"clU" = ( +/obj/machinery/camera{ + c_tag = "Central Ring Hallway Center" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"clW" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"clZ" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"cmd" = ( +/obj/machinery/teleport/station, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plating, +/area/station/command/teleporter) +"cmf" = ( +/obj/item/flag/sec, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"cmj" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/folder/red, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/courtroom) +"cml" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/courtroom) +"cmm" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"cmn" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"cmo" = ( +/obj/machinery/computer/brigcells{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"cmq" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/starboard2) +"cmr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/starboard2) +"cmx" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/cryopod/robot{ + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/turret_protected/aisat) +"cmy" = ( +/obj/effect/decal/warning_stripes/red/partial, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"cmC" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "Singularity NorthWest"; + dir = 4; + network = list("SS13","Singularity","Engineering") + }, +/turf/space, +/area/station/engineering/control) +"cmD" = ( +/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" + }, +/turf/simulated/floor/plasteel, +/area/station/security/visitingroom) +"cmG" = ( +/obj/structure/sign/poster/official/random/north, +/obj/machinery/light_construct/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard2) +"cmL" = ( +/obj/structure/lattice, +/turf/space, +/area/station/engineering/control) +"cmM" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/newscaster/directional/south, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cmO" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/crew/engineer, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/engineering/control) +"cmP" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/item/radio/intercom/directional/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/control) +"cmQ" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cmR" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cmT" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cmU" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cmV" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/station/engineering/equipmentstorage) +"cmX" = ( +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/radio, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"cmY" = ( +/obj/machinery/shieldgen, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"cmZ" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"cnb" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"cnc" = ( +/obj/machinery/shieldwallgen, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/station/engineering/equipmentstorage) +"cnd" = ( +/obj/machinery/shieldwallgen, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"cne" = ( +/obj/structure/dispenser, +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"cnf" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"cnh" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cnk" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "Front Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/library{ + dir = 8 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"cnl" = ( +/turf/simulated/floor/carpet, +/area/station/service/library) +"cnm" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/librarian, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/station/service/library) +"cnn" = ( +/obj/structure/table/wood, +/obj/machinery/computer/library, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"cno" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"cnp" = ( +/obj/structure/closet/secure_closet/hop, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"cnq" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"cnr" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"cnt" = ( +/obj/item/kirbyplants, +/obj/machinery/light_switch/south, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"cnv" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"cnx" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"cnA" = ( +/obj/machinery/camera{ + c_tag = "Teleporter"; + dir = 1 + }, +/obj/machinery/light_switch/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"cnB" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"cnC" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"cnD" = ( +/obj/machinery/light/directional/south, +/obj/machinery/alarm/directional/south, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"cnE" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"cnG" = ( +/obj/machinery/computer/teleporter{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/command/teleporter) +"cnH" = ( +/obj/structure/transit_tube{ + icon_state = "E-SW-NW" + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"cnO" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"cnP" = ( +/turf/simulated/wall, +/area/station/public/locker) +"cnW" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/station/hallway/primary/central/west) +"cnX" = ( +/obj/machinery/camera{ + c_tag = "Medbay Surgery South" + }, +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/button/windowtint/north{ + id = "Surgery2"; + pixel_x = -8 + }, +/obj/machinery/holosign_switch/north{ + id = "Surgery2"; + pixel_x = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/secondary) +"cnY" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"cnZ" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"coa" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cob" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"coc" = ( +/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/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cod" = ( +/obj/structure/particle_accelerator/particle_emitter/left{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"coe" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cof" = ( +/obj/machinery/particle_accelerator/control_box, +/obj/structure/cable/yellow, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cog" = ( +/obj/machinery/the_singularitygen/tesla, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"coh" = ( +/obj/machinery/power/smes{ + charge = 2e+006 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"coi" = ( +/obj/structure/transit_tube{ + icon_state = "E-W-Pass" + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"coo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"coq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, +/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, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"cor" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/engineering/equipmentstorage) +"cos" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"cou" = ( +/obj/machinery/shieldwallgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"cov" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plating, +/area/station/engineering/equipmentstorage) +"cow" = ( +/obj/structure/bookcase, +/obj/machinery/light/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cox" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"coy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/station/service/library) +"coz" = ( +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"coA" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "hop"; + name = "Privacy Shutters" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hop) +"coB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + id_tag = "hopofficedoor"; + name = "Head of Personnel" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/hop, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/wood/oak, +/area/station/command/office/hop) +"coE" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"coF" = ( +/obj/machinery/door_control/shutter/west{ + id = "teleportershutter"; + name = "Teleporter Shutters Access Control"; + req_access_txt = "17" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "teleportershutter"; + name = "Teleporter Shutters" + }, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"coG" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "teleportershutter"; + name = "Teleporter Shutters" + }, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"coH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/teleporter) +"coL" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"coM" = ( +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"coN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"coP" = ( +/obj/item/chair/wood, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"coR" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/plasteel/dark, +/area/station/public/locker) +"coS" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/pump, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/public/locker) +"coT" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "escape" + }, +/area/station/public/locker) +"coU" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "neutral" + }, +/area/station/maintenance/starboard2) +"coW" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cpb" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"cpd" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"cpe" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"cpg" = ( +/obj/item/wrench, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cph" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"cpj" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cpl" = ( +/obj/structure/particle_accelerator/particle_emitter/center{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cpm" = ( +/obj/structure/particle_accelerator/power_box{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cpn" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cpo" = ( +/obj/structure/particle_accelerator/end_cap{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cpp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Prison Entry North"; + dir = 6; + network = list("Prison","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "neutral" + }, +/area/station/security/permabrig) +"cpq" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the singularity chamber."; + dir = 8; + layer = 4; + name = "Singularity Engine Telescreen"; + network = list("Singularity") + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/control) +"cpz" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/equipmentstorage) +"cpA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/equipmentstorage) +"cpB" = ( +/obj/effect/landmark/spawner/xeno, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/equipmentstorage) +"cpC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/equipmentstorage) +"cpE" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cpH" = ( +/obj/machinery/newscaster/directional/west, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"cpJ" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"cpL" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen/blue, +/obj/item/pen/red, +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "Front Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/library{ + dir = 8 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"cpM" = ( +/obj/structure/table/wood, +/obj/item/storage/bag/books, +/obj/item/taperecorder, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"cpN" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall4b"; + location = "hall4a" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall5"; + location = "hall4c" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/sw) +"cpP" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"cpX" = ( +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = 32 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"cpZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"cqb" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall4c"; + location = "hall4b" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall9h"; + location = "hall9g" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"cqd" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"cqe" = ( +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"cqg" = ( +/obj/structure/window/full/reinforced, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_creep, +/area/station/hallway/secondary/exit) +"cqj" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"cqk" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"cqt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/box/red, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"cqu" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"cqv" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cqw" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cqx" = ( +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Locker Room North" + }, +/obj/machinery/status_display/directional/north, +/obj/machinery/disposal, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/public/locker) +"cqy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cqB" = ( +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cqG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/starboard2) +"cqI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"cqJ" = ( +/obj/machinery/atmospherics/unary/tank/toxins, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"cqK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"cqL" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/aisat) +"cqM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"cqN" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cqO" = ( +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cqQ" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cqR" = ( +/obj/structure/particle_accelerator/particle_emitter/right{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cqS" = ( +/obj/item/screwdriver, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cqU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cqV" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cqX" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cqZ" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cra" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + id_tag = "engstorage"; + name = "Secure Storage Blast Doors" + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"crb" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"cre" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"crf" = ( +/obj/machinery/power/tesla_coil, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"crg" = ( +/obj/machinery/power/emitter, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"crh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"cri" = ( +/obj/machinery/computer/area_atmos/area{ + dir = 1 + }, +/obj/machinery/status_display/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/permabrig) +"crk" = ( +/obj/item/kirbyplants, +/obj/machinery/camera{ + c_tag = "Library South"; + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"crl" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"crm" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/south, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"crn" = ( +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"cro" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"crp" = ( +/obj/structure/table/wood, +/obj/machinery/alarm/directional/east, +/obj/item/clipboard, +/obj/item/toy/figure/crew/librarian, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"crv" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"crw" = ( +/obj/machinery/camera{ + c_tag = "Central Ring Hallway Center"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"crx" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "chemdesk"; + name = "Chemistry Desk Shutters" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/medical/chemistry) +"crB" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"crE" = ( +/obj/structure/chair/comfy/black, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"crF" = ( +/obj/item/radio/beacon, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"crG" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"crH" = ( +/obj/structure/table/wood, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"crJ" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"crK" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"crO" = ( +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Central Ring Hallway Center"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"crQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"crT" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"crW" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"crX" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"csa" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/public/locker) +"csb" = ( +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/structure/barricade/wooden, +/turf/simulated/floor/plasteel, +/area/station/maintenance/starboard2) +"csd" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"cse" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/table, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"csf" = ( +/obj/structure/closet/crate, +/obj/item/clothing/shoes/jackboots, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"csh" = ( +/obj/structure/rack, +/obj/item/reagent_containers/spray/pepper, +/obj/item/reagent_containers/spray/pepper, +/obj/item/reagent_containers/spray/pepper, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"csi" = ( +/turf/simulated/wall, +/area/station/public/fitness) +"csj" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/fitness) +"csk" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"csl" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) +"csp" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"csq" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"csr" = ( +/obj/structure/transit_tube, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"css" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cst" = ( +/obj/machinery/atmospherics/portable/canister/toxins, +/obj/machinery/light/directional/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"csu" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"csv" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"csw" = ( +/obj/item/kirbyplants, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"csx" = ( +/obj/machinery/power/emitter, +/turf/simulated/floor/plating, +/area/station/engineering/equipmentstorage) +"csy" = ( +/obj/structure/transit_tube{ + icon_state = "W-SE" + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"csz" = ( +/obj/structure/closet/crate{ + name = "solar pack crate" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"csG" = ( +/obj/structure/mineral_door/wood, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"csH" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/service/library) +"csI" = ( +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access_txt = "37" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"csK" = ( +/turf/simulated/wall/r_wall, +/area/station/ai_monitored/storage/eva) +"csL" = ( +/obj/machinery/camera{ + c_tag = "Captain's Office Nook"; + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"csN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/bridge) +"csO" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"csP" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"csQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"csR" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark/lightsout, +/obj/structure/cable{ + 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 = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"csS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"csT" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"csU" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"csV" = ( +/turf/simulated/wall/r_wall, +/area/station/service/expedition) +"csW" = ( +/obj/structure/statue/delta/nw, +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/hallway/secondary/bridge) +"csX" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"ctc" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/starboard2) +"ctn" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cto" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"ctp" = ( +/obj/structure/table, +/obj/item/camera, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"ctq" = ( +/obj/structure/table, +/obj/item/camera_film, +/obj/item/camera_film, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cts" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"ctu" = ( +/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" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ctx" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"cty" = ( +/obj/structure/weightmachine/stacklifter, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"ctA" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"ctB" = ( +/obj/machinery/camera{ + c_tag = "Rec Room Fore"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"ctE" = ( +/obj/machinery/door/poddoor/shutters{ + density = 0; + dir = 8; + icon_state = "open"; + id_tag = "hopqueueshutters"; + name = "Queue Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/ticket_machine{ + layer = 4; + pixel_y = 32 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/west) +"ctG" = ( +/obj/machinery/status_display/directional/east, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"ctH" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"ctI" = ( +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"ctJ" = ( +/obj/structure/transit_tube{ + icon_state = "E-NW" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"ctK" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/crayons, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"ctL" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/obj/item/storage/fancy/candle_box/full, +/obj/item/storage/fancy/candle_box/full, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"ctM" = ( +/obj/structure/dresser, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"ctN" = ( +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"ctO" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"ctP" = ( +/obj/structure/bookcase, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"ctQ" = ( +/obj/machinery/light/directional/east, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"ctR" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil/random, +/obj/item/multitool, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"ctS" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"ctU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"ctV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"ctX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "E.V.A." + }, +/obj/effect/mapping_helpers/airlock/access/any/command/eva, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"ctY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/space, +/area/space/nearstation) +"cub" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"cuc" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"cue" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"cuk" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/expedition) +"cul" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkbluecorners" + }, +/area/station/service/expedition) +"cun" = ( +/obj/machinery/light/directional/west, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"cup" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Virology Shutters"; + id_tag = "Virology1" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Virology Shutters"; + id_tag = "Virology2"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"cuv" = ( +/obj/item/kirbyplants, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cuw" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/public/locker) +"cux" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/public/locker) +"cuy" = ( +/obj/structure/table, +/obj/item/storage/fancy/crayons, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cuz" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/table, +/obj/machinery/smartfridge/disks, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"cuA" = ( +/obj/structure/table, +/obj/item/deck/cards, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cuD" = ( +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cuI" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/starboard2) +"cuJ" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "sst_home"; + name = "Near Kerberos Arrivals"; + width = 11 + }, +/turf/space, +/area/space) +"cuK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/public/fitness) +"cuM" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"cuN" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/public/fitness) +"cuO" = ( +/obj/machinery/power/tesla_coil{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cuP" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cuQ" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cuS" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cuT" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/apc_electronics, +/obj/item/airlock_electronics, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"cuV" = ( +/obj/machinery/alarm/directional/east, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cuX" = ( +/obj/item/kirbyplants, +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/station/service/expedition) +"cuY" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/machinery/ai_status_display/north, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"cvg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"cvh" = ( +/obj/structure/table/wood, +/obj/machinery/ai_status_display/west, +/obj/item/clipboard, +/obj/item/folder, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cvj" = ( +/obj/structure/chair/office/dark, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"cvk" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"cvn" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cvo" = ( +/obj/structure/cult/archives, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cvp" = ( +/obj/effect/landmark/spawner/rev, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cvq" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/librarian, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cvr" = ( +/obj/machinery/newscaster/directional/east, +/mob/living/simple_animal/pet/dog/bullterrier/Genn, +/obj/structure/bed/dogbed, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cvs" = ( +/obj/machinery/camera{ + c_tag = "Central Ring Hallway West"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"cvt" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm/directional/west, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/sheet/rglass{ + amount = 20; + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/crowbar, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cvu" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"cvx" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cvz" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cvB" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cvE" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"cvF" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/hallway/secondary/bridge) +"cvG" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"cvJ" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/rods{ + amount = 8 + }, +/obj/item/storage/toolbox/emergency, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"cvL" = ( +/obj/structure/flora/tree/jungle/small{ + pixel_x = -47 + }, +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/grass/no_creep, +/area/station/hallway/secondary/exit) +"cvQ" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/expedition) +"cvV" = ( +/obj/machinery/door/airlock/glass{ + name = "Cabin" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"cvW" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"cvX" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cvY" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"cwa" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cwd" = ( +/obj/effect/landmark/lightsout, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall9b1"; + location = "hall9b" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cwf" = ( +/obj/structure/closet/wardrobe/grey, +/obj/machinery/ai_status_display/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cwk" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel, +/area/station/maintenance/starboard2) +"cwq" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"cws" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/station/public/fitness) +"cwt" = ( +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cwu" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cwv" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cwx" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/hardsuitstorage) +"cwz" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/hardsuitstorage) +"cwE" = ( +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Library Backroom"; + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cwG" = ( +/obj/structure/table/wood, +/obj/item/paicard, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"cwH" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"cwI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"cwJ" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cwL" = ( +/obj/machinery/light/directional/east, +/obj/item/kirbyplants, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cwM" = ( +/obj/machinery/alarm/directional/south, +/obj/structure/filingcabinet, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cwN" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/status_display/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cwO" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/item/folder, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cwP" = ( +/obj/structure/table/wood, +/obj/item/camera, +/obj/machinery/ai_status_display/south, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cwQ" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"cwR" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Magboot Storage" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/eva, +/obj/item/clothing/shoes/magboots, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cwV" = ( +/obj/item/radio/beacon, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/ai_monitored/storage/eva) +"cwX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"cwY" = ( +/obj/machinery/suit_storage_unit/mime, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cxa" = ( +/turf/simulated/wall/r_wall, +/area/station/science/robotics/showroom) +"cxc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + id_tag = "pub_room"; + name = "Public Meeting Room" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood/oak, +/area/station/science/robotics/showroom) +"cxd" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cxe" = ( +/obj/structure/table, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/gun/energy/kinetic_accelerator, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"cxf" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/snacks/mint, +/obj/item/reagent_containers/food/drinks/bottle/cream, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"cxl" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/station/service/expedition) +"cxm" = ( +/obj/machinery/camera{ + c_tag = "Central Ring Hallway East"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"cxn" = ( +/turf/simulated/wall, +/area/station/public/toilet) +"cxo" = ( +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel, +/area/station/public/toilet) +"cxp" = ( +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cxq" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"cxr" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cxs" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cxt" = ( +/obj/structure/table, +/obj/item/storage/briefcase{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cxw" = ( +/obj/structure/closet/wardrobe/green, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cxA" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/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/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"cxE" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cxF" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cxG" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cxJ" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"cxK" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/hardsuitstorage) +"cxM" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"cxO" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"cxQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"cxV" = ( +/obj/item/kirbyplants, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Library Aft"; + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cxW" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"cxX" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"cxY" = ( +/obj/structure/table/wood, +/obj/item/deck/cards, +/obj/item/deck/cards{ + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"cxZ" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"cya" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cyb" = ( +/obj/machinery/newscaster/directional/east, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cyc" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"cyd" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/closet/crate/rcd, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "RCD Storage" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cyf" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cyg" = ( +/turf/simulated/wall, +/area/station/ai_monitored/storage/eva) +"cyh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/showcase, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/station/science/robotics/showroom) +"cyi" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/oak, +/area/station/science/robotics/showroom) +"cyj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/science/robotics/showroom) +"cyl" = ( +/obj/machinery/ai_status_display/north, +/obj/machinery/camera{ + c_tag = "Public Meeting Room" + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cym" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"cyn" = ( +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cyp" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/showcase, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/station/science/robotics/showroom) +"cyq" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/ai_monitored/storage/eva) +"cyr" = ( +/obj/machinery/camera{ + c_tag = "Expedition Access"; + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/secure_closet/expedition, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"cys" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/service/expedition) +"cyt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/start/explorer, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"cyu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"cyv" = ( +/turf/simulated/wall, +/area/station/service/expedition) +"cyw" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/station/service/expedition) +"cyy" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/station/service/expedition) +"cyz" = ( +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"cyA" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"cyD" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "greencorner" + }, +/area/station/medical/virology/lab) +"cyE" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"cyH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"cyI" = ( +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/structure/table, +/obj/item/radio/alternative{ + pixel_y = 7; + pixel_x = -7 + }, +/obj/item/radio/alternative{ + pixel_y = 7; + pixel_x = -3 + }, +/obj/item/radio/alternative{ + pixel_y = 7; + pixel_x = 1 + }, +/obj/item/radio/alternative{ + pixel_y = 7; + pixel_x = 5 + }, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"cyK" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/medbay) +"cyN" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cyO" = ( +/obj/structure/table, +/obj/item/paicard, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cyP" = ( +/obj/structure/table, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cyQ" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cyS" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/closet/wardrobe/pink, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cyT" = ( +/obj/machinery/camera{ + c_tag = "Fore Hallway North"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"cyU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light/directional/north, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"cyV" = ( +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"cyW" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/blacktrenchcoat, +/obj/item/clothing/head/fedora, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"cyX" = ( +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/public/sleep) +"cyY" = ( +/obj/machinery/cryopod/right, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"cyZ" = ( +/obj/machinery/camera{ + c_tag = "Cryodorms Fore" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/public/sleep) +"cza" = ( +/obj/machinery/cryopod, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"cze" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"czf" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/mob/living/simple_animal/turtle, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/fitness) +"czi" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"czk" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/control) +"czl" = ( +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/control) +"czm" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/engineering/control) +"czr" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"czs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"czw" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/space/nearstation) +"czx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/port) +"czy" = ( +/obj/structure/table/wood, +/obj/machinery/status_display/directional/west, +/obj/item/newspaper, +/obj/item/newspaper, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"czz" = ( +/obj/structure/showcase{ + density = 0; + dir = 8; + icon = 'icons/mob/robots.dmi'; + icon_state = "robot_old"; + name = "Cyborg Statue"; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/light_switch/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"czA" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"czB" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"czF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"czG" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"czI" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/ai_monitored/storage/eva) +"czJ" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + 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" + }, +/turf/simulated/floor/wood/oak, +/area/station/science/robotics/showroom) +"czL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"czM" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"czN" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"czO" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"czP" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"czQ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/multi, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"czT" = ( +/obj/machinery/alarm/directional/east, +/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/wood/oak, +/area/station/science/robotics/showroom) +"czV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"czW" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/secure_closet/expedition, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"czX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"czY" = ( +/obj/structure/statue/delta/ne, +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/hallway/secondary/bridge) +"cAb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"cAe" = ( +/obj/machinery/door/airlock, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel, +/area/station/public/toilet) +"cAf" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/sink/directional/south, +/obj/structure/mirror{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"cAj" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"cAm" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cAp" = ( +/obj/machinery/cryopod/right, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"cAr" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/public/sleep) +"cAs" = ( +/obj/machinery/cryopod, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"cAt" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"cAu" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/public/fitness) +"cAv" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"cAB" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cAC" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/control) +"cAD" = ( +/obj/machinery/light/directional/west, +/obj/machinery/status_display/directional/west, +/obj/effect/decal/warning_stripes/northwest, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cAE" = ( +/obj/structure/cable/yellow{ + 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 = 6 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cAF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cAG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/lightsout, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"cAI" = ( +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/hardsuitstorage) +"cAO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/bed{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"cAT" = ( +/obj/structure/table/wood, +/obj/machinery/alarm/directional/south, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cAU" = ( +/obj/item/kirbyplants, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cAV" = ( +/obj/machinery/status_display/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/dresser, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cAW" = ( +/obj/structure/table/wood, +/obj/item/dice/d10, +/obj/item/dice/d20, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cAX" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"cAZ" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"cBb" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/port) +"cBc" = ( +/obj/structure/closet/secure_closet/bar, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"cBd" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cBe" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/sheet/metal/fifty{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/wrench, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cBg" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"cBh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cBi" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "EVA West" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cBj" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cBk" = ( +/obj/machinery/camera{ + c_tag = "EVA Storage"; + dir = 8 + }, +/obj/machinery/requests_console{ + department = "EVA"; + name = "EVA Requests Console"; + pixel_x = 32 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cBl" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/ai_monitored/storage/eva) +"cBm" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm/directional/east, +/obj/item/stack/rods{ + amount = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cBn" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/crew/dsquad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cBo" = ( +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cBp" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cBq" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cBr" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cBs" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cBt" = ( +/obj/structure/table/wood, +/obj/item/lighter/zippo, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cBu" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cBv" = ( +/obj/effect/landmark/start/explorer, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"cBw" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/secure_closet/expedition, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"cBA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Expedition Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/expedition, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"cBB" = ( +/obj/structure/window/full/reinforced, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_creep, +/area/station/hallway/secondary/exit) +"cBD" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"cBF" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/obj/structure/closet/secure_closet/medical3, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"cBJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "greencorner" + }, +/area/station/medical/virology/lab) +"cBP" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cBQ" = ( +/obj/machinery/light/directional/south, +/obj/machinery/status_display/directional/south, +/obj/machinery/camera{ + c_tag = "Locker Room South"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/public/locker) +"cBR" = ( +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"cBT" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cBU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/space/nearstation) +"cBV" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"cBZ" = ( +/obj/structure/table, +/obj/item/folder, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"cCb" = ( +/turf/simulated/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/alphadeck) +"cCc" = ( +/obj/machinery/camera{ + c_tag = "Holodeck Fore" + }, +/turf/simulated/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/alphadeck) +"cCd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"cCe" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cCf" = ( +/obj/machinery/power/grounding_rod{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cCg" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cCm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"cCo" = ( +/obj/structure/cable{ + 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{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"cCp" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/control) +"cCr" = ( +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/hardsuitstorage) +"cCt" = ( +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/hardsuitstorage) +"cCy" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cCC" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/gps, +/obj/item/gps, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cCE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cCG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"cCI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cCK" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/south, +/obj/item/storage/belt/utility, +/obj/item/radio, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cCL" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cCM" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cCN" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cCO" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cCP" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cCQ" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cCR" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/south, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cCS" = ( +/obj/structure/table/wood, +/obj/item/paicard, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cCT" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom/directional/east, +/obj/item/folder/red, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"cCV" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"cCW" = ( +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" + }, +/area/station/service/expedition) +"cCX" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"cCY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cCZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/service/expedition) +"cDa" = ( +/obj/machinery/recharge_station, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/service/expedition) +"cDc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/service/expedition) +"cDd" = ( +/obj/effect/landmark/lightsout, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/nw) +"cDh" = ( +/obj/structure/chair/comfy/teal, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"cDm" = ( +/obj/item/paper_bin, +/obj/structure/table, +/obj/item/pen, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/public/locker) +"cDo" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"cDq" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"cDr" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/public/fitness) +"cDs" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cDt" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + state = 2 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cDu" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cDv" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cDw" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cDx" = ( +/obj/structure/grille, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cDz" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cDD" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cDE" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/decal/warning_stripes/southwest, +/obj/structure/sign/vacuum{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cDG" = ( +/obj/machinery/camera{ + c_tag = "Particle Accellerator"; + dir = 1; + network = list("Engineering","SS13") + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"cDH" = ( +/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/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cDI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"cDJ" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cDO" = ( +/obj/machinery/ai_status_display/south, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cDR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cDV" = ( +/obj/structure/sign/poster/contraband/random/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cDX" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/port) +"cEa" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cEb" = ( +/obj/item/kirbyplants, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cEe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"cEj" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper{ + pixel_y = -5 + }, +/obj/item/reagent_containers/dropper/precision{ + pixel_y = 3; + pixel_x = -12 + }, +/obj/item/lighter/zippo{ + name = "Ash Generator 3000"; + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -1 + }, +/obj/item/clothing/glasses/science{ + pixel_y = -10 + }, +/obj/item/clothing/glasses/science{ + pixel_y = -16 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"cEk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Expedition Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/expedition, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"cEq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + initialize_directions = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"cEr" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cEs" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cEt" = ( +/obj/machinery/door/airlock{ + name = "Bedroom"; + id_tag = "PrivateRoom1" + }, +/obj/machinery/door/firedoor, +/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, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"cEv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"cEw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"cEx" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"cEy" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"cEA" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall/r_wall, +/area/station/engineering/control) +"cEB" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + location = "Engineering" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/window/classic/reversed, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/supply/mule_bot, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"cEI" = ( +/obj/machinery/alarm/directional/west, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"cEL" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"cEM" = ( +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"cEN" = ( +/obj/machinery/status_display/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cEO" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"cEQ" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "eva-shutters"; + name = "E.V.A. Storage Shutters" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cER" = ( +/obj/machinery/door_control/shutter/east{ + id = "eva-shutters"; + name = "Auxilary E.V.A. Storage"; + req_one_access_txt = "18" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "eva-shutters"; + name = "E.V.A. Storage Shutters" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"cES" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"cET" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"cEU" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"cEW" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/public/locker) +"cEY" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"cEZ" = ( +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Central Ring Hallway South" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"cFa" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"cFg" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/starboard) +"cFm" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall9c"; + location = "hall9b1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"cFp" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"cFr" = ( +/obj/structure/table/wood, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 4; + pixel_x = 6; + layer = 4 + }, +/obj/item/lighter/zippo{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"cFw" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/machinery/chem_master, +/obj/machinery/camera{ + c_tag = "Medbay Chemistry"; + network = list("Medbay","SS13") + }, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"cFz" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"cFF" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"cFJ" = ( +/obj/machinery/status_display/directional/north, +/obj/machinery/camera{ + c_tag = "Holodeck Control Room" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"cFK" = ( +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"cFL" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"cFM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cFT" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cGb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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/station/maintenance/starboard) +"cGi" = ( +/turf/simulated/floor/mech_bay_recharge_floor, +/area/station/maintenance/electrical) +"cGk" = ( +/turf/simulated/wall, +/area/station/hallway/primary/central/north) +"cGq" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cGs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/maintenance/port) +"cGt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plating, +/area/station/maintenance/port) +"cGy" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall6"; + location = "hall5" + }, +/obj/structure/disposalpipe/sortjunction/reversed{ + dir = 4; + name = "HoP Office"; + sort_type_txt = "15" + }, +/obj/effect/landmark/lightsout, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/sw) +"cGA" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall7"; + location = "hall6" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall9"; + location = "hall8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) +"cGB" = ( +/obj/structure/target_stake, +/obj/machinery/magnetic_module, +/obj/effect/decal/warning_stripes/red, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"cGD" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall9a"; + location = "hall9" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) +"cGP" = ( +/obj/machinery/door/window{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "arrival" + }, +/area/station/public/fitness) +"cGQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/public/fitness) +"cGS" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"cGX" = ( +/obj/machinery/camera{ + c_tag = "Rec Room Center"; + dir = 4; + pixel_y = -22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"cGY" = ( +/obj/machinery/camera{ + c_tag = "Central Ring Hallway South" + }, +/obj/effect/decal/warning_stripes/northeastcorner, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"cGZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"cHa" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/public/fitness) +"cHb" = ( +/obj/machinery/computer/HolodeckControl{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"cHc" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"cHd" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"cHe" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/item/megaphone, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/command/bridge) +"cHf" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/engineering/atmos/control) +"cHi" = ( +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/equipment, +/obj/effect/decal/warning_stripes/south, +/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, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cHk" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cHo" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cHp" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cHq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/maintenance/port) +"cHr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/port) +"cHt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/space, +/area/space/nearstation) +"cHA" = ( +/turf/simulated/wall, +/area/station/maintenance/port) +"cHF" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/main) +"cHG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/primary/central) +"cHH" = ( +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Central Ring Hallway South"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/primary/central) +"cHJ" = ( +/obj/machinery/door/firedoor, +/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/plasteel/stairs/right, +/area/station/security/prison/cell_block/A) +"cHK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central) +"cHL" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central) +"cHR" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel) +"cHY" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"cIa" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/public/fitness) +"cIb" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "arrival" + }, +/area/station/public/fitness) +"cIh" = ( +/obj/structure/sign/biohazard, +/turf/simulated/wall/r_wall, +/area/station/medical/virology/lab) +"cIi" = ( +/obj/machinery/camera{ + c_tag = "Dorm Hallway Port"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"cIj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"cIk" = ( +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"cIr" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"cIs" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/junction/reversed{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"cIt" = ( +/obj/structure/table/reinforced, +/obj/item/paper/holodeck, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"cIu" = ( +/obj/docking_port/mobile/pod{ + id = "pod2"; + name = "escape pod 2" + }, +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock"; + name = "Escape Pod Hatch" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_2) +"cIv" = ( +/obj/structure/girder, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cIw" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/electrical) +"cIx" = ( +/turf/simulated/wall, +/area/station/maintenance/electrical) +"cIy" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall, +/area/station/maintenance/electrical) +"cIB" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/electrical) +"cIC" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/station/maintenance/electrical) +"cID" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/dark, +/area/station/security/visitingroom) +"cIG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cIH" = ( +/turf/simulated/wall/r_wall, +/area/station/science/xenobiology) +"cII" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cIJ" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cIK" = ( +/obj/machinery/atmospherics/unary/tank/air, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cIL" = ( +/turf/simulated/wall, +/area/station/science/xenobiology) +"cIM" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/science/xenobiology) +"cIN" = ( +/obj/machinery/power/tesla_coil, +/obj/machinery/camera{ + c_tag = "Engineering Secure Storage"; + dir = 1; + network = list("Engineering","SS13") + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"cIO" = ( +/turf/simulated/floor/plasteel/dark/nitrogen{ + temperature = 80 + }, +/area/station/science/xenobiology) +"cIP" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"cIS" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cIT" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"cIU" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"cIV" = ( +/obj/structure/sign/science, +/turf/simulated/wall, +/area/station/hallway/primary/central/sw) +"cIW" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/research) +"cIZ" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/science/research) +"cJa" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"cJb" = ( +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = 1 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/turf/simulated/wall, +/area/station/science/research) +"cJc" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cJd" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "Singularity SouthWest"; + dir = 4; + network = list("SS13","Singularity","Engineering") + }, +/turf/space, +/area/station/engineering/control) +"cJe" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/space/nearstation) +"cJg" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/cryo) +"cJh" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel/stairs/medium{ + dir = 1 + }, +/area/station/medical/reception) +"cJi" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/station/medical/reception) +"cJl" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"cJm" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"cJn" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/starboard2) +"cJs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"cJz" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"cJA" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"cJB" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"cJC" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"cJE" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"cJF" = ( +/obj/machinery/light/directional/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"cJJ" = ( +/obj/machinery/status_display/directional/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"cJK" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cJM" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cJO" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cJP" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cJR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cJS" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cJT" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cJU" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm/directional/north, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cJV" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/power/port_gen/pacman, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cJW" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cJY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"cJZ" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/rack, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cKb" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cKc" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cKf" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cKg" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/engineering_guide, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cKi" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cKj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/space, +/area/space/nearstation) +"cKk" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cKl" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"cKm" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cKn" = ( +/mob/living/simple_animal/slime, +/turf/simulated/floor/greengrid, +/area/station/science/xenobiology) +"cKo" = ( +/turf/simulated/floor/greengrid, +/area/station/science/xenobiology) +"cKp" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/station/science/xenobiology) +"cKq" = ( +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/station/science/xenobiology) +"cKr" = ( +/turf/simulated/wall/r_wall, +/area/station/science/research) +"cKt" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cKu" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"cKw" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/sign/poster/official/science{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cKx" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cKA" = ( +/obj/structure/chair/sofa/corp/right, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cKB" = ( +/obj/machinery/light/directional/north, +/obj/structure/chair/sofa/corp, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/research) +"cKC" = ( +/obj/structure/chair/sofa/corp/left, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cKD" = ( +/obj/structure/railing/corner, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"cKF" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cKG" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cKH" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/science, +/obj/item/assembly/timer{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/assembly/igniter, +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cKI" = ( +/obj/structure/sign/science, +/turf/simulated/wall, +/area/station/science/research) +"cKM" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"cKN" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper{ + pixel_y = -8 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_y = 10; + pixel_x = -6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkgreen" + }, +/area/station/medical/virology/lab) +"cKO" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"cKP" = ( +/obj/structure/chair/comfy/teal, +/obj/item/radio/intercom/directional/east, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"cKR" = ( +/obj/structure/closet/secure_closet/reagents, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"cKT" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"cKV" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"cKW" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/door_control/shutter/north{ + id = "chemdesk"; + name = "Primary Chemistry Shutters" + }, +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/effect/landmark/start/chemist, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"cKX" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/chem_dispenser, +/obj/structure/reagent_dispensers/fueltank/chem/east, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"cKY" = ( +/turf/simulated/wall, +/area/station/medical/medbay) +"cKZ" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/paper/firingrange, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/range) +"cLk" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/nw) +"cLn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"cLo" = ( +/obj/machinery/door_control/bolt_control/north{ + id = "PrivateRoom2" + }, +/obj/structure/chair/sofa/right, +/turf/simulated/floor/wood/fancy, +/area/station/public/sleep_female) +"cLp" = ( +/obj/item/flag/mime, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"cLr" = ( +/obj/machinery/prize_counter, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"cLt" = ( +/obj/structure/closet/masks, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/public/fitness) +"cLu" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/public/fitness) +"cLv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"cLx" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cLz" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall, +/area/station/maintenance/abandonedbar) +"cLA" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cLB" = ( +/obj/machinery/door/airlock/security/glass, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "Secure Armory"; + name = "Secure Armory Shutters" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/poddoor/preopen{ + id_tag = "ArmoryLock"; + name = "Armory Lockdown" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/brig) +"cLC" = ( +/obj/item/clothing/gloves/color/black, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cLD" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/maintenance/electrical) +"cLE" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/maintenance/electrical) +"cLF" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cLG" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cLH" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cLI" = ( +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cLJ" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cLO" = ( +/obj/structure/table/reinforced, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cLQ" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cLR" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel/dark, +/area/station/science/xenobiology) +"cLT" = ( +/obj/machinery/firealarm/directional/north, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"cMb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door_timer/cell_6{ + pixel_x = 32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"cMd" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_y = 12 + }, +/obj/machinery/cell_charger{ + pixel_x = -4 + }, +/obj/item/stock_parts/cell/high, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cMm" = ( +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"cMn" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cMp" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"cMq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"cMr" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"cMt" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"cMv" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellowfull" + }, +/area/station/medical/chemistry) +"cMF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"cMG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/iv_drip, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/maintenance/starboard) +"cMM" = ( +/obj/structure/table/wood, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/reagent_containers/food/snacks/grown/poppy/geranium, +/turf/simulated/floor/wood/fancy, +/area/station/public/sleep_female) +"cMO" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"cMP" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"cMR" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"cMS" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cMU" = ( +/obj/machinery/atmospherics/binary/valve, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cMX" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cMY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cMZ" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cNa" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cNe" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/electrical) +"cNh" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cNi" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/simulated/floor/plasteel/dark, +/area/station/science/xenobiology) +"cNj" = ( +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/blood/xeno, +/turf/simulated/floor/plasteel/dark, +/area/station/science/xenobiology) +"cNk" = ( +/obj/machinery/shieldwallgen, +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"cNl" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north{ + pixel_x = 24 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cNn" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/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/space, +/area/space/nearstation) +"cNo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cNq" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "xeno4"; + name = "Creature Cell #4" + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 1; + name = "Creature Pen" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ + dir = 1 + }, +/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/plasteel/dark, +/area/station/science/xenobiology) +"cNs" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "xeno5"; + name = "Creature Cell #5" + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 1; + name = "Creature Pen" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ + dir = 1 + }, +/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/plasteel/dark, +/area/station/science/xenobiology) +"cNt" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "xeno6"; + name = "Creature Cell #6" + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 1; + name = "Creature Pen" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ + dir = 1 + }, +/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/plasteel/dark, +/area/station/science/xenobiology) +"cNy" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"cND" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cNF" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/stock_parts/cell/high, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/research) +"cNG" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/station/science/research) +"cNH" = ( +/obj/effect/landmark/lightsout, +/turf/simulated/floor/grass, +/area/station/science/research) +"cNJ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/paicard, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/research) +"cNL" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"cNT" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"cNZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/space, +/area/space/nearstation) +"cOm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/space, +/area/space/nearstation) +"cOp" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/red{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy, +/area/station/public/sleep_female) +"cOq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/fancy, +/area/station/public/sleep_female) +"cOs" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"cOt" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"cOu" = ( +/obj/structure/table, +/obj/item/paicard, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"cOv" = ( +/mob/living/simple_animal/hostile/retaliate/carp/koi{ + name = "Jeremy" + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/fitness) +"cOw" = ( +/obj/machinery/camera{ + c_tag = "Holodeck Aft"; + dir = 1 + }, +/turf/simulated/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/alphadeck) +"cOx" = ( +/obj/machinery/atmospherics/binary/valve, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cOy" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/warning_stripes/southwest, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cOz" = ( +/obj/item/kirbyplants, +/obj/machinery/status_display/directional/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cOA" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cOC" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cOD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/electrical) +"cOE" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/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 = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/electrical) +"cOF" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cOG" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cOH" = ( +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/equipment, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cOI" = ( +/obj/effect/decal/remains/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/simulated/floor/greengrid, +/area/station/science/xenobiology) +"cOJ" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/station/science/xenobiology) +"cOL" = ( +/obj/structure/table, +/obj/machinery/light/directional/north, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light_switch/north, +/obj/item/radio/intercom/directional/east, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cOO" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cOP" = ( +/obj/structure/sign/science{ + icon_state = "xenobio2" + }, +/turf/simulated/wall, +/area/station/science/xenobiology) +"cOQ" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cOR" = ( +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + id = "xeno6"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north{ + pixel_x = -24 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cOS" = ( +/obj/machinery/monkey_recycler, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cOT" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/station/science/xenobiology) +"cOV" = ( +/obj/machinery/atmospherics/unary/thermomachine/freezer/on/server{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cOW" = ( +/obj/structure/sign/science{ + icon_state = "doors" + }, +/turf/simulated/wall, +/area/station/science/xenobiology) +"cOY" = ( +/obj/structure/sign/biohazard, +/turf/simulated/wall, +/area/station/science/xenobiology) +"cOZ" = ( +/obj/machinery/door_control/shutter{ + pixel_y = -24; + id = "GYM"; + req_one_access_txt = "1"; + name = "Interrogation Shutters Control" + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/station/security/interrogation) +"cPa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/dogbed{ + desc = "A comfy-looking spider bed. You can even strap your pet in, just in case the gravity turns off."; + name = "spider bed" + }, +/mob/living/simple_animal/hostile/retaliate/araneus, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"cPb" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/beakers, +/obj/item/storage/box/syringes, +/obj/item/extinguisher/mini, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cPc" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cPd" = ( +/obj/machinery/door/airlock/security/glass, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/obj/effect/mapping_helpers/airlock/autoname, +/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{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"cPe" = ( +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cPn" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cPq" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/gps, +/obj/item/flash{ + pixel_x = -5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/research) +"cPr" = ( +/obj/structure/flora/bush, +/turf/simulated/floor/grass, +/area/station/science/research) +"cPt" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/glass, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/research) +"cPu" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/research) +"cPw" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"cPy" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft) +"cPA" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/station/medical/reception) +"cPC" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/starboardsolar) +"cPD" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"cPG" = ( +/obj/structure/girder, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"cPH" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/chair/stool, +/obj/effect/landmark/start/chemist, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"cPK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/space/nearstation) +"cPO" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Psych" + }, +/turf/simulated/floor/plating, +/area/station/medical/psych) +"cPQ" = ( +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"cPS" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"cPT" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"cPX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/space, +/area/space/nearstation) +"cQb" = ( +/obj/machinery/power/solar{ + name = "Aft Starboard Solar Panel" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/maintenance/starboardsolar) +"cQe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood/fancy, +/area/station/public/sleep_female) +"cQf" = ( +/obj/machinery/status_display/directional/south, +/turf/simulated/floor/wood/fancy, +/area/station/public/sleep_female) +"cQh" = ( +/obj/machinery/computer/arcade/recruiter{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"cQi" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"cQj" = ( +/obj/machinery/economy/arcade/claw, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"cQk" = ( +/obj/machinery/light/directional/west, +/obj/machinery/poolcontroller{ + pixel_x = -25; + srange = 7 + }, +/obj/structure/closet/athletic_mixed, +/obj/effect/decal/warning_stripes/blue/partial, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"cQn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"cQu" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cQx" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/maintenance/electrical) +"cQy" = ( +/obj/machinery/atmospherics/trinary/filter, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/maintenance/electrical) +"cQz" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cQA" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cQD" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cQF" = ( +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + id = "xeno4"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cQG" = ( +/obj/machinery/door/window/reinforced/normal{ + name = "Creature Pen" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cQI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cQJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/east, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/obj/machinery/newscaster/directional/east, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cQK" = ( +/obj/effect/decal/warning_stripes/east, +/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 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cQL" = ( +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + id = "xeno5"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cQN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cQO" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cQP" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cQV" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cRb" = ( +/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" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"cRc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + id_tag = "KPPNorth"; + name = "Public Access" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "EscapeLockdown"; + name = "Escape Shuttle Lockdown" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/bridge/checkpoint/south) +"cRd" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cRg" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cRh" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/aft) +"cRj" = ( +/obj/structure/table, +/obj/item/paper/pamphlet/deltainfo, +/obj/machinery/camera{ + c_tag = "Medbay Public Hall"; + network = list("Medbay","SS13"); + dir = 4 + }, +/obj/machinery/economy/vending/wallmed/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"cRn" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"cRv" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"cRy" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"cRA" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"cRD" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_2) +"cRE" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/warning_stripes/northwest, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6; + level = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cRF" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cRG" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cRH" = ( +/obj/machinery/power/terminal, +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cRI" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cRJ" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cRK" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cRL" = ( +/obj/machinery/power/terminal, +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cRM" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cRN" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cRO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/decal/warning_stripes/yellow/hollow, +/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/plasteel/white, +/area/station/science/xenobiology) +"cRP" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 8; + name = "Creature Pen" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "xenosecure"; + name = "Secure Creature Cell" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/science/xenobiology) +"cRQ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/machinery/door_control/shutter{ + id = "xenosecure"; + name = "Containment Control"; + pixel_y = -3; + req_access_txt = "55" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cRR" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cRS" = ( +/obj/effect/landmark/start/scientist, +/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 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cRW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "neutral" + }, +/area/station/security/permabrig) +"cRY" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/maintenance/electrical) +"cRZ" = ( +/obj/effect/landmark/lightsout, +/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 = 8; + icon_state = "1-8" + }, +/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/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/xenobiology) +"cSb" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cSc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/xenobiology) +"cSg" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cSh" = ( +/obj/machinery/status_display/directional/east, +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cSi" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/camera{ + c_tag = "Xeno Containment 4"; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel/dark, +/area/station/science/xenobiology) +"cSk" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/engineering/break_room) +"cSl" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/camera{ + c_tag = "Xeno Containment 5"; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel/dark, +/area/station/science/xenobiology) +"cSm" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/airlock_electronics, +/obj/item/stack/sheet/glass, +/obj/item/assembly/signaler, +/obj/item/assembly/infra, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cSn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"cSp" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cSq" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/camera{ + c_tag = "Xeno Containment 6"; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel/dark, +/area/station/science/xenobiology) +"cSr" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"cSs" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"cSt" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cSu" = ( +/turf/simulated/floor/grass, +/area/station/science/research) +"cSv" = ( +/obj/structure/table, +/obj/machinery/light/directional/south, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/stack/packageWrap, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"cSx" = ( +/obj/structure/chair/comfy/teal{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"cSy" = ( +/obj/structure/table, +/obj/item/storage/box/masks{ + layer = 3.6; + pixel_x = -4; + pixel_y = -10 + }, +/obj/item/storage/box/masks{ + layer = 3.6; + pixel_x = 8; + pixel_y = -10 + }, +/obj/item/storage/box/bodybags{ + layer = 3.5; + pixel_x = -4 + }, +/obj/item/storage/box/bodybags{ + layer = 3.5; + pixel_x = 8 + }, +/obj/item/storage/box/beakers{ + layer = 3.4; + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/storage/box/beakers{ + layer = 3.4; + pixel_x = 8; + pixel_y = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"cSA" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"cSC" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/camera{ + c_tag = "Xeno Kill Room"; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel/dark/nitrogen{ + temperature = 80 + }, +/area/station/science/xenobiology) +"cSE" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology/lab) +"cSF" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"cSN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/space, +/area/station/maintenance/starboardsolar) +"cTe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"cTf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"cTh" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cTi" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/item/bikehorn/rubberducky, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cTj" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cTk" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cTl" = ( +/obj/machinery/power/smes, +/obj/machinery/light/small/directional/south, +/obj/machinery/status_display/directional/south, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cTm" = ( +/obj/machinery/power/smes, +/obj/machinery/light/small/directional/south, +/obj/machinery/status_display/directional/south, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cTn" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cTp" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/science/xenobiology) +"cTr" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cTs" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 4; + name = "Creature Pen" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cTv" = ( +/obj/machinery/camera{ + c_tag = "Xenobio West"; + network = list("Research","SS13") + }, +/obj/machinery/status_display/directional/north, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cTy" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cTz" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cTA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cTC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"cTD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cTF" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/window/classic/normal{ + name = "Research Lab Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research, +/obj/machinery/door/window/classic/normal{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "researchdesk1"; + name = "Research Desk Shutters" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -6; + pixel_y = 3 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/rnd) +"cTG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + id = "xeno2"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cTH" = ( +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + id = "xeno3"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cTM" = ( +/obj/machinery/processor{ + desc = "A machine used to process slimes and retrieve their extract."; + name = "Slime Processor" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cTN" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/maintenance/starboardsolar) +"cTO" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cTP" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "robodesk"; + name = "Robotics Desk Shutters" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/robotics) +"cTQ" = ( +/obj/structure/sign/science, +/turf/simulated/wall, +/area/station/science/rnd) +"cTR" = ( +/turf/simulated/wall, +/area/station/science/rnd) +"cTT" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "researchdesk1"; + name = "Research Desk Shutters" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/rnd) +"cTU" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"cTV" = ( +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/primary/aft) +"cTW" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"cUa" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/medical{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology/lab) +"cUb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"cUc" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cUd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/cryo) +"cUe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"cUn" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"cUv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "escape" + }, +/area/station/bridge/checkpoint/south) +"cUH" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"cUI" = ( +/obj/structure/table, +/obj/item/camera, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"cUO" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/crayons, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "escape" + }, +/area/station/public/fitness) +"cUP" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/pod_2) +"cUQ" = ( +/obj/machinery/status_display/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_2) +"cUS" = ( +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/equipment, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cUT" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"cUU" = ( +/obj/effect/decal/warning_stripes/west, +/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 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cUV" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cUX" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cUY" = ( +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"cUZ" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"cVb" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cVc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "escape" + }, +/area/station/bridge/checkpoint/south) +"cVd" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"cVe" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/computer/guestpass{ + pixel_x = -28 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"cVf" = ( +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cVg" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/xenobiology) +"cVh" = ( +/obj/machinery/shieldwallgen, +/obj/effect/decal/warning_stripes/northeast, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"cVm" = ( +/obj/machinery/smartfridge/secure/extract, +/obj/machinery/light_switch/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cVn" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cVo" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/table/reinforced, +/obj/machinery/light/directional/east, +/obj/item/folder/white, +/obj/item/pen, +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cVr" = ( +/obj/structure/sign/nosmoking_2, +/turf/simulated/wall, +/area/station/science/rnd) +"cVs" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"cVt" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"cVu" = ( +/obj/item/kirbyplants, +/obj/machinery/status_display/directional/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"cVv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"cVw" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"cVx" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"cVz" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "researchdesk2"; + name = "Research Desk Shutters" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/rnd) +"cVA" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/primary/aft) +"cVF" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"cVG" = ( +/obj/machinery/camera{ + c_tag = "Xeno High Security Containment"; + dir = 4; + network = list("Research","SS13"); + pixel_y = -22 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/science/xenobiology) +"cVI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"cVK" = ( +/obj/structure/cable{ + 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 = "Med Chemistry"; + sort_type_txt = "11" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) +"cVM" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"cWa" = ( +/obj/machinery/camera{ + c_tag = "Port Hallway South" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port) +"cWb" = ( +/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 + }, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"cWe" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"cWf" = ( +/obj/structure/table, +/obj/item/lipstick/random, +/obj/item/lipstick/random, +/obj/item/lipstick/random, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"cWg" = ( +/obj/structure/table, +/obj/item/camera_film, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"cWh" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"cWi" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"cWj" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"cWl" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cWm" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/machinery/atmospherics/unary/portables_connector{ + layer = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cWn" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cWo" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cWp" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cWr" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cWs" = ( +/obj/machinery/power/apc/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cWw" = ( +/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/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"cWx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"cWy" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/science/xenobiology) +"cWz" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/science/research) +"cWA" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cWB" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cWC" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"cWD" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"cWE" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "xeno1"; + name = "Creature Cell #1" + }, +/obj/machinery/door/window/reinforced/normal{ + name = "Creature Pen" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, +/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/plasteel/dark, +/area/station/science/xenobiology) +"cWF" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "xeno2"; + name = "Creature Cell #2" + }, +/obj/machinery/door/window/reinforced/normal{ + name = "Creature Pen" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, +/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/plasteel/dark, +/area/station/science/xenobiology) +"cWG" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "xeno3"; + name = "Creature Cell #3" + }, +/obj/machinery/door/window/reinforced/normal{ + name = "Creature Pen" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, +/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/plasteel/dark, +/area/station/science/xenobiology) +"cWH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"cWI" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/xenobiology) +"cWL" = ( +/obj/machinery/status_display/directional/south, +/obj/machinery/camera{ + c_tag = "Research Lobby"; + dir = 1; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/research) +"cWM" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm/directional/west, +/obj/item/stock_parts/matter_bin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/micro_laser, +/obj/effect/decal/warning_stripes/east, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"cWQ" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/science/rnd) +"cWR" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/science/rnd) +"cWS" = ( +/obj/machinery/ai_status_display/east, +/obj/machinery/r_n_d/protolathe, +/obj/machinery/light/directional/east, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel, +/area/station/science/rnd) +"cWT" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/storage/bag/bio, +/obj/item/storage/bag/bio, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cWU" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cWV" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cWW" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/ai_status_display/south, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cWY" = ( +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/plasteel/white, +/area/station/science/rnd) +"cXa" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/latex, +/obj/item/slime_scanner, +/obj/item/radio/intercom/directional/south, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"cXb" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/closet/emcloset, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"cXc" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"cXd" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway South 1"; + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "orangecorner" + }, +/area/station/hallway/primary/aft) +"cXf" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"cXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"cXi" = ( +/obj/structure/disposalpipe/junction/reversed{ + 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/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"cXj" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"cXm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"cXr" = ( +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"cXJ" = ( +/turf/simulated/wall, +/area/station/medical/surgery/primary) +"cXO" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"cXP" = ( +/obj/structure/table/wood, +/obj/item/stack/packageWrap, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"cXQ" = ( +/obj/structure/table/wood, +/obj/item/stack/tape_roll, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "escape" + }, +/area/station/public/fitness) +"cXS" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/visitingroom) +"cXT" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cXU" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cXV" = ( +/obj/machinery/computer/monitor, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/maintenance/electrical) +"cXX" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cXY" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cYb" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"cYc" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/interrogation/observation) +"cYg" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"cYh" = ( +/obj/structure/closet/wardrobe/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"cYi" = ( +/obj/structure/disposaloutlet{ + name = "evidence outlet" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/science/xenobiology) +"cYj" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"cYl" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"cYm" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/directional/west, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/effect/decal/warning_stripes/east, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"cYn" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/science/rnd) +"cYq" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/science/rnd) +"cYr" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/science/rnd) +"cYC" = ( +/turf/simulated/floor/plasteel{ + icon_state = "orangecorner" + }, +/area/station/hallway/primary/aft) +"cYD" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"cYG" = ( +/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" + }, +/turf/simulated/floor/plasteel, +/area/station/service/hydroponics) +"cYI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"cYM" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/virology/lab) +"cYP" = ( +/turf/simulated/wall, +/area/station/medical/psych) +"cZl" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Gambling Den" + }, +/obj/structure/barricade/wooden, +/turf/simulated/floor/plasteel, +/area/station/maintenance/abandonedbar) +"cZm" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"cZn" = ( +/obj/structure/rack, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"cZq" = ( +/obj/machinery/atmospherics/binary/valve, +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"cZr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"cZs" = ( +/obj/structure/table/reinforced, +/obj/machinery/power/apc/directional/west, +/obj/item/folder/white, +/obj/item/stock_parts/cell/high, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"cZt" = ( +/turf/simulated/wall, +/area/station/science/research) +"cZv" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/window/classic/normal{ + dir = 8 + }, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Research Lab Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/rnd) +"cZw" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"cZx" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall, +/area/station/science/research) +"cZB" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/station/science/rnd) +"cZC" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Xenobio East"; + dir = 8; + network = list("Research","SS13") + }, +/obj/machinery/reagentgrinder, +/obj/machinery/requests_console{ + department = "Xenobiology"; + departmentType = 2; + name = "Xenobiology Requests Console"; + pixel_x = 30 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/science/xenobiology) +"cZF" = ( +/obj/effect/decal/warning_stripes/blue, +/obj/effect/decal/warning_stripes/southwest, +/obj/structure/sink/directional/north, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"cZG" = ( +/obj/structure/closet/firecloset, +/obj/machinery/camera{ + c_tag = "Research Entrance"; + dir = 8; + network = list("Research","SS13") + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"cZI" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/camera{ + c_tag = "Medbay Virology Decontamination"; + network = list("Medical","SS13") + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"cZR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"cZZ" = ( +/obj/structure/table/glass, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/machinery/button/windowtint/south{ + id = "VirRest"; + pixel_x = -8 + }, +/obj/machinery/light_switch/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"dad" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/geneticist, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/science/genetics) +"dae" = ( +/obj/item/kirbyplants, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"daf" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"dag" = ( +/obj/structure/table/wood, +/obj/machinery/cell_charger, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"dah" = ( +/obj/structure/table/wood, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/storage/toolbox/electrical, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"dai" = ( +/obj/structure/table/wood, +/obj/item/stack/rods{ + amount = 8 + }, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/machinery/light/directional/north, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"daj" = ( +/obj/structure/sign/poster/contraband/random/north, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"dak" = ( +/obj/machinery/power/solar{ + name = "Aft Starboard Solar Panel" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/maintenance/starboardsolar) +"dam" = ( +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Robotics Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/robotics{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dan" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"dau" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"dav" = ( +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"daw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"daD" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/science/xenobiology) +"daF" = ( +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/research) +"daG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/space, +/area/station/maintenance/starboardsolar) +"daH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Research and Development" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel/white, +/area/station/science/rnd) +"daJ" = ( +/turf/simulated/floor/plasteel/white, +/area/station/science/rnd) +"daK" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/toy/figure/crew/scientist, +/turf/simulated/floor/plasteel/white, +/area/station/science/rnd) +"daL" = ( +/obj/structure/table, +/obj/item/disk/tech_disk{ + pixel_x = -6 + }, +/obj/item/disk/tech_disk{ + pixel_x = 6 + }, +/obj/item/disk/tech_disk{ + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/station/science/rnd) +"daM" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"daN" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/station/hallway/primary/aft) +"daP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"daR" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"daT" = ( +/obj/structure/lattice/catwalk, +/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/space, +/area/station/maintenance/starboardsolar) +"daW" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/decal/straw/medium, +/obj/effect/spawner/window, +/turf/simulated/floor/grass/no_creep, +/area/station/medical/storage) +"daX" = ( +/obj/structure/disposalpipe/sortjunction/reversed{ + name = "Medbay Hall"; + sort_type_txt = "9"; + dir = 1 + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"daZ" = ( +/obj/machinery/smartfridge/secure/chemistry/virology/preloaded, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"dbc" = ( +/obj/machinery/power/solar{ + name = "Aft Starboard Solar Panel" + }, +/obj/structure/cable, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/maintenance/starboardsolar) +"dbg" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/station/science/robotics) +"dbm" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"dbp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dbw" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/apmaint) +"dbz" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"dbB" = ( +/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/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dbC" = ( +/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/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dbG" = ( +/obj/item/kirbyplants, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"dbI" = ( +/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, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dbJ" = ( +/obj/item/kirbyplants, +/obj/structure/sign/poster/contraband/random/east, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"dbK" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/port2) +"dbL" = ( +/obj/structure/barricade/wooden, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"dbM" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/port2) +"dbU" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Research Lab Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ + dir = 8 + }, +/obj/machinery/door/window/classic/normal{ + dir = 4 + }, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "researchdesk2"; + name = "Research Desk Shutters" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/station/science/rnd) +"dbY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/research) +"dbZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small/directional/north, +/obj/item/clipboard, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/item/reagent_containers/dropper, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dca" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"dcc" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"dcd" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/machinery/status_display/directional/north, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dce" = ( +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/station/hallway/primary/aft) +"dch" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/cryo) +"dci" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"dcj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall7a"; + location = "hall7" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/bridge/checkpoint/south) +"dcm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"dcs" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"dct" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"dcA" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dcC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"dcM" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"dcN" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"dcO" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/light/directional/north, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"dcQ" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dcR" = ( +/obj/structure/chair/wood, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"dcS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall8"; + location = "hall7c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/bridge/checkpoint/south) +"dcT" = ( +/obj/structure/chair/wood, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"dcW" = ( +/obj/effect/landmark/spawner/xeno, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"dcX" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"dcY" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"dcZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dda" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"ddc" = ( +/obj/item/kirbyplants, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"dde" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"ddf" = ( +/obj/machinery/economy/vending/security, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/storage) +"ddg" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"ddh" = ( +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"ddi" = ( +/turf/simulated/wall/r_wall, +/area/station/science/explab) +"ddj" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm/directional/south, +/obj/machinery/cell_charger, +/obj/machinery/light/directional/south, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"ddk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"ddm" = ( +/obj/machinery/light/directional/south, +/obj/structure/closet/emcloset, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/sw) +"ddn" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/sw) +"ddo" = ( +/obj/item/kirbyplants/dead, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"ddr" = ( +/obj/machinery/camera{ + c_tag = "Research and Development"; + dir = 8; + network = list("Research","SS13") + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Research Request Console"; + pixel_x = 30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"ddu" = ( +/obj/machinery/door/airlock/virology{ + autoclose = 0; + id_tag = "virolab_door_int"; + locked = 1; + name = "Virology Lab Internal Airlock" + }, +/obj/machinery/access_button/south{ + autolink_id = "virolab_btn_int"; + name = "Virology Lab Access Button"; + req_access_txt = "39" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/virology, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology/lab) +"ddv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"ddw" = ( +/obj/structure/window/full/reinforced, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass/no_creep, +/area/station/hallway/secondary/exit) +"ddy" = ( +/turf/simulated/wall, +/area/station/maintenance/apmaint) +"ddC" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/rnd) +"ddD" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"ddE" = ( +/obj/structure/table/reinforced, +/obj/machinery/status_display/directional/south, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"ddF" = ( +/obj/structure/table/reinforced, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/folder/white, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"ddG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/rnd) +"ddH" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light/directional/south, +/obj/machinery/door_control/shutter/south{ + id = "researchdesk2"; + name = "Secondary Research Shutters"; + pixel_x = 8 + }, +/obj/machinery/door_control/shutter/south{ + id = "researchdesk1"; + name = "Primary Research Shutters"; + pixel_x = -8 + }, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"ddI" = ( +/obj/structure/table/reinforced, +/obj/item/disk/tech_disk, +/obj/item/disk/tech_disk, +/obj/item/assembly/timer, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"ddJ" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/station/hallway/primary/aft) +"ddL" = ( +/obj/structure/bed/amb_trolley{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/northeastsouth, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/paramedic) +"ddN" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"ddO" = ( +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"ddZ" = ( +/obj/machinery/light/directional/south, +/obj/structure/closet/secure_closet/medical3, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"dea" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"dee" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/random, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/fore) +"dep" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cloning) +"deG" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"deI" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"deJ" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"deL" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"deM" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"deN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"deR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"deT" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/visitingroom) +"deV" = ( +/obj/structure/window/reinforced, +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"deW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"deZ" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/portable/canister, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"dfa" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/service/chapel/office) +"dfd" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"dff" = ( +/turf/simulated/wall/r_wall, +/area/station/command/office/rd) +"dfm" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"dfo" = ( +/turf/simulated/wall/r_wall, +/area/station/science/robotics/chargebay) +"dfp" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/robotics/chargebay) +"dfr" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"dft" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"dfu" = ( +/turf/simulated/wall, +/area/station/hallway/primary/aft) +"dfv" = ( +/turf/simulated/wall, +/area/station/medical/paramedic) +"dfw" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/machinery/computer/pandemic, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkgreen" + }, +/area/station/medical/virology/lab) +"dfy" = ( +/turf/simulated/wall, +/area/station/medical/cloning) +"dfz" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"dfA" = ( +/obj/effect/decal/warning_stripes/blue, +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/sink/directional/north, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"dfB" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft) +"dfG" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall7b"; + location = "hall7a" + }, +/mob/living/simple_animal/bot/secbot/beepsky{ + desc = "It's Officer Boopsky! Powered by a potato and a shot of whiskey."; + name = "Officer Boopsky" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"dfN" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"dfP" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"dfQ" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"dfR" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"dfS" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/item/stack/cable_coil/random, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dfU" = ( +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/processing) +"dfV" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/port2) +"dfW" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"dfX" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"dgc" = ( +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"dgi" = ( +/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/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"dgs" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/computer/aifixer{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/rd) +"dgt" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/command/office/rd) +"dgv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"dgw" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"dgC" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"dgD" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/paramedic) +"dgE" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/storage/secondary) +"dgF" = ( +/obj/machinery/computer/crew, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"dgG" = ( +/obj/machinery/computer/med_data, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"dgK" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Cloning Room" + }, +/turf/simulated/floor/plating, +/area/station/medical/cloning) +"dgM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"dgR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dgS" = ( +/obj/structure/table, +/obj/item/storage/box/iv_bags{ + layer = 3.3; + pixel_x = -4; + pixel_y = -10 + }, +/obj/item/storage/box/iv_bags{ + layer = 3.3; + pixel_x = 8; + pixel_y = -10 + }, +/obj/item/storage/box/patch_packs{ + layer = 3.2; + pixel_x = -4 + }, +/obj/item/storage/box/patch_packs{ + layer = 3.2; + pixel_x = 8 + }, +/obj/item/storage/box/pillbottles{ + layer = 3.1; + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/storage/box/pillbottles{ + layer = 3.1; + pixel_x = 8; + pixel_y = 10 + }, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"dgU" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/rack, +/obj/item/storage/firstaid/o2{ + pixel_y = 10 + }, +/obj/item/storage/firstaid/o2{ + pixel_y = 6 + }, +/obj/item/storage/firstaid/o2{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"dgV" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/computer/pandemic, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkgreen" + }, +/area/station/medical/virology/lab) +"dhb" = ( +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/locked, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"dhd" = ( +/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" + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"dhe" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CMO" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/office/cmo) +"dht" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Courtroom South"; + dir = 1; + start_active = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"dhu" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/sign/poster/contraband/random/west, +/turf/simulated/floor/plasteel/grimy, +/area/station/maintenance/abandonedbar) +"dhv" = ( +/obj/structure/table/wood/poker, +/turf/simulated/floor/plasteel/grimy, +/area/station/maintenance/abandonedbar) +"dhw" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"dhx" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dhy" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil/random, +/obj/item/stock_parts/scanning_module, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dhz" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/machinery/door/poddoor{ + id_tag = "maintrobotics"; + name = "Decrepit Blast Door" + }, +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"dhB" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/item/stack/cable_coil/random, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dhE" = ( +/obj/machinery/door_control/shutter/east{ + id = "maintrobotics"; + name = "Decrepit Control" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"dhG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"dhJ" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"dhN" = ( +/obj/machinery/light/directional/north, +/obj/structure/displaycase/labcage, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/computer/security/telescreen/rd{ + pixel_y = 30 + }, +/turf/simulated/floor/plasteel, +/area/station/command/office/rd) +"dhO" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/command/office/rd) +"dhP" = ( +/obj/machinery/computer/message_monitor{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/rd) +"dhS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Xenobiology Lab" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"dia" = ( +/obj/machinery/camera{ + c_tag = "Brig Hall South"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"die" = ( +/obj/structure/table/reinforced, +/obj/item/aicard, +/obj/item/circuitboard/aicore, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/rd) +"dif" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/command/office/rd) +"dih" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"dij" = ( +/obj/structure/grille, +/turf/space, +/area/space/nearstation) +"dik" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dim" = ( +/obj/structure/table, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/north, +/obj/machinery/alarm/directional/west, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics/chargebay) +"din" = ( +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"dio" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/station/science/robotics/chargebay) +"dip" = ( +/turf/simulated/floor/mech_bay_recharge_floor, +/area/station/science/robotics/chargebay) +"diq" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"dis" = ( +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"dit" = ( +/obj/machinery/light/directional/east, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/machinery/cryopod/robot, +/obj/machinery/computer/cryopod/robot{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics/chargebay) +"diu" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway South 2"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"diw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"dix" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/paramedic) +"diy" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard2) +"diz" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreen" + }, +/area/station/medical/medbay) +"diC" = ( +/obj/structure/closet/l3closet, +/obj/item/clothing/mask/gas, +/obj/machinery/camera{ + c_tag = "Medbay Virology Maintance Access"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/medbay) +"diD" = ( +/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/plasteel{ + icon_state = "blue" + }, +/area/station/maintenance/apmaint) +"diG" = ( +/obj/structure/table, +/obj/item/gun/syringe{ + pixel_y = 9 + }, +/obj/item/gun/syringe{ + pixel_y = 6 + }, +/obj/item/gun/syringe{ + pixel_y = 3 + }, +/obj/item/gun/syringe, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"diJ" = ( +/obj/effect/spawner/window, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/grass/no_creep, +/area/station/medical/medbay2) +"diK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"diL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white/side, +/area/station/security/permabrig) +"diN" = ( +/obj/machinery/door/airlock/external{ + hackProof = 1; + id_tag = "emergency_home"; + locked = 1; + name = "Escape Airlock" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"diY" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"diZ" = ( +/obj/effect/decal/cleanable/vomit, +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"dja" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"djb" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/stock_parts/cell/high, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"djc" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/barricade/wooden, +/obj/effect/decal/warning_stripes/west, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"dje" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"djg" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"djh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"dji" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/barricade/wooden, +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"djk" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"djl" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"djm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door_timer/cell_5{ + pixel_x = 32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"djp" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/command/office/rd) +"djq" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/command/office/rd) +"djr" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/rd) +"djv" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"djA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"djD" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"djQ" = ( +/turf/simulated/floor/bluegrid, +/area/station/science/robotics/chargebay) +"djR" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/bluegrid, +/area/station/science/robotics/chargebay) +"djS" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"djV" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/landmark/start/paramedic, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/paramedic) +"djZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dka" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_y = 4; + pixel_x = -6 + }, +/obj/item/clothing/mask/surgical{ + pixel_y = 14 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"dkc" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"dkg" = ( +/mob/living/simple_animal/bot/secbot/armsky{ + auto_patrol = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Armory_North"; + location = "Armory_South" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"dkh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dki" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation A" + }, +/obj/machinery/door/firedoor, +/obj/item/grown/bananapeel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/virology, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology/lab) +"dkk" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"dko" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dkp" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"dkq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"dkr" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"dks" = ( +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"dku" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/apmaint) +"dkv" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"dkw" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm/directional/west, +/obj/item/stock_parts/matter_bin, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dky" = ( +/obj/item/kirbyplants, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dkz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port2) +"dkA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/port2) +"dkB" = ( +/obj/machinery/power/apc/directional/south, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dkC" = ( +/obj/item/clothing/suit/fire/firefighter, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dkD" = ( +/obj/machinery/atmospherics/trinary/mixer{ + dir = 1; + name = "air mixer"; + node1_concentration = 0.8; + node2_concentration = 0.2; + on = 1; + target_pressure = 4500 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"dkI" = ( +/turf/simulated/wall/r_wall, +/area/station/science/toxins/mixing) +"dkQ" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"dkS" = ( +/obj/structure/chair/office/light, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/rd) +"dkU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + id_tag = "rdofficedoor"; + name = "Research Director's Office" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/rd, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/rd) +"dkV" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"dkY" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"dkZ" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"dla" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"dlb" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start/roboticist, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"dlc" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dlf" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/paramedic) +"dlg" = ( +/obj/structure/table/glass, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/syringes{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/machinery/light_switch/south, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"dlj" = ( +/turf/simulated/wall, +/area/station/command/office/cmo) +"dlk" = ( +/obj/machinery/smartfridge/secure/chemistry/virology/preloaded, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"dlp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dlr" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"dlE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/north) +"dlJ" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/apmaint) +"dlK" = ( +/obj/structure/table/wood, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"dlL" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dlM" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"dlV" = ( +/obj/item/kirbyplants, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"dlW" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"dmb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + id = "rdtest"; + name = "Test Range Shutters"; + pixel_x = -6; + pixel_y = 8 + }, +/obj/machinery/door_control/normal{ + id = "rdofficedoor"; + name = "Office Door"; + pixel_x = -6; + pixel_y = -2; + req_access_txt = "30" + }, +/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/item/lighter/zippo/rd{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/rd) +"dmf" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics/chargebay) +"dmg" = ( +/turf/simulated/floor/greengrid, +/area/station/science/robotics/chargebay) +"dmh" = ( +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"dmi" = ( +/turf/simulated/wall, +/area/station/science/genetics) +"dmj" = ( +/obj/machinery/smartfridge/medbay, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "chemdesk"; + name = "Chemistry Desk Shutters" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Chemistry Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"dmk" = ( +/obj/effect/decal/warning_stripes/west, +/obj/item/radio/intercom/directional/west, +/obj/machinery/iv_drip, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology/lab) +"dmq" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/port) +"dmr" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"dmt" = ( +/obj/machinery/computer/operating, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"dmy" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/fungus, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"dmA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"dmM" = ( +/obj/structure/chair/wood, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"dmQ" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"dmR" = ( +/obj/item/kirbyplants, +/obj/machinery/light_switch/east, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dmS" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"dmT" = ( +/obj/structure/table/reinforced, +/obj/item/mmi, +/obj/item/assembly/prox_sensor, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"dmU" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"dmV" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dmW" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/robotics_cyborgs, +/obj/item/storage/belt/utility, +/obj/item/reagent_containers/glass/beaker/large, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dmX" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/mecha_part_fabricator, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dmY" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/glass, +/obj/item/flash, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dmZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"dnc" = ( +/obj/structure/sign/science{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "purplecorner" + }, +/area/station/hallway/primary/aft) +"dnd" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/visitingroom) +"dne" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/mob/living/simple_animal/mouse/hamster/Representative, +/obj/structure/bed/dogbed/pet, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"dng" = ( +/turf/simulated/floor/engine, +/area/station/science/explab) +"dnh" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "Surgery1" + }, +/obj/machinery/holosign/surgery{ + id = "Surgery1" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/surgery/primary) +"dnk" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/table/reinforced, +/obj/item/paicard, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"dnm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/maintenance/starboard) +"dnn" = ( +/obj/machinery/ai_status_display/east, +/obj/machinery/computer/card/minor/rd{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"dno" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/visitingroom) +"dnp" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin/nanotrasen, +/obj/item/pen/multi, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/rd) +"dnq" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/landmark/start/research_director, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/rd) +"dnx" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"dny" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"dnz" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics/chargebay) +"dnA" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 8 + }, +/turf/simulated/floor/greengrid, +/area/station/science/robotics/chargebay) +"dnB" = ( +/obj/machinery/door/poddoor/shutters{ + id_tag = "roboticsshutters"; + name = "Mech Bay Shutters" + }, +/obj/machinery/door_control/shutter/north{ + id = "roboticsshutters"; + name = "Mech Bay Door Control"; + req_access_txt = "29" + }, +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics/chargebay) +"dnC" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"dnF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/robotics, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics/chargebay) +"dnH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"dnJ" = ( +/obj/machinery/disposal, +/obj/machinery/camera{ + c_tag = "Medbay Paramedic"; + network = list("Medbay","SS13"); + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"dnN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"dnQ" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/healthanalyzer{ + pixel_y = 10 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/hud/health, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "greenfull" + }, +/area/station/medical/virology/lab) +"dog" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall14"; + location = "hall13" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/north) +"dou" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"dov" = ( +/obj/structure/computerframe, +/obj/effect/decal/warning_stripes/southwest, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dox" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/glass, +/obj/item/stock_parts/micro_laser, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"doz" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"doJ" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/crew/rd, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 7; + name = "Research Director Requests Console"; + pixel_x = -30; + pixel_y = -2 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"doK" = ( +/obj/machinery/computer/mecha{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"doL" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"doM" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/door/firedoor, +/obj/item/hand_labeler{ + pixel_y = 2 + }, +/obj/machinery/light/directional/west, +/obj/item/storage/box/rxglasses{ + pixel_y = 2; + pixel_x = 16 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"doO" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"doQ" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/camera{ + c_tag = "Xeno Containment 1"; + dir = 1; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel/dark, +/area/station/science/xenobiology) +"doR" = ( +/obj/machinery/door/poddoor/shutters{ + id_tag = "roboticsshutters"; + name = "Mech Bay Shutters" + }, +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics/chargebay) +"doS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"doT" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics/chargebay) +"doU" = ( +/obj/machinery/recharge_station, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics/chargebay) +"doV" = ( +/obj/effect/landmark/start/cyborg, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"doW" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/effect/landmark/start/cyborg, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"doX" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/greengrid, +/area/station/science/robotics/chargebay) +"doY" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"doZ" = ( +/obj/machinery/light/small/directional/east, +/obj/item/wrench, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"dpa" = ( +/turf/simulated/floor/plasteel{ + icon_state = "purplecorner" + }, +/area/station/hallway/primary/aft) +"dpc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/robotics, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics/chargebay) +"dpf" = ( +/obj/structure/closet/paramedic, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"dpi" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"dpn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"dpt" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard2) +"dpB" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"dpG" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"dpP" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/camera{ + c_tag = "Xeno Containment 2"; + dir = 1; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel/dark, +/area/station/science/xenobiology) +"dpQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/south, +/obj/machinery/newscaster/directional/south, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/radio/intercom/directional/west, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Research Director's Office"; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"dpR" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"dpS" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"dpT" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dpU" = ( +/turf/simulated/floor/greengrid, +/area/station/maintenance/port2) +"dpV" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/turf/simulated/floor/greengrid, +/area/station/maintenance/port2) +"dpW" = ( +/obj/machinery/recharge_station, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dpX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"dpZ" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/camera{ + c_tag = "Xeno Containment 3"; + dir = 1; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel/dark, +/area/station/science/xenobiology) +"dqc" = ( +/obj/machinery/light/directional/south, +/obj/machinery/status_display/directional/east, +/obj/machinery/computer/robotics{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light_switch/south{ + pixel_x = -8 + }, +/obj/machinery/keycard_auth/south{ + pixel_x = 6 + }, +/obj/machinery/button/windowtint/south{ + id = "RD"; + pixel_x = -2; + req_access_txt = "30"; + pixel_y = -36 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"dqe" = ( +/obj/machinery/economy/vending/chinese, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"dqf" = ( +/turf/simulated/wall, +/area/station/command/office/rd) +"dqj" = ( +/obj/structure/table, +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics/chargebay) +"dqk" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"dql" = ( +/turf/simulated/wall, +/area/station/science/robotics) +"dqm" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "robodesk"; + name = "Robotics Desk Shutters" + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/robotics) +"dqn" = ( +/obj/structure/sign/science, +/turf/simulated/wall/r_wall, +/area/station/science/robotics) +"dqo" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"dqp" = ( +/turf/simulated/wall/r_wall, +/area/station/science/robotics) +"dqq" = ( +/obj/machinery/camera{ + c_tag = "Research West Hallway"; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"dqs" = ( +/obj/effect/landmark/start/chemist, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteyellowcorner" + }, +/area/station/medical/chemistry) +"dqy" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"dqA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitegreen" + }, +/area/station/medical/medbay) +"dqC" = ( +/obj/machinery/door/window/classic/reversed{ + name = "Chemistry Delivery" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellowfull" + }, +/area/station/medical/chemistry) +"dqD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"dqE" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 4; + pixel_x = 12 + }, +/obj/item/pen/red{ + pixel_y = 6; + pixel_x = 14 + }, +/obj/item/flashlight/lamp{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/structure/reagent_dispensers/virusfood/west, +/obj/machinery/door_control/shutter/south{ + id = "Virology1"; + name = "Virology Window Shutters Control" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgreencorners" + }, +/area/station/medical/virology/lab) +"dqJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/medical/virology/lab) +"dqN" = ( +/obj/structure/chair/comfy/teal, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"dqP" = ( +/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/decal/cleanable/dirt, +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/maintenance/starboard2) +"dqQ" = ( +/obj/machinery/camera{ + c_tag = "Singularity SouthEast"; + dir = 8; + network = list("SS13","Singularity","Engineering") + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"dqZ" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"dra" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"drb" = ( +/obj/structure/table/wood/poker, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"drc" = ( +/obj/structure/table/wood/poker, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"drd" = ( +/obj/structure/table/wood/poker, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"dre" = ( +/obj/structure/table/wood/poker, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"drf" = ( +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"drg" = ( +/obj/machinery/light_switch/east, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"drh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/mech_bay_recharge_floor, +/area/station/maintenance/port2) +"dri" = ( +/obj/effect/landmark/spawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/port2) +"drk" = ( +/obj/structure/chair/office/light, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"drl" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"drn" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"dro" = ( +/obj/machinery/door/airlock/virology/glass, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"drp" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"drq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"drs" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"drv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Director's Quarters" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/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, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/rd) +"drz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"drA" = ( +/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 = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"drB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"drC" = ( +/obj/structure/dresser, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"drE" = ( +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"drF" = ( +/obj/machinery/light/directional/east, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics/chargebay) +"drI" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = -32 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"drJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/station/supply/qm) +"drK" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/station/hallway/primary/aft) +"drL" = ( +/obj/structure/sign/science{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/primary/aft) +"drM" = ( +/obj/machinery/disposal, +/obj/machinery/light_switch/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/secondary) +"drN" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"drR" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/station/medical/reception) +"drT" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/stairs{ + dir = 4 + }, +/area/station/medical/virology/lab) +"drV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/storage/secondary) +"drX" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"drZ" = ( +/obj/structure/table/reinforced, +/obj/item/camera{ + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/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/plasteel, +/area/station/medical/virology/lab) +"dsa" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/visitingroom) +"dsb" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -8 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_y = 10; + pixel_x = -6 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkgreen" + }, +/area/station/medical/virology/lab) +"dsc" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/range) +"dsn" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/item/circuitboard/cyborgrecharger, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"dso" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dsp" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/greengrid, +/area/station/maintenance/port2) +"dsr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"dsu" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"dsv" = ( +/obj/structure/closet/secure_closet/RD, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"dsE" = ( +/obj/effect/landmark/start/research_director, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/command/office/rd) +"dsF" = ( +/turf/simulated/floor/plasteel/white, +/area/station/command/office/rd) +"dsG" = ( +/obj/machinery/light/directional/east, +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"dsH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"dsI" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"dsJ" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics Requests Console"; + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light_switch/west, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dsK" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dsL" = ( +/obj/machinery/mecha_part_fabricator, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dsM" = ( +/obj/structure/rack, +/obj/machinery/light/directional/north, +/obj/item/book/manual/wiki/robotics_cyborgs, +/obj/item/book/manual/ripley_build_and_repair, +/obj/item/storage/belt/utility/full, +/obj/item/circuitboard/mecha/ripley/main, +/obj/item/circuitboard/mecha/ripley/peripherals, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dsO" = ( +/obj/machinery/disposal{ + name = "Deathposal" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"dsR" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dsU" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Glass Door" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/cloning) +"dsV" = ( +/obj/structure/table, +/obj/item/storage/box/iv_bags{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/iv_bags{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"dta" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Genetics Privacy Shutter"; + id_tag = "GeneticsPrivacy"; + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/science/genetics) +"dte" = ( +/obj/item/kirbyplants, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluecorners" + }, +/area/station/service/expedition) +"dtf" = ( +/obj/machinery/iv_drip, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/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/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"dtm" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Cloning Room" + }, +/obj/machinery/door/poddoor/shutters{ + density = 0; + desc = "Lube off, pal."; + icon_state = "open"; + id_tag = "GeneticsPrivacy"; + name = "Genetics Privacy Shutter"; + opacity = 0; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/science/genetics) +"dto" = ( +/obj/structure/sign/science{ + icon_state = "xenobio2" + }, +/turf/simulated/wall/r_wall, +/area/station/science/research) +"dtp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"dtz" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"dtI" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"dtJ" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/sign/poster/contraband/random/south, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"dtK" = ( +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"dtM" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/clothing/mask/gas, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"dtN" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dtO" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/head/welding, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"dtP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"dtQ" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dtS" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"dtU" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"dtY" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"dtZ" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"dua" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"dub" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom/directional/east, +/obj/item/flashlight/lamp, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"duf" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/crew/roboticist, +/obj/machinery/door_control/shutter/north{ + id = "robodesk"; + name = "Robotics Desk Shutters"; + pixel_x = -7 + }, +/obj/machinery/light_switch/north{ + pixel_x = 8 + }, +/obj/item/flash, +/obj/item/flash, +/obj/item/flash, +/obj/item/flash, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dug" = ( +/obj/item/robot_parts/robot_suit, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"duh" = ( +/obj/machinery/economy/vending/clothing, +/turf/simulated/floor/plasteel/dark, +/area/station/public/locker) +"dui" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"duj" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/west, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/wrench, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/hud/diagnostic{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/clothing/glasses/hud/diagnostic{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"duk" = ( +/turf/simulated/wall, +/area/station/medical/morgue) +"dus" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/newscaster/security_unit/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/warden) +"duw" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Chapel" + }, +/turf/simulated/floor/plating, +/area/station/service/chapel) +"duB" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"duC" = ( +/obj/machinery/light/directional/east, +/obj/item/stack/cable_coil/random{ + pixel_x = 2 + }, +/obj/structure/table, +/obj/item/stock_parts/manipulator{ + pixel_x = 5 + }, +/obj/item/stock_parts/matter_bin{ + pixel_x = -2; + pixel_y = 12 + }, +/obj/item/stack/cable_coil/random, +/obj/item/stock_parts/matter_bin{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/item/stock_parts/matter_bin{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/economy/vending/wallmed/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"duD" = ( +/obj/effect/decal/warning_stripes/red/partial, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/main) +"duE" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"duJ" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"duP" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/armory, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "WardenD" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/warden) +"duQ" = ( +/obj/structure/table, +/obj/item/stack/cable_coil/random, +/obj/item/stack/rods{ + amount = 8 + }, +/obj/item/flashlight/seclite, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"duR" = ( +/obj/item/kirbyplants, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"duS" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/white, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"duT" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/grimy, +/area/station/maintenance/abandonedbar) +"duU" = ( +/obj/structure/computerframe, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"duV" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/machinery/light/small/directional/south, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"duX" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"duZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Robotics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/effect/decal/warning_stripes/south, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dvc" = ( +/obj/machinery/suit_storage_unit/rd/secure, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"dvg" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "RD" + }, +/turf/simulated/floor/plating, +/area/station/command/office/rd) +"dvh" = ( +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"dvi" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prisonlockers) +"dvj" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"dvk" = ( +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dvl" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dvo" = ( +/obj/effect/landmark/start/roboticist, +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dvp" = ( +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "RoboSurgery" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dvq" = ( +/obj/structure/mirror{ + pixel_x = 32 + }, +/obj/structure/sink/directional/west, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dvr" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/roboticist, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dvz" = ( +/obj/structure/falsewall, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"dvE" = ( +/obj/structure/closet/secure_closet/reagents, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"dvH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"dvM" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"dvU" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"dwi" = ( +/turf/simulated/wall/r_wall, +/area/station/science/server) +"dwj" = ( +/obj/machinery/alarm/directional/west, +/obj/machinery/computer/rdservercontrol{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/science/server) +"dwk" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/science/server) +"dwl" = ( +/obj/machinery/atmospherics/unary/thermomachine/freezer/on/server, +/turf/simulated/floor/plasteel/dark, +/area/station/science/server) +"dwm" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/station/science/server) +"dwn" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/robotics) +"dwo" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder, +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Robotics Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/robotics{ + dir = 8 + }, +/obj/machinery/door/window/classic/normal{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "robodesk"; + name = "Robotics Desk Shutters" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dwq" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil/random, +/obj/item/flash, +/obj/item/flash, +/obj/item/robotanalyzer, +/obj/item/mmi/robotic_brain, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/mecha_parts/core, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dws" = ( +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dwt" = ( +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft) +"dwu" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway South 3"; + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"dwD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"dwK" = ( +/turf/simulated/floor/plasteel/freezer, +/area/station/medical/virology/lab) +"dwP" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "purplecorner" + }, +/area/station/hallway/primary/aft) +"dwU" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/service/theatre) +"dwX" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1; + color = "lightblue" + }, +/obj/structure/morgue, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"dwZ" = ( +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"dxg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/maintenance/medmaint) +"dxm" = ( +/obj/structure/table/reinforced, +/obj/item/airalarm_electronics, +/obj/item/firealarm_electronics{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/cable_coil/random, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/bot/floorbot, +/turf/simulated/floor/plating, +/area/station/engineering/equipmentstorage) +"dxs" = ( +/obj/machinery/power/apc/directional/west, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 4 + }, +/obj/machinery/atmospherics/portable/canister/nitrogen, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/science/server) +"dxv" = ( +/obj/machinery/door/airlock/command{ + name = "Server Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/science/server) +"dxB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dxD" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dxJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"dym" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"dyn" = ( +/turf/simulated/wall/r_wall, +/area/station/science/toxins/test) +"dyo" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating/airless, +/area/station/science/toxins/test) +"dyz" = ( +/turf/simulated/floor/plasteel/white, +/area/station/science/toxins/mixing) +"dyI" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/science/server) +"dyJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Server Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/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/plasteel/dark, +/area/station/science/server) +"dyL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"dyM" = ( +/obj/structure/rack, +/obj/item/storage/firstaid, +/obj/item/storage/firstaid, +/obj/item/paicard, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dyN" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dyO" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dyP" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + location = "Robotics" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/mapping_helpers/airlock/access/any/science/robotics, +/obj/effect/mapping_helpers/airlock/access/any/supply/mule_bot, +/obj/machinery/door/window/classic/reversed, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dyR" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dyS" = ( +/obj/effect/landmark/start/roboticist, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dyU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Auxiliary Storage" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"dzb" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/library) +"dzn" = ( +/obj/structure/table/wood, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/ashtray/glass, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 12 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"dzu" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair/office, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/visitingroom) +"dzv" = ( +/obj/item/target, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dzP" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/station/science/server) +"dzQ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/station/science/server) +"dzR" = ( +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Jetpack Storage" + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/effect/mapping_helpers/airlock/access/any/command/eva, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"dzS" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Research Director's Office"; + dir = 8; + network = list("Research","SS13") + }, +/obj/machinery/firealarm/directional/east, +/obj/item/cartridge/signal/toxins{ + pixel_x = -6 + }, +/obj/item/cartridge/signal/toxins{ + pixel_x = 6 + }, +/obj/item/cartridge/signal/toxins{ + pixel_y = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"dzU" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"dzV" = ( +/obj/machinery/disposal, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dzW" = ( +/obj/effect/decal/warning_stripes/southwest, +/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{ + dir = 6 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + name = "Sci Robotics"; + sort_type_txt = "14" + }, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dzX" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dzY" = ( +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dzZ" = ( +/obj/machinery/optable{ + name = "Robotics Operating Table" + }, +/obj/machinery/status_display/directional/south, +/obj/item/storage/firstaid/machine, +/obj/item/storage/firstaid/machine, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dAa" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dAe" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/visitingroom) +"dAf" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/simulated/floor/plasteel/dark, +/area/station/public/locker) +"dAg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"dAi" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"dAk" = ( +/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{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"dAH" = ( +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dAI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/hardsuitstorage) +"dAL" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/iv_bag/salglu{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/iv_bag/salglu{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"dAY" = ( +/obj/structure/chair, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dAZ" = ( +/obj/structure/chair, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dBd" = ( +/obj/machinery/r_n_d/server/core, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/station/science/server) +"dBe" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/station/science/server) +"dBf" = ( +/obj/machinery/r_n_d/server/robotics, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/station/science/server) +"dBj" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"dBm" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/aft) +"dBo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall, +/area/station/maintenance/starboard) +"dBp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"dBq" = ( +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"dBB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cloning) +"dBC" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dBE" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dBF" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dBG" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dBH" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"dBJ" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"dBO" = ( +/obj/structure/table/reinforced, +/obj/item/robotanalyzer, +/obj/item/bonegel, +/obj/item/FixOVein, +/obj/item/surgicaldrill, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/button/windowtint/east{ + id = "RoboSurgery" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dBP" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft) +"dBT" = ( +/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/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dBX" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dBY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/aft) +"dBZ" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dCb" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dCg" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 4; + pixel_x = -12 + }, +/obj/item/pen/red{ + pixel_y = 6; + pixel_x = -10 + }, +/obj/item/flashlight/lamp{ + pixel_y = 4; + pixel_x = 4 + }, +/obj/structure/reagent_dispensers/virusfood/east, +/obj/machinery/door_control/shutter/south{ + id = "Virology1"; + name = "Virology Window Shutters Control" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkgreencorners" + }, +/area/station/medical/virology/lab) +"dCj" = ( +/obj/structure/chair/sofa/left, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/medbay) +"dCl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/decal/warning_stripes/northeastcorner, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"dCo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"dCx" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"dCy" = ( +/turf/simulated/wall/indestructible/riveted, +/area/station/science/toxins/test) +"dCz" = ( +/obj/item/target, +/obj/machinery/camera{ + c_tag = "Research Toxins Test Chamber East"; + dir = 4; + network = list("Toxins","Research","SS13") + }, +/turf/simulated/floor/plasteel/airless/indestructible, +/area/station/science/toxins/test) +"dCA" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dCD" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"dCF" = ( +/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/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"dCJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dCT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"dCU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dCV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dCW" = ( +/obj/machinery/light/small/directional/south, +/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/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dCX" = ( +/obj/machinery/light/directional/south, +/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/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"dCZ" = ( +/obj/structure/rack, +/obj/machinery/light/directional/west, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/electrical, +/obj/item/screwdriver, +/obj/item/multitool, +/obj/item/clothing/head/welding, +/obj/machinery/newscaster/directional/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dDa" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/primary/aft) +"dDb" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"dDc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/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 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft) +"dDg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"dDh" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dDj" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + 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/plating, +/area/station/maintenance/aft) +"dDk" = ( +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"dDm" = ( +/obj/effect/decal/cleanable/dirt, +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dDq" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/visitingroom) +"dDr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"dDJ" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"dDN" = ( +/turf/simulated/floor/plasteel/grimy, +/area/station/security/detective) +"dDP" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dEa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"dEc" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dEi" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dEl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft) +"dEm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"dEn" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dEo" = ( +/turf/simulated/wall, +/area/station/maintenance/aft) +"dEq" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology/lab) +"dEr" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/item/restraints/handcuffs/cable/zipties, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology/lab) +"dEs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreencorner" + }, +/area/station/medical/medbay) +"dEv" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dEw" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dEx" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"dEE" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"dEH" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"dEK" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dER" = ( +/turf/simulated/wall, +/area/station/hallway/secondary/bridge) +"dES" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dET" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/obj/item/crowbar{ + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/station/bridge/checkpoint/south) +"dEU" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/directional/north, +/obj/item/radio{ + pixel_x = -14; + pixel_y = 7 + }, +/obj/item/storage/box/ids{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/station/bridge/checkpoint/south) +"dEV" = ( +/obj/machinery/camera{ + c_tag = "Command Departure Checkpoint" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/station/bridge/checkpoint/south) +"dEW" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/closet/secure_closet, +/obj/item/storage/secure/briefcase, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/station/bridge/checkpoint/south) +"dEX" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/box/bodybags, +/obj/item/borg/upgrade/rename, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dEZ" = ( +/obj/structure/disposalpipe/segment, +/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/plasteel{ + dir = 1; + icon_state = "escape" + }, +/area/station/bridge/checkpoint/south) +"dFa" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "EscapeLockdown"; + name = "Escape Shuttle Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "ShuttleKPP" + }, +/turf/simulated/floor/plating, +/area/station/bridge/checkpoint/south) +"dFb" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/machinery/alarm/directional/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/bridge/checkpoint/south) +"dFc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/station/medical/medbay) +"dFe" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/medbay) +"dFf" = ( +/obj/item/target, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dFi" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"dFm" = ( +/turf/simulated/wall/r_wall, +/area/station/science/storage) +"dFt" = ( +/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/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dFu" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/bridge/checkpoint/south) +"dFv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/bridge/checkpoint/south) +"dFw" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "RoboSurgery" + }, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/mmi, +/obj/item/mmi, +/obj/item/mmi, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dFx" = ( +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + id = "ShuttleKPP"; + name = "Privacy Shuttes Control"; + pixel_x = 6; + pixel_y = 8 + }, +/obj/machinery/door_control/bolt_control{ + id = "KPPNorth"; + pixel_x = -6; + pixel_y = 8; + req_one_access_txt = "19" + }, +/obj/machinery/door_control/shutter{ + id = "EscapeLockdown"; + name = "Escape Shuttle Lockdown Control"; + pixel_x = 6; + pixel_y = -2; + req_one_access_txt = "19" + }, +/obj/machinery/door_control/bolt_control{ + id = "KPPSouth"; + pixel_x = -6; + pixel_y = -2; + req_one_access_txt = "19" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/bridge/checkpoint/south) +"dFy" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/east, +/obj/item/retractor, +/obj/item/hemostat, +/obj/item/bonesetter, +/obj/item/stack/medical/bruise_pack/advanced{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dFC" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id_tag = "EscapeLockdown"; + name = "Escape Shuttle Lockdown" + }, +/turf/simulated/floor/plating, +/area/station/security/checkpoint/south) +"dFG" = ( +/turf/simulated/wall/r_wall, +/area/station/medical/virology) +"dFU" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dFV" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"dFW" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dFX" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dFY" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dFZ" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/controlroom) +"dGf" = ( +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dGg" = ( +/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/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dGh" = ( +/obj/machinery/computer/card{ + dir = 4 + }, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/bridge/checkpoint/south) +"dGl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/bridge/checkpoint/south) +"dGn" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/closet/secure_closet/roboticist, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/directional/west, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dGL" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/apmaint) +"dGP" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/machinery/ai_status_display/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/bridge/checkpoint/south) +"dGS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/bridge/checkpoint/south) +"dGU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/bridge/checkpoint/south) +"dHk" = ( +/obj/structure/grille, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"dHl" = ( +/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/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/brig) +"dHo" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"dHB" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dHF" = ( +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Interrogation" + }, +/turf/simulated/floor/plating, +/area/station/security/interrogation/observation) +"dHL" = ( +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dHM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-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/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dHN" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light/directional/west, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "blue" + }, +/area/station/bridge/checkpoint/south) +"dHQ" = ( +/obj/structure/filingcabinet/security, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "blue" + }, +/area/station/bridge/checkpoint/south) +"dHR" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "RoboSurgery" + }, +/obj/item/mmi, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/box/masks, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dHS" = ( +/obj/structure/sign/nosmoking_1, +/turf/simulated/wall, +/area/station/medical/surgery/primary) +"dHT" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"dHV" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel, +/area/station/bridge/checkpoint/south) +"dHZ" = ( +/obj/structure/chair/sofa/corner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitegreen" + }, +/area/station/medical/medbay) +"dIb" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dIi" = ( +/obj/machinery/camera{ + c_tag = "Research Central Hall"; + dir = 8; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"dIt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/greengrid, +/area/station/command/vault) +"dIv" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"dIx" = ( +/turf/simulated/wall, +/area/station/service/chapel/office) +"dIy" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dIA" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dID" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dIE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dIG" = ( +/obj/machinery/door/airlock/maintenance, +/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/effect/decal/warning_stripes/south, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"dIH" = ( +/turf/simulated/wall, +/area/station/hallway/secondary/exit) +"dII" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/door/airlock/command/glass{ + name = "Customs Desk" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/turf/simulated/floor/plasteel{ + icon_state = "bluefull" + }, +/area/station/bridge/checkpoint/south) +"dIJ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "ShuttleKPP" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/bridge/checkpoint/south) +"dIK" = ( +/obj/structure/sign/directions/engineering{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + dir = 1 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/turf/simulated/wall, +/area/station/bridge/checkpoint/south) +"dIL" = ( +/obj/machinery/camera{ + c_tag = "Mech Lab"; + dir = 1; + network = list("Research","SS13") + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"dIN" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 1 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/turf/simulated/wall, +/area/station/bridge/checkpoint/south) +"dIO" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) +"dIZ" = ( +/obj/structure/rack, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/hardsuitstorage) +"dJh" = ( +/mob/living/simple_animal/pet/dog/security, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"dJk" = ( +/turf/simulated/floor/carpet/cyan, +/area/station/command/office/cmo) +"dJu" = ( +/obj/structure/morgue, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dJw" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dJx" = ( +/turf/simulated/wall, +/area/station/service/chapel) +"dJB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dJE" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"dJG" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/item/hand_labeler{ + pixel_y = 6 + }, +/obj/item/stack/packageWrap, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/sign/poster/official/report_crimes{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dJH" = ( +/obj/machinery/economy/vending/cigarette, +/obj/structure/window/reinforced, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dJM" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/regular{ + pixel_y = 10 + }, +/obj/item/storage/firstaid/regular{ + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"dKd" = ( +/obj/structure/table, +/obj/machinery/newscaster/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dKe" = ( +/obj/machinery/light/directional/east, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dKf" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box/full{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box/full, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel) +"dKg" = ( +/obj/structure/bookcase, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel) +"dKh" = ( +/obj/structure/table/wood, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel) +"dKi" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel) +"dKk" = ( +/obj/item/kirbyplants, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel) +"dKl" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel) +"dKm" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/service/chapel) +"dKn" = ( +/obj/structure/disposalpipe/junction, +/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" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"dKo" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"dKp" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/red/corner, +/obj/item/flashlight{ + pixel_y = 4 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/structure/sign/security{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dKr" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel) +"dKs" = ( +/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/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"dKz" = ( +/obj/item/stack/cable_coil/random, +/turf/space, +/area/space) +"dKA" = ( +/obj/structure/lattice, +/obj/item/stack/cable_coil/random, +/turf/space, +/area/space/nearstation) +"dKB" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/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 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"dKH" = ( +/obj/structure/closet/crate, +/obj/item/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dKK" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel Morgue" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dKL" = ( +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"dKO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Chapel" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel) +"dKP" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/hallway/secondary/exit) +"dKQ" = ( +/obj/machinery/door/airlock/external{ + hackProof = 1; + id_tag = "emergency_home"; + locked = 1; + name = "Escape Airlock" + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"dKY" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/maintenance/apmaint) +"dKZ" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dLp" = ( +/obj/structure/table, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dLq" = ( +/obj/effect/landmark/start/chaplain, +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/service/chapel/office) +"dLs" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"dLu" = ( +/obj/effect/landmark/lightsout, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"dLy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"dLz" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + name = "Chapel Junction"; + sort_type_txt = "17" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"dLB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"dLJ" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"dLK" = ( +/obj/machinery/atmospherics/portable/canister/oxygen{ + anchored = 1 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"dLX" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) +"dMh" = ( +/obj/machinery/camera{ + c_tag = "Chapel Backroom"; + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dMi" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/carpet, +/area/station/security/permabrig) +"dMj" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/service/chapel) +"dMk" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/service/chapel) +"dMm" = ( +/obj/structure/chair/sofa/pew/right, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/service/chapel) +"dMn" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/service/chapel) +"dMo" = ( +/obj/machinery/economy/vending/snack, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dMp" = ( +/obj/machinery/door_control/shutter/east{ + id = "Bar"; + name = "Bar Privacy Shutters Control" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"dMA" = ( +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"dME" = ( +/obj/structure/cable{ + 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 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"dMH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/primary/central/north) +"dMN" = ( +/obj/machinery/fishtank/wall, +/obj/structure/barricade/wooden/crude, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"dMP" = ( +/obj/machinery/door/airlock/security/glass, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/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/plasteel/dark, +/area/station/security/storage) +"dMQ" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dMS" = ( +/obj/machinery/alarm/directional/east, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dMT" = ( +/obj/structure/chair/sofa/pew, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/service/chapel) +"dMU" = ( +/obj/structure/chair/sofa/pew/left, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/service/chapel) +"dMW" = ( +/obj/structure/chair/sofa/pew/right, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/service/chapel) +"dMY" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dNa" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window/full/reinforced, +/turf/simulated/floor/grass/no_creep, +/area/station/hallway/secondary/exit) +"dNb" = ( +/obj/structure/chair/sofa/bench/left{ + cover_color = "#68452a"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"dNt" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"dNE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"dNH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"dNN" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/full/reinforced, +/turf/simulated/floor/grass/no_creep, +/area/station/hallway/secondary/exit) +"dNO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"dNP" = ( +/obj/structure/chair/sofa/bench/left{ + cover_color = "#68452a" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"dNR" = ( +/obj/machinery/computer/crew, +/obj/machinery/newscaster/security_unit/north, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"dNS" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 11; + height = 18; + id = "emergency_home"; + name = "emergency evac bay"; + width = 29 + }, +/turf/space, +/area/space) +"dOc" = ( +/obj/structure/window/reinforced/polarized{ + id = "RoboSurgery" + }, +/obj/machinery/computer/rdconsole/robotics{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dOd" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"dOl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"dOn" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dOp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel/dark, +/area/station/security/interrogation) +"dOq" = ( +/obj/machinery/newscaster/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/service/chapel) +"dOr" = ( +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/service/chapel) +"dOt" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/service/chapel) +"dOw" = ( +/obj/structure/chair/sofa/bench/right{ + cover_color = "#68452a" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"dOz" = ( +/obj/machinery/atmospherics/pipe/simple/insulated, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"dOB" = ( +/obj/machinery/light/directional/east, +/obj/structure/closet/fireaxecabinet{ + pixel_x = 30 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/dispenser, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"dOC" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyerPort" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"dOD" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/structure/window/reinforced/polarized{ + id = "RoboSurgery" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dOO" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dOP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dOQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dOR" = ( +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dOS" = ( +/turf/simulated/wall/r_wall, +/area/station/service/chapel/office) +"dOT" = ( +/obj/structure/crematorium, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dOV" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/service/chapel) +"dOW" = ( +/obj/structure/chair/sofa/pew/left, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/service/chapel) +"dOX" = ( +/obj/structure/chair/sofa/pew, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/service/chapel) +"dOZ" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/service/chapel) +"dPb" = ( +/obj/structure/chair/sofa/bench{ + cover_color = "#68452a"; + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dPd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"dPp" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"dPq" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/portsolar) +"dPr" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dPs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dPt" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dPu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + id_tag = "KPPNorth"; + name = "Public Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id_tag = "EscapeLockdown"; + name = "Escape Shuttle Lockdown" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/bridge/checkpoint/south) +"dPv" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/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 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/maintenance/apmaint) +"dPw" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dPx" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/maintenance/apmaint) +"dPy" = ( +/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/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/maintenance/apmaint) +"dPz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dPA" = ( +/obj/structure/cable{ + 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/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/maintenance/apmaint) +"dPB" = ( +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = -32 + }, +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dPD" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dPE" = ( +/obj/machinery/crema_switch{ + pixel_x = 26 + }, +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/service/chapel/office) +"dPF" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/service/chapel) +"dPI" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard2) +"dPM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"dPZ" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"dQa" = ( +/obj/machinery/power/smes, +/obj/machinery/light/small/directional/north, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"dQb" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/station/maintenance/apmaint) +"dQc" = ( +/obj/structure/barricade/wooden, +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dQd" = ( +/obj/machinery/chem_heater, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/engine, +/area/station/science/explab) +"dQe" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "evashutters2"; + name = "E.V.A. Storage Shutters" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dQf" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "evashutters2"; + name = "E.V.A. Storage Shutters" + }, +/obj/machinery/door_control/shutter/east{ + id = "evashutters2"; + name = "Auxilary E.V.A. Storage" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dQg" = ( +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/command/glass{ + name = "Auxiliary E.V.A." + }, +/obj/effect/mapping_helpers/airlock/access/any/command/eva, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dQh" = ( +/obj/structure/morgue, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dQi" = ( +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Cremator"; + dir = 8 + }, +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/service/chapel/office) +"dQk" = ( +/obj/structure/table/wood, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"dQl" = ( +/obj/structure/table/wood, +/obj/item/storage/bible, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"dQn" = ( +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/command/glass{ + name = "Auxiliary E.V.A." + }, +/obj/effect/mapping_helpers/airlock/access/any/command/eva, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dQp" = ( +/obj/structure/chair/sofa/bench{ + cover_color = "#68452a"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"dQq" = ( +/obj/structure/table/reinforced, +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/item/circular_saw, +/obj/item/cautery, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"dQr" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"dQB" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/station/maintenance/portsolar) +"dQC" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"dQD" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"dQI" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"dQJ" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"dQN" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/item/reagent_containers/food/drinks/coffee, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dQP" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dQR" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/machinery/light_switch/east, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dQS" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall/r_wall, +/area/station/maintenance/apmaint) +"dQT" = ( +/obj/structure/table, +/obj/item/storage/box/gloves, +/obj/item/storage/box/bodybags, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dQV" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/service/chapel) +"dQX" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"dQY" = ( +/obj/effect/landmark/start/chaplain, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"dRb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/landmark/spawner/xeno, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"dRc" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Port Solar Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/portsolar) +"dRj" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dRk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dRl" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dRm" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm/directional/west, +/obj/item/stack/cable_coil/random, +/obj/item/multitool, +/obj/item/clothing/suit/fire/firefighter, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/apmaint) +"dRo" = ( +/obj/machinery/power/solar_control{ + dir = 4; + name = "Aft Port Solar Control" + }, +/obj/structure/cable, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"dRp" = ( +/obj/machinery/alarm/directional/south, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"dRq" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"dRr" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dRs" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/mask/breath, +/obj/item/reagent_containers/food/drinks/coffee, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/apmaint) +"dRt" = ( +/obj/structure/morgue, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dRv" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel) +"dRw" = ( +/obj/machinery/ai_status_display/south, +/obj/machinery/camera{ + c_tag = "Chapel South"; + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"dRB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dRD" = ( +/obj/machinery/shieldwallgen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dRE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dRF" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dRG" = ( +/obj/structure/chair/sofa/bench{ + cover_color = "#68452a" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"dRH" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/full/reinforced, +/turf/simulated/floor/grass/no_creep, +/area/station/hallway/secondary/exit) +"dRI" = ( +/obj/machinery/shieldwallgen, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/apmaint) +"dRJ" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall/r_wall, +/area/station/maintenance/apmaint) +"dRK" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dRL" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dRM" = ( +/obj/machinery/door/morgue{ + name = "Chapel Morgue"; + req_access_txt = "22" + }, +/obj/structure/cable{ + 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/plasteel/grimy, +/area/station/service/chapel/office) +"dRN" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel) +"dRO" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/service/chapel) +"dRQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dRR" = ( +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"dRT" = ( +/obj/machinery/power/apc/engineering/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"dRZ" = ( +/obj/item/clothing/suit/fire/firefighter, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dSa" = ( +/obj/structure/closet/crate/internals, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/hardhat/orange, +/obj/item/clothing/head/hardhat/orange, +/obj/item/clothing/head/hardhat/orange, +/obj/item/clothing/head/hardhat/orange, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/apmaint) +"dSb" = ( +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/radio, +/obj/item/clothing/mask/breath, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dSc" = ( +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/radio, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dSd" = ( +/obj/machinery/smartfridge/medbay, +/obj/machinery/door/window/classic/reversed{ + desc = "You have the public fridge, pal, lube off."; + name = "Anti-Theft Shield" + }, +/obj/machinery/door/window/classic/reversed{ + desc = "You have the public fridge, pal, lube off."; + dir = 1; + name = "Anti-Theft Shield" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellowfull" + }, +/area/station/medical/chemistry) +"dSe" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"dSf" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel) +"dSh" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)"; + req_access_txt = "22" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dSi" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dSj" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dSk" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dSm" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dSn" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dSo" = ( +/obj/structure/table, +/obj/item/folder{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dSp" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dSq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dSr" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dSs" = ( +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dSz" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"dSA" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal/fifty{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/item/crowbar/red, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/apmaint) +"dSB" = ( +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dSC" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"dSD" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"dSF" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dSG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dSH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dSI" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dSJ" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dSK" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) +"dSL" = ( +/obj/structure/chair/office/dark, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) +"dSN" = ( +/obj/item/kirbyplants, +/obj/machinery/light_switch/east, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) +"dSO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dSQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dST" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/economy/atm/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dSV" = ( +/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/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dSW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dSY" = ( +/obj/item/kirbyplants, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"dTf" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/item/reagent_containers/food/drinks/coffee, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/apmaint) +"dTg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dTh" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/warning_stripes/south, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) +"dTj" = ( +/obj/machinery/light/directional/west, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dTl" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/rglass, +/obj/item/stack/rods{ + amount = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dTm" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dTo" = ( +/obj/machinery/light/directional/north, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/mob/living/simple_animal/pet/cat/black/Salem, +/obj/structure/bed/dogbed/pet, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) +"dTp" = ( +/obj/item/kirbyplants, +/obj/machinery/camera{ + c_tag = "Chaplain's Quarters" + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) +"dTq" = ( +/obj/structure/table/wood, +/obj/machinery/firealarm/directional/east, +/obj/machinery/status_display/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/lighter/zippo/black, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dTr" = ( +/obj/machinery/disposal, +/obj/machinery/light/small/directional/north, +/obj/machinery/light_switch/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dTs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/storage) +"dTu" = ( +/obj/structure/closet/crate/internals, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 8 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 8 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 8 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 8 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/station/service/expedition) +"dTw" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/simulated/floor/carpet, +/area/station/service/chapel/office) +"dTy" = ( +/turf/simulated/wall/r_wall, +/area/station/security/checkpoint/south) +"dTC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet/purple, +/area/station/hallway/secondary/exit) +"dTE" = ( +/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/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"dTG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/button/windowtint/east{ + id = "ExitPrivate"; + pixel_y = 6 + }, +/obj/machinery/door_control/bolt_control/east{ + id = "ExitPrivate"; + pixel_y = -6 + }, +/turf/simulated/floor/carpet/purple, +/area/station/hallway/secondary/exit) +"dTH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"dTI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dTU" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"dTV" = ( +/obj/machinery/power/solar{ + name = "Aft Starboard Solar Panel" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/maintenance/portsolar) +"dTW" = ( +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"dTX" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/service/chapel/office) +"dTY" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/landmark/start/chaplain, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dTZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) +"dUf" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/turf/simulated/floor/carpet, +/area/station/service/chapel/office) +"dUg" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/turf/simulated/floor/carpet, +/area/station/service/chapel/office) +"dUh" = ( +/obj/item/paper_bin, +/obj/structure/table/wood, +/obj/item/pen, +/turf/simulated/floor/carpet, +/area/station/service/chapel/office) +"dUi" = ( +/obj/item/kirbyplants, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dUl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dUm" = ( +/obj/structure/table/glass, +/turf/simulated/floor/carpet/purple, +/area/station/hallway/secondary/exit) +"dUn" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/carpet/purple, +/area/station/hallway/secondary/exit) +"dUp" = ( +/obj/structure/chair/sofa/bench/right{ + cover_color = "#68452a"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dUq" = ( +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/hallway/secondary/exit) +"dUt" = ( +/obj/machinery/camera{ + c_tag = "Departure Lounge South"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dUu" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Checkpoint" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/checkpoint/south) +"dUv" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"dUw" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay2) +"dUy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"dUB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/tech_storage) +"dUE" = ( +/obj/machinery/power/tesla_coil{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"dUF" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"dUG" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"dUH" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/warning_stripes/northeastcorner, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"dUI" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"dUJ" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/dresser, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dUK" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/poppy/geranium, +/obj/item/reagent_containers/food/snacks/grown/poppy/lily{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) +"dUL" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box/full{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box/full, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) +"dUM" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) +"dUN" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/light_switch/east, +/obj/structure/closet/secure_closet/chaplain, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dUO" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/crew/chaplain, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"dUP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) +"dUQ" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/east, +/obj/item/storage/fancy/candle_box/full{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box/full, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/carpet, +/area/station/service/chapel/office) +"dUR" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/chaplain, +/turf/simulated/floor/carpet, +/area/station/service/chapel/office) +"dUS" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/directional/east, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dUT" = ( +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/interrogation/observation) +"dUZ" = ( +/obj/structure/chair/sofa/bench/left{ + cover_color = "#68452a"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dVb" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/station/hallway/secondary/exit) +"dVc" = ( +/obj/machinery/light/directional/east, +/obj/item/kirbyplants, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dVd" = ( +/obj/machinery/camera{ + c_tag = "Server Room"; + dir = 8; + network = list("SS13","Research") + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/station/science/server) +"dVj" = ( +/obj/machinery/door/airlock/maintenance, +/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/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"dVn" = ( +/obj/machinery/power/solar{ + name = "Aft Starboard Solar Panel" + }, +/obj/structure/cable, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/maintenance/portsolar) +"dVo" = ( +/obj/item/kirbyplants, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dVp" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dVq" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"dVx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/bridge/checkpoint/south) +"dVy" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"dWa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"dWb" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "chemdesk"; + name = "Chemistry Desk Shutters" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/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, +/turf/simulated/floor/plating, +/area/station/medical/chemistry) +"dWc" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/maintenance/portsolar) +"dWf" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_s"; + name = "south of station"; + width = 18 + }, +/turf/space, +/area/space) +"dWg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"dWi" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"dWj" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"dWk" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"dWl" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"dWm" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"dWp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"dWq" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 1; + name = "Creature Pen" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"dWr" = ( +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + id = "xeno1"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/extinguisher_cabinet/directional/south{ + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"dWs" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/extinguisher_cabinet/directional/south{ + pixel_x = -24 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"dWt" = ( +/obj/machinery/alarm/directional/south, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"dWu" = ( +/obj/machinery/newscaster/directional/south, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"dWv" = ( +/obj/structure/table, +/obj/machinery/light/directional/south, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"dWw" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/sign/poster/contraband/random/west, +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/maintenance/abandonedbar) +"dWx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"dWA" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/carpet/purple, +/area/station/hallway/secondary/exit) +"dWC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Mining Dock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"dWI" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/checkpoint/south) +"dWK" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/bridge/checkpoint/south) +"dWL" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/bridge/checkpoint/south) +"dWP" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) +"dXa" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/apmaint) +"dXj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + id_tag = "KPPNorth"; + name = "Public Access" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "EscapeLockdown"; + name = "Escape Shuttle Lockdown" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/bridge/checkpoint/south) +"dXk" = ( +/obj/machinery/light/directional/west, +/obj/machinery/ai_status_display/west, +/obj/machinery/camera{ + c_tag = "Research Director's Bedroom"; + dir = 4; + network = list("Research","SS13"); + pixel_y = -22 + }, +/mob/living/simple_animal/mouse/rat/white/Brain, +/obj/structure/bed/dogbed/pet, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"dXl" = ( +/obj/structure/grille, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dXn" = ( +/turf/simulated/wall/r_wall, +/area/station/hallway/secondary/exit) +"dXo" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"dXq" = ( +/obj/machinery/door/poddoor{ + id_tag = "justice_blast"; + name = "Justice Blast Door" + }, +/obj/structure/grille{ + layer = 2.69 + }, +/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, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"dXr" = ( +/obj/machinery/camera{ + c_tag = "Robotics Lab"; + dir = 8; + network = list("Research","SS13") + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/window/reinforced/polarized{ + id = "RoboSurgery" + }, +/obj/effect/decal/warning_stripes/southeast, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"dXs" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"dXu" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"dXv" = ( +/obj/machinery/camera{ + c_tag = "Research South Hallway"; + dir = 4; + network = list("Research","SS13"); + pixel_y = -22 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"dXx" = ( +/obj/item/kirbyplants, +/obj/machinery/camera{ + c_tag = "Chapel West"; + dir = 4; + pixel_y = -22 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/service/chapel) +"dXz" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/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{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "evidence" + }, +/turf/simulated/floor/plating, +/area/station/security/evidence) +"dXC" = ( +/obj/machinery/power/apc/directional/north, +/obj/machinery/camera{ + c_tag = "Departure Lounge North" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dXD" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/service/chapel/office) +"dXH" = ( +/obj/machinery/camera{ + c_tag = "Port Aft Solars" + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"dXI" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"dXJ" = ( +/obj/structure/sign/poster/official/safety_internals{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"dXK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + initialize_directions = 10 + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) +"dXN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/north) +"dXV" = ( +/obj/structure/table/wood, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) +"dYb" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/genetics) +"dYj" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/machinery/chem_dispenser, +/obj/structure/reagent_dispensers/fueltank/chem/south, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"dYl" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/station/medical/virology/lab) +"dYm" = ( +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/maintenance/abandonedbar) +"dYn" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"dYo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"dYp" = ( +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dYq" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"dYr" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"dYt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"dYu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"dYw" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"dYx" = ( +/obj/effect/decal/warning_stripes/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"dYy" = ( +/obj/structure/chair/stool/bar, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"dYz" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"dYA" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"dYB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/greengrid, +/area/station/maintenance/port2) +"dYC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/port2) +"dYD" = ( +/obj/item/robot_parts/robot_suit, +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"dYG" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dYH" = ( +/obj/item/kirbyplants, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"dYI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/space, +/area/station/maintenance/portsolar) +"dYJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/station/maintenance/portsolar) +"dYK" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/glass/beaker/waterbottle, +/turf/simulated/floor/carpet/blue, +/area/station/legal/courtroom) +"dYL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/space, +/area/station/maintenance/portsolar) +"dYM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/station/maintenance/portsolar) +"dYN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/space, +/area/station/maintenance/portsolar) +"dYO" = ( +/obj/structure/lattice/catwalk, +/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/space, +/area/station/maintenance/portsolar) +"dYP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/space, +/area/station/maintenance/portsolar) +"dYR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/space, +/area/station/maintenance/portsolar) +"dYS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/station/maintenance/portsolar) +"dYT" = ( +/turf/simulated/floor/carpet, +/area/station/service/chapel/office) +"dYU" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/crayons, +/obj/machinery/camera{ + c_tag = "Chaplain's Office"; + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Chapel"; + departmentType = 2; + name = "Chapel Requests Console"; + pixel_y = -30 + }, +/turf/simulated/floor/carpet, +/area/station/service/chapel/office) +"dYV" = ( +/obj/structure/rack, +/obj/item/storage/secure/briefcase, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"dYX" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "cmo" + }, +/area/station/command/office/cmo) +"dZb" = ( +/obj/machinery/camera{ + c_tag = "Research Hallway"; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"dZe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"dZj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"dZp" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Warehouse Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/supply/sorting) +"dZE" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"dZO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/maintenance/fore2) +"dZP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/maintenance/fore2) +"dZQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white/side{ + dir = 8 + }, +/area/station/maintenance/fore2) +"dZR" = ( +/obj/machinery/optable, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/fore2) +"dZS" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white/side{ + dir = 1 + }, +/area/station/maintenance/fore2) +"dZT" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/maintenance/fore2) +"dZU" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/maintenance/fore2) +"dZV" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "sit_engshuttle"; + name = "Engineering Maintenance"; + width = 11 + }, +/turf/space, +/area/space) +"eaa" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/public/arcade) +"eag" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/command/office/cmo) +"eak" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"eas" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"eav" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"eax" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"eaH" = ( +/obj/machinery/blackbox_recorder, +/turf/simulated/floor/bluegrid, +/area/station/telecomms/chamber) +"eaV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"ebf" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ebi" = ( +/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/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"ebq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/storage) +"ebz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"ebA" = ( +/obj/machinery/door/airlock/external{ + id_tag = "trade_dock"; + locked = 1; + name = "Arrivals External Access" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"ebH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"ebU" = ( +/obj/machinery/computer/general_air_control{ + autolink_sensors = list("burn_sensor"="Burn Mix"); + dir = 1; + name = "Bomb Mix Monitor" + }, +/obj/machinery/ignition_switch{ + id = "toxinsigniter"; + pixel_x = 6; + pixel_y = -25 + }, +/obj/machinery/door_control/shutter/south{ + id = "ToxinsVenting"; + name = "Toxin Venting Control"; + pixel_x = -8 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"ebW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 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/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"ecf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "neutral" + }, +/area/station/security/permabrig) +"ech" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"ecs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/toxins/mixing) +"ecz" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"ecT" = ( +/obj/machinery/hologram/holopad, +/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" + }, +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"ecY" = ( +/obj/structure/cable{ + 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/plating, +/area/station/maintenance/port) +"edc" = ( +/obj/item/flag/sec, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"edl" = ( +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"edp" = ( +/obj/item/kitchen/rollingpin, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"edQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/computer/mob_healer_terminal{ + pixel_x = -30 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"edY" = ( +/obj/structure/chair/comfy/teal{ + dir = 8 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"eee" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"eeh" = ( +/obj/machinery/papershredder, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/warden) +"eek" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/control) +"eez" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/carpet, +/area/station/security/permabrig) +"eeA" = ( +/obj/effect/turf_decal{ + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/storage) +"eeP" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"eeR" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"eeW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"eff" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"efi" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/turf/simulated/floor/plating, +/area/station/medical/sleeper) +"efj" = ( +/obj/structure/disposalpipe/segment, +/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/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"efk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"efp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"efx" = ( +/obj/structure/cable{ + 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, +/area/station/command/office/hop) +"efy" = ( +/obj/structure/chair/sofa/corner{ + dir = 8 + }, +/obj/structure/sign/electricshock{ + pixel_x = 32 + }, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"efP" = ( +/obj/structure/railing, +/obj/structure/railing/corner{ + dir = 10; + pixel_x = -8; + pixel_y = 3 + }, +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/service/bar/atrium) +"ega" = ( +/obj/structure/statue/delta/w, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/hallway/secondary/bridge) +"egM" = ( +/obj/effect/decal/cleanable/dirt, +/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/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"ehj" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/medical/paramedic, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/paramedic) +"ehm" = ( +/obj/machinery/atmospherics/pipe/simple/insulated{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white, +/area/station/science/toxins/mixing) +"ehX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/black, +/area/station/command/office/hos) +"ehY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"eij" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/main) +"ein" = ( +/obj/structure/window/reinforced, +/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/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"eip" = ( +/obj/structure/bed, +/obj/item/bedsheet/clown, +/obj/structure/sign/poster/official/random/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/service/clown) +"eir" = ( +/obj/machinery/economy/vending/cart, +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"eiA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"eiF" = ( +/obj/structure/bookcase, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"eiL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"eiR" = ( +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"eiU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/engineering/controlroom) +"eiX" = ( +/turf/simulated/floor/transparent/glass, +/area/station/maintenance/virology_maint) +"ejn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/freezer, +/area/station/medical/virology/lab) +"ejp" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"ekr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/sleeper) +"ekv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"eky" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"ekF" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"ekH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"ekU" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/starboard2) +"elb" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"elg" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/medical/virology/lab) +"elp" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/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/plasteel{ + icon_state = "white" + }, +/area/station/medical/cryo) +"elr" = ( +/obj/structure/computerframe{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"elz" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"ema" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/mob/living/simple_animal/crab/Coffee{ + desc = "Master of the GYM"; + name = "Billy Crabington"; + real_name = "Billy Crabington" + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/fitness) +"emh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/evidence) +"emi" = ( +/obj/structure/disposalpipe/junction/y{ + dir = 8 + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"emt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"emF" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"emI" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/blue{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"emK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"emR" = ( +/obj/structure/disposalpipe/broken, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"emU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"enA" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/zipties, +/obj/item/flash{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/main) +"enC" = ( +/obj/machinery/door/airlock/multi_tile/security/glass{ + name = "Brig" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/machinery/door/firedoor, +/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" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/storage) +"enE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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/plating, +/area/station/maintenance/port) +"enH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Virology Shutters"; + id_tag = "Virology2" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"eoh" = ( +/obj/machinery/atmospherics/portable/scrubber/huge, +/obj/effect/turf_decal{ + dir = 8 + }, +/obj/effect/turf_decal{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/storage) +"eol" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"eom" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Court" + }, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"eoB" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"eoX" = ( +/turf/simulated/wall/r_wall, +/area/station/security/permabrig) +"epE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"epF" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/door_control/bolt_control/south{ + id = "DormToilet1" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"epX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/security/permabrig) +"eqc" = ( +/obj/machinery/door_timer/cell_3{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"eqp" = ( +/obj/machinery/light/directional/east, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/aft) +"eqq" = ( +/obj/structure/table, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/cultivator, +/turf/simulated/floor/plasteel, +/area/station/service/hydroponics) +"eqH" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/range) +"eqK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"eqM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"erb" = ( +/obj/item/flag/nt, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"erA" = ( +/obj/structure/table, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/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/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"erP" = ( +/obj/machinery/camera{ + c_tag = "Secure Lab - Test Chamber"; + dir = 8; + network = list("TestChamber","SS13","Research") + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"erQ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/public/fitness) +"erX" = ( +/obj/item/kirbyplants, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/aitransit) +"esw" = ( +/obj/machinery/access_button{ + autolink_id = "enginen_btn_ext"; + name = "exterior access button"; + pixel_x = 20; + pixel_y = 20; + req_access_txt = "10;13" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"esC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"esG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"esH" = ( +/obj/machinery/light/directional/east, +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/science{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"etw" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/plating, +/area/station/maintenance/abandoned_garden) +"etA" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/security/execution) +"etF" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"etV" = ( +/obj/structure/table/glass, +/obj/item/storage/toolbox/emergency, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/light_switch/east, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"euc" = ( +/turf/simulated/wall/r_wall, +/area/station/hallway/secondary/bridge) +"euk" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"eup" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"euq" = ( +/obj/item/kirbyplants, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"euA" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"euI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/portable/canister/nitrogen, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"evb" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"evg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/plating, +/area/station/maintenance/apmaint) +"evi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "neutral" + }, +/area/station/security/permabrig) +"evx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"evM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"evV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"ewd" = ( +/obj/machinery/photocopier, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"ewi" = ( +/obj/effect/decal/cleanable/dirt, +/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, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"ewj" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"ewF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/space, +/area/station/maintenance/starboardsolar) +"ewM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"exe" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Detective"; + departmentType = 5; + name = "Detective Requests Console"; + pixel_x = 30 + }, +/turf/simulated/floor/carpet, +/area/station/security/detective) +"exh" = ( +/obj/effect/decal/cleanable/dirt, +/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, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"exl" = ( +/obj/item/soap, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"exE" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"exJ" = ( +/obj/machinery/door/airlock/security/glass, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "Secure Armory"; + name = "Secure Armory Shutters" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/poddoor/preopen{ + id_tag = "ArmoryLock"; + name = "Armory Lockdown" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"exS" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/warden) +"exZ" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"eyg" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"eyn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/barricade/sandbags, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/maintenance/starboard2) +"eyp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"eyJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/storage) +"eyM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"eyN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arcade" + }, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"eyP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/evidence) +"eyY" = ( +/obj/machinery/door/poddoor/shutters{ + density = 0; + dir = 8; + icon_state = "open"; + id_tag = "meetroomshutters"; + name = "Meeting Room Shutters"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/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{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/command/meeting_room) +"ezb" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/warden, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/warden) +"ezh" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"ezo" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"ezp" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"ezx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/warden) +"ezM" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/crew/chef, +/obj/structure/sign/poster/official/random/south, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/service/kitchen) +"ezU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"ezV" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Hall Port" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"eAb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"eAS" = ( +/turf/simulated/wall/r_wall, +/area/station/medical/chemistry) +"eBa" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"eBn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"eBK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"eBR" = ( +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/command/vault) +"eCa" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology/lab) +"eCg" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay2) +"eCj" = ( +/obj/machinery/status_display/directional/east, +/obj/effect/decal/warning_stripes/east, +/obj/machinery/camera{ + c_tag = "Arrivals Port Fore"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"eCB" = ( +/obj/effect/landmark/start/security_officer, +/turf/simulated/floor/plasteel/dark, +/area/station/security/storage) +"eCJ" = ( +/obj/effect/turf_decal{ + dir = 5 + }, +/obj/machinery/light/directional/east, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel/white, +/area/station/science/storage) +"eDh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"eDi" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/station/command/office/hos) +"eDP" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/nw) +"eEd" = ( +/obj/effect/decal/warning_stripes/south, +/obj/item/radio/intercom/directional/south, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"eEl" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/starboard) +"eFB" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"eFE" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"eFG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"eFJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/science/research) +"eFV" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"eFX" = ( +/obj/structure/chair/sofa/right{ + color = "#A30FAF"; + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"eGn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/plating, +/area/station/maintenance/port) +"eGT" = ( +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"eHj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/permabrig) +"eHn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"eHx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat) +"eHF" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"eHR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/storage/tools) +"eHW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6; + initialize_directions = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"eIa" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"eId" = ( +/obj/machinery/atmospherics/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/camera{ + c_tag = "Medbay Cryo"; + network = list("Medbay","SS13"); + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"eIk" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"eIv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/public/storage/tools) +"eIJ" = ( +/obj/structure/sink/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"eIU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/west) +"eJl" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/starboard) +"eJn" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/transit_tube{ + dir = 8; + icon_state = "Block" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/aitransit) +"eJJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/abandoned_garden) +"eJM" = ( +/obj/item/kirbyplants, +/obj/machinery/alarm/directional/east, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/aitransit) +"eJO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/east) +"eJW" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/redbeet, +/obj/item/clothing/head/ushanka, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"eKe" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) +"eKh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/sw) +"eKi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"eKj" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) +"eKx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"eKy" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"eKA" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"eKD" = ( +/obj/machinery/door/airlock/glass{ + name = "Cabin" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"eKN" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft) +"eKO" = ( +/obj/item/kirbyplants, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"eLd" = ( +/obj/effect/decal/warning_stripes/south, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"eLu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/cherry, +/area/station/service/hydroponics) +"eLI" = ( +/obj/item/kirbyplants, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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 = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"eLJ" = ( +/obj/machinery/light/directional/north, +/obj/machinery/light_switch/west, +/obj/machinery/computer/area_atmos, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"eMw" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"eMB" = ( +/obj/structure/cable{ + 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/greengrid, +/area/station/command/vault) +"eNn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"eNp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"eNq" = ( +/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/plasteel/white, +/area/station/science/toxins/mixing) +"eNr" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/aitransit) +"eNt" = ( +/turf/simulated/wall, +/area/station/maintenance/fsmaint) +"eOb" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, +/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" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"eOm" = ( +/obj/structure/disposalpipe/sortjunction/reversed{ + dir = 1; + name = "Captain's Office"; + sort_type_txt = "18" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-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/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/ne) +"eOQ" = ( +/obj/structure/chair/sofa/pew{ + dir = 8; + name = "bench of contemplation" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"eOS" = ( +/obj/structure/table/glass, +/obj/item/hand_labeler{ + pixel_y = 8 + }, +/obj/machinery/light_switch/east, +/obj/item/roller, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"ePd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"ePn" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/station/engineering/break_room) +"ePr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"ePt" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/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/plasteel, +/area/station/engineering/controlroom) +"ePX" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"ePY" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/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/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"eQc" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"eQe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/turbine) +"eQi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"eQq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"eQv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"eQC" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/station/medical/reception) +"eQE" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/visitingroom) +"eQL" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"eQP" = ( +/obj/structure/table/tray, +/obj/item/storage/firstaid/surgery{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"eRa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"eRb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/tech_storage) +"eRw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"eRB" = ( +/obj/structure/closet/secure_closet/injection, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"eRH" = ( +/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/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/control) +"eRI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/medmaint) +"eSc" = ( +/obj/machinery/computer/rdconsole/experiment, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"eSx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/processing) +"eSD" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "ExitPrivate" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) +"eSL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/sleeper) +"eTd" = ( +/obj/effect/decal/cleanable/ants, +/obj/item/kirbyplants/dead, +/obj/structure/sign/poster/contraband/communist_state{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"eTh" = ( +/obj/structure/bed/psych, +/obj/random/therapy, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"eTq" = ( +/obj/structure/disposalpipe/sortjunction/reversed{ + dir = 8; + name = "Genetics"; + sort_type_txt = "23" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/sleeper) +"eTE" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "experimentor"; + name = "Experimentor Blast Door" + }, +/turf/simulated/floor/engine, +/area/station/science/explab) +"eTQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"eTV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/wire_splicing/thirty, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"eUA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"eUF" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"eUH" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay2) +"eUZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"eVf" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/electrical) +"eVl" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"eVs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"eVA" = ( +/obj/machinery/door/airlock/maintenance, +/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/plating, +/area/station/maintenance/fore) +"eVT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"eWi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"eWo" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"eXw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/starboard2) +"eXC" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast north"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"eXH" = ( +/obj/structure/table/glass, +/obj/item/hand_labeler{ + pixel_y = 8 + }, +/obj/item/stack/packageWrap{ + pixel_y = -2 + }, +/obj/item/flashlight/lamp{ + pixel_y = -8; + pixel_x = -4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"eXJ" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/station/service/expedition) +"eXU" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + autolink_id = "o2_out"; + dir = 8; + external_pressure_bound = 0; + icon_state = "in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + releasing = 0 + }, +/turf/simulated/floor/engine/o2, +/area/station/engineering/atmos) +"eYr" = ( +/obj/structure/chair/barber{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"eYC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass{ + name = "Service Hall" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"eYD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/warden) +"eZo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"eZz" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"far" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"fas" = ( +/obj/structure/statue/delta/north, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/hallway/secondary/bridge) +"fbd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"fbk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/start/bartender, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"fby" = ( +/obj/effect/mapping_helpers/airlock/access/any/security/court, +/obj/machinery/door/airlock, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"fbB" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"fca" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"fcv" = ( +/obj/machinery/camera{ + c_tag = "Brig Hall North-West"; + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/brig) +"fcZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/paramedic) +"fda" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"fdo" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/execution) +"fen" = ( +/obj/item/kirbyplants, +/obj/structure/sign/poster/official/random/north, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"feI" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/machinery/newscaster/directional/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"feK" = ( +/obj/structure/chair/sofa/pew/left{ + dir = 4 + }, +/obj/item/flashlight/lantern, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"ffd" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + autolink_id = "n2_out"; + dir = 8; + external_pressure_bound = 0; + icon_state = "in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + releasing = 0 + }, +/turf/simulated/floor/engine/n2, +/area/station/engineering/atmos) +"ffq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"ffs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/spawner/xeno, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/starboard2) +"ffz" = ( +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ffH" = ( +/obj/effect/landmark/start/chemist, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"ffN" = ( +/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/station/maintenance/fore) +"ffZ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/turbine) +"fgB" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"fgE" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5 + }, +/turf/simulated/floor/plasteel/freezer, +/area/station/public/toilet) +"fgI" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"fgZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"fhb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain/bedroom) +"fhk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/storage) +"fho" = ( +/obj/machinery/economy/vending/artvend, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/starboard2) +"fhp" = ( +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"fhC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"fhF" = ( +/turf/space, +/area/shuttle/gamma/station) +"fhI" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/decal/cleanable/glass, +/obj/item/shard, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"fhJ" = ( +/obj/machinery/door/window{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"fhQ" = ( +/obj/item/stack/rods{ + amount = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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/station/maintenance/starboard) +"fie" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/machinery/camera{ + c_tag = "Research Toxins Storage Room"; + dir = 1; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"fih" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/range) +"fim" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"fiC" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Surgery2" + }, +/turf/simulated/floor/plating, +/area/station/medical/surgery/secondary) +"fiF" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/public/fitness) +"fiI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"fiJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"fiK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + id_tag = "KPPSouth"; + name = "Public Access" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/poddoor/preopen{ + id_tag = "EscapeLockdown"; + name = "Escape Shuttle Lockdown" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/bridge/checkpoint/south) +"fjd" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Court" + }, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"fjw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/controlroom) +"fjF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "neutral" + }, +/area/station/security/permabrig) +"fjM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"fjO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"fjW" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/beach/away/water/deep/dense{ + density = 0; + water_overlay_image = null + }, +/area/station/hallway/secondary/exit) +"fkv" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/armory, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/poddoor/preopen{ + id_tag = "ArmoryLock"; + name = "Armory Lockdown" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"fkz" = ( +/obj/machinery/atmospherics/portable/canister/toxins, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"fkE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/medmaint) +"fkK" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 6"; + name = "Cell 6 Locker" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"fkW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"flE" = ( +/obj/item/radio/intercom{ + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_3) +"flL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "Warden"; + name = "Warden Privacy Shutters" + }, +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/warden) +"flR" = ( +/obj/structure/cable{ + 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/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"fmc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"fmg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/cans/badminbrew, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fsmaint) +"fmm" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/telecomms/chamber) +"fms" = ( +/obj/item/flag/nt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/plasteel/dark, +/area/station/security/main) +"fmE" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"fmG" = ( +/obj/machinery/bodyscanner{ + dir = 2 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"fmS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/fitness) +"fnc" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"fnt" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"fnz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"fnT" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/brig) +"foa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"fob" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/visitingroom) +"fok" = ( +/obj/machinery/camera{ + c_tag = "Kitchen South" + }, +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + name = "Kitchen Requests Console"; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"fou" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/visitingroom) +"foX" = ( +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/station/hallway/primary/fore) +"fpf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"fpj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/sink/directional/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"fpq" = ( +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"fpv" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"fqb" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/aquatic_kit/full, +/obj/item/fish_eggs/salmon, +/obj/item/fish_eggs/salmon, +/obj/item/fish_eggs/shrimp, +/obj/item/fish_eggs/shrimp, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"fqo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"fqr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/toxins/mixing) +"fqS" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/maintenance/apmaint) +"frf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/maintenance/medmaint) +"frk" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) +"frl" = ( +/obj/machinery/iv_drip, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/surgery/primary) +"frp" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall7c"; + location = "hall7b" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"frz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"frN" = ( +/obj/item/chair/light, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"fsO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/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/plating, +/area/station/maintenance/starboard) +"ftl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology) +"ftp" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/armory, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "ArmoryLock"; + name = "Armory Lockdown" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"ftB" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Transit Tube" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/machinery/door/poddoor/preopen{ + id_tag = "transitlock"; + name = "Transit Tube Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"fuc" = ( +/obj/machinery/door/airlock/external{ + id_tag = "apmaint2_door_int"; + locked = 1; + name = "West Maintenance External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/access_button/north{ + autolink_id = "apmaint2_btn_int"; + name = "interior access button" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"fun" = ( +/obj/structure/statue/delta/s, +/obj/effect/turf_decal/siding/yellow, +/turf/simulated/floor/plasteel/dark, +/area/station/hallway/secondary/bridge) +"fut" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/sw) +"fuv" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"fuM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/range) +"fuN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"fvc" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"fvA" = ( +/obj/effect/decal/warning_stripes/yellow, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"fvB" = ( +/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/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"fvE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"fvH" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"fvL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"fwG" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard2) +"fwJ" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/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/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"fwP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/chair/sofa/left, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/moth, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"fwQ" = ( +/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/structure/disposalpipe/segment, +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"fwX" = ( +/obj/structure/sign/electricshock{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"fxa" = ( +/obj/machinery/airlock_controller/access_controller{ + ext_button_link_id = "perma_btn_ext"; + ext_door_link_id = "perma_door_ext"; + int_button_link_id = "perma_btn_int"; + int_door_link_id = "perma_door_int"; + name = "Prison Access Console"; + pixel_y = 24; + pixel_x = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"fxe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"fxz" = ( +/turf/simulated/wall, +/area/station/security/interrogation) +"fxN" = ( +/obj/machinery/hydroponics/constructable, +/turf/simulated/floor/plating, +/area/station/maintenance/abandoned_garden) +"fxS" = ( +/obj/structure/flora/junglebush, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"fxV" = ( +/obj/effect/decal/cleanable/dirt, +/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/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/maintenance/starboard) +"fxX" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 4; + name = "Forensics Morgue" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/forensics{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/security/detective) +"fyg" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/landmark/start/paramedic, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"fyk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"fyo" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "neutral" + }, +/area/station/security/permabrig) +"fyp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"fyJ" = ( +/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{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"fyS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/directional/south, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "greenblue" + }, +/area/station/maintenance/abandoned_garden) +"fze" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"fzn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/command/office/cmo) +"fzq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/simulated/floor/plasteel, +/area/station/service/theatre) +"fzu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"fzx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/engineering/controlroom) +"fzE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"fzL" = ( +/obj/machinery/door/firedoor/closed, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"fAE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/ne) +"fAW" = ( +/obj/structure/inflatable/door, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"fBl" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/telecomms/chamber) +"fBr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"fBv" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"fBC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"fBF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"fBT" = ( +/obj/structure/table/reinforced, +/obj/item/stack/rods, +/obj/item/stack/cable_coil/random, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/stack/sheet/glass{ + amount = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"fBX" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/maintenance/starboard) +"fCc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"fCe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"fCZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"fDh" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"fDk" = ( +/obj/structure/chair/comfy/teal{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera{ + c_tag = "Medbay Hallway South"; + dir = 1 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"fDy" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/security/permabrig) +"fDB" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"fDM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"fDS" = ( +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"fDY" = ( +/obj/structure/table/tray, +/obj/item/storage/firstaid/surgery{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"fEd" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/white, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"fEi" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/plantgenes, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"fEo" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "enginen_vent"; + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"fEv" = ( +/turf/simulated/floor/plating/burnt/airless, +/area/space/nearstation) +"fEG" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"fEJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"fEO" = ( +/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/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/lobby) +"fFp" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/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{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"fFy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"fFE" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"fFF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"fFM" = ( +/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/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/nw) +"fFT" = ( +/obj/structure/statue/delta/c, +/turf/simulated/floor/plasteel/dark, +/area/station/hallway/secondary/bridge) +"fFU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/airlock_controller/access_controller{ + name = "Virology Lab Access Console"; + req_one_access_txt = "39"; + ext_door_link_id = "virolab_door_ext"; + int_door_link_id = "virolab_door_int"; + ext_button_link_id = "virolab_btn_ext"; + int_button_link_id = "virolab_btn_int"; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"fFX" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/disposal, +/obj/machinery/door_control/shutter/south{ + id = "chemdesk"; + name = "Primary Chemistry Shutters" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"fGc" = ( +/obj/item/clothing/mask/gas, +/obj/effect/landmark/damageturf, +/obj/structure/sign/poster/contraband/random/east, +/obj/structure/sign/poster/contraband/random/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"fGi" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"fGy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"fGI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + initialize_directions = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"fGU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"fHs" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Chief Engineer's Office"; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"fHC" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"fHD" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"fHK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"fHM" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants{ + pixel_y = 12 + }, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"fIf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"fIn" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"fIv" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"fIy" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"fIB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"fJz" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/carpet/orange, +/area/station/service/bar/atrium) +"fKv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"fKG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"fKN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fsmaint) +"fKW" = ( +/obj/structure/curtain/open/shower/security{ + icon_state = "closed" + }, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"fLx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"fLB" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/brig) +"fLD" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"fLP" = ( +/obj/structure/flora/ausbushes, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"fLZ" = ( +/obj/structure/closet/crate, +/obj/machinery/fishtank/bowl, +/obj/machinery/fishtank/bowl, +/obj/machinery/fishtank/bowl, +/obj/machinery/fishtank/bowl, +/obj/machinery/fishtank/bowl, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/beach/sand, +/area/station/maintenance/fsmaint) +"fMj" = ( +/obj/structure/chair/office, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"fMM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/general_air_control/large_tank_control{ + autolink_sensors = list("n2o_sensor"="Tank"); + dir = 4; + inlet_injector_autolink_id = "n2o_in"; + name = "Nitrous Oxide Supply Control"; + outlet_vent_autolink_id = "n2o_out" + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/station/engineering/atmos) +"fMS" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/starboard) +"fMU" = ( +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) +"fMW" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/maintenance/apmaint) +"fMZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"fNh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"fNr" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/rollingpapers, +/obj/item/storage/box/matches, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"fNw" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"fNL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel/dark, +/area/station/command/bridge) +"fOa" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/floodlight, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"fOe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"fOr" = ( +/turf/simulated/floor/plasteel{ + icon_state = "escape" + }, +/area/station/bridge/checkpoint/south) +"fOs" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space/nearstation) +"fOy" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"fOB" = ( +/obj/structure/table, +/obj/item/healthanalyzer/advanced, +/obj/item/clothing/ears/earmuffs{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"fOF" = ( +/turf/simulated/wall, +/area/station/medical/virology/lab) +"fOS" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/research) +"fPh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/tray, +/obj/item/ashtray/glass{ + pixel_y = 4; + initialized = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/maintenance/starboard) +"fPm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/janitor, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"fPv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"fPx" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"fPF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"fPH" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"fPJ" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"fPM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"fPS" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"fPU" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + name = "Virology Shutters"; + id_tag = "Virology2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"fPV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plating, +/area/station/maintenance/starboard2) +"fQf" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"fQg" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "greenblue" + }, +/area/station/maintenance/abandoned_garden) +"fQh" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/item/paper/pamphlet/gateway, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"fQr" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"fQx" = ( +/obj/structure/rack, +/obj/item/storage/toolbox{ + pixel_y = 2; + color = "red" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"fQJ" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"fQU" = ( +/obj/machinery/power/smes{ + charge = 2e+006 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/smes) +"fRf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"fRl" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "greencorner" + }, +/area/station/hallway/secondary/exit) +"fRm" = ( +/obj/structure/table, +/obj/item/clothing/accessory/medal{ + name = "медаль хорошему мальчику"; + desc = "Тот кто её носит - определенно заслужил её!" + }, +/obj/item/petcollar{ + pixel_y = 7; + pixel_x = 6 + }, +/obj/item/petcollar{ + pixel_y = 3 + }, +/obj/item/petcollar{ + pixel_y = -2; + pixel_x = -6 + }, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"fRG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"fRI" = ( +/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/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"fRL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"fRQ" = ( +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"fSa" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"fSl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"fSx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"fSN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/genetics) +"fSX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"fSZ" = ( +/obj/structure/rack, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target/alien{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/target/alien{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/target/alien{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/range) +"fTi" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel, +/obj/item/wrench, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light_switch/south, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"fTj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/xenobiology) +"fTl" = ( +/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" + }, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"fTn" = ( +/obj/structure/cable{ + 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/plasteel/grimy, +/area/station/service/chapel/office) +"fTz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/cloning) +"fTK" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/effect/decal/cleanable/ants, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"fTR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"fTX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/starboard2) +"fTZ" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"fUl" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/captain) +"fUr" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"fUD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"fUV" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/visitingroom) +"fVi" = ( +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"fVo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/sw) +"fVI" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "Warden"; + name = "Warden Privacy Shutters" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/warden) +"fVJ" = ( +/obj/structure/table/glass, +/obj/item/storage/box/gloves{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"fVX" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"fVZ" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/item/stock_parts/manipulator, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"fWo" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/brig) +"fWp" = ( +/obj/machinery/magnetic_controller{ + autolink = 1; + name = "Firing Range Control Console"; + path = "w;e;e;w;s;n;n;s" + }, +/turf/simulated/wall, +/area/station/security/range) +"fWx" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/wall, +/area/station/maintenance/electrical) +"fWF" = ( +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "BrigRight" + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"fWM" = ( +/obj/structure/table, +/obj/item/storage/bag/chemistry, +/obj/item/storage/bag/chemistry, +/obj/item/clothing/mask/gas{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/item/clothing/mask/gas{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"fWN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"fWP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"fXb" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"fXQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"fYd" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"fYD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-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/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) +"fYN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/maintenance/starboard) +"fYP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/table, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"fZa" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/processing) +"fZf" = ( +/obj/effect/decal/cleanable/ants, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"fZu" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"fZJ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage/secondary) +"fZU" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigpack_random, +/obj/item/storage/fancy/cigarettes/cigpack_random{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/box/matches, +/obj/machinery/light/directional/north, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"fZX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"gaB" = ( +/obj/machinery/economy/vending/tool/free, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"gaQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"gaU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"gaZ" = ( +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"gba" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"gbe" = ( +/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/decal/warning_stripes/east, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"gbi" = ( +/turf/simulated/wall, +/area/station/medical/medbay2) +"gbO" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/maintenance/fsmaint) +"gbZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/freezer, +/area/station/medical/virology/lab) +"gcb" = ( +/obj/machinery/computer/atmoscontrol{ + dir = 4 + }, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/engineering/atmos/control) +"gcd" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/folder/blue, +/obj/item/reagent_containers/glass/beaker/waterbottle, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/courtroom) +"gcg" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Genetics Privacy Shutter"; + id_tag = "GeneticsPrivacy"; + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/science/genetics) +"gcP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/visitingroom) +"gcZ" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/evidence) +"gdK" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"gdN" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"gep" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "RnDChem"; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/station/science/test_chamber) +"geW" = ( +/obj/machinery/door/airlock/maintenance, +/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/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plating, +/area/station/security/checkpoint/south) +"geX" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"gfF" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"gfN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Desk" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"gfY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/plasteel, +/area/station/security/brig) +"gfZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) +"gga" = ( +/obj/machinery/atmospherics/portable/canister/nitrogen, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"ggf" = ( +/obj/effect/decal/warning_stripes/blue/hollow, +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"ggo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/storage/tools) +"ggQ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"ghu" = ( +/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/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"ghx" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"ghA" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"ghJ" = ( +/obj/machinery/economy/atm/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft) +"ghP" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/item/tank/internals/plasma, +/obj/item/storage/toolbox/electrical{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/control) +"gib" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"gii" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore2) +"giz" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"giE" = ( +/obj/structure/table/glass, +/obj/item/kirbyplants{ + pixel_y = 12 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"giQ" = ( +/obj/structure/closet/lasertag/blue, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/public/fitness) +"giU" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/brown, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"giY" = ( +/obj/structure/table, +/obj/machinery/computer/med_data/laptop{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"gjF" = ( +/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/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit/maintenance) +"gjZ" = ( +/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/carpet/black, +/area/station/command/office/hos) +"gkb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"gkc" = ( +/obj/structure/rack, +/obj/item/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/assembly/timer{ + pixel_x = 1 + }, +/obj/item/assembly/timer{ + pixel_x = -1; + pixel_y = -2 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"gkj" = ( +/obj/machinery/economy/vending/crittercare, +/obj/effect/decal/warning_stripes/blue, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"gkk" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"gko" = ( +/obj/structure/chair/sofa/right, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"gkL" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"glw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"glD" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/effect/decal/cleanable/dirt, +/obj/item/gun/projectile/revolver/russian{ + pixel_y = 12 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"glK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"glP" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"glR" = ( +/obj/machinery/camera{ + c_tag = "Brig Prisoner Processing North-East" + }, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/processing) +"gme" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/sop_legal, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 3 + }, +/obj/item/megaphone, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/brig) +"gmC" = ( +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"gmG" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"gmN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"gmP" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) +"gng" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/equipmentstorage) +"gnk" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4"; + name = "Cell 4 Locker" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"gnl" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"gnn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"gnD" = ( +/obj/machinery/economy/vending/engivend, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/control) +"gnH" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/cans/cola{ + pixel_y = 3 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"goo" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"got" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"gou" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"gpa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/engineering, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"gpb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology) +"gpn" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/atmospherics/pipe/simple/insulated, +/turf/simulated/floor/plating, +/area/station/science/toxins/mixing) +"gpy" = ( +/obj/item/kirbyplants, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"gpC" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"gpK" = ( +/obj/structure/chair/sofa, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"gpP" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/door_control/shutter/south{ + id = "Secure Armory"; + name = "Secure Armory Shutter Control"; + req_one_access_txt = "3" + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"gqa" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/bridge) +"gqn" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/iv_bag/salglu{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/iv_bag/salglu{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"gqt" = ( +/obj/item/stack/rods{ + amount = 3 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"gqz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"gqN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"grg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/sleeper) +"gri" = ( +/obj/structure/table, +/obj/item/flash, +/obj/item/restraints/handcuffs, +/obj/machinery/firealarm/directional/north, +/obj/structure/sign/poster/official/random/east, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"grj" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_y = 4; + pixel_x = -6 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"grn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"gru" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/dead, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"gry" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"grA" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Armory_South"; + location = "Armory_North" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"grY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"gss" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/starboard) +"gsw" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/break_room) +"gsx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/dark, +/area/station/security/storage) +"gsz" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Port to Turbine" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"gsB" = ( +/obj/effect/decal/cleanable/dirt, +/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/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"gsE" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/security/storage) +"gtc" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/crew/secofficer, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/brig) +"gto" = ( +/obj/machinery/hologram/holopad{ + pixel_x = 16 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "cmo" + }, +/area/station/command/office/cmo) +"gtA" = ( +/obj/effect/turf_decal, +/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/plasteel/white, +/area/station/science/storage) +"gtC" = ( +/obj/structure/cable{ + 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 = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/lobby) +"gtD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"gtN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"gtO" = ( +/obj/structure/mineral_door/wood, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"gtR" = ( +/obj/item/seeds/coffee, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"gtW" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"guk" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall1"; + location = "hall15a" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"guw" = ( +/obj/machinery/washing_machine, +/obj/machinery/camera{ + c_tag = "Laundry Room"; + dir = 4; + pixel_y = -22 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/public/fitness) +"guQ" = ( +/obj/structure/chair/sofa/pew, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/service/chapel) +"gve" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 8 + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"gvn" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"gvO" = ( +/obj/effect/turf_decal, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/storage) +"gwc" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "ArmoryLock"; + name = "Armory Lockdown" + }, +/turf/simulated/floor/plating, +/area/station/security/warden) +"gwd" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 8; + location = "Hydroponics" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/station/service/hydroponics) +"gwg" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"gwk" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/command/office/cmo) +"gwp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"gwu" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"gwB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/rack, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_y = 2 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = -2 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"gwI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/window/brigdoor{ + id = "Cell 5"; + name = "Cell 5"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/prison/cell_block/A) +"gwO" = ( +/obj/machinery/camera{ + c_tag = "Supermatter South"; + network = list("SS13","Engineering") + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/alarm/engine{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/engine/supermatter) +"gxr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"gxu" = ( +/obj/effect/spawner/random_barrier/possibly_welded_airlock, +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"gxD" = ( +/obj/machinery/economy/vending/genedrobe, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"gxJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"gxW" = ( +/obj/structure/cable{ + 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 + }, +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"gyp" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"gyL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel, +/area/station/security/processing) +"gyY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + id_tag = "pub_room"; + name = "Public Meeting Room" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"gzd" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"gzk" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/decal/cleanable/glass, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/interrogation) +"gzl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"gzL" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"gAn" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "Clown"; + name = "Clown Privacy Shutters" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "Mime"; + name = "Mime Privacy Shutters" + }, +/turf/simulated/floor/plating, +/area/station/service/clown) +"gAq" = ( +/obj/machinery/economy/vending/crittercare, +/turf/simulated/floor/carpet, +/area/station/service/theatre) +"gAQ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/barricade/wooden, +/obj/structure/cable{ + 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/plasteel, +/area/station/maintenance/fore2) +"gAT" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/item/reagent_containers/food/snacks/meat/human, +/obj/item/reagent_containers/food/snacks/meat/human, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"gBg" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "lightblue" + }, +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"gBo" = ( +/obj/item/kirbyplants, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"gBF" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/head/welding/flamedecal/blue{ + pixel_y = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"gBH" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/station/medical/virology/lab) +"gCk" = ( +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/effect/decal/warning_stripes/west, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/storage/box/beanbag{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/beanbag{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/beanbag{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Brig Secure Armory East"; + dir = 8 + }, +/obj/item/storage/box/beanbag{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"gCs" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"gCt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"gCv" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel, +/area/station/service/kitchen) +"gCG" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Toxins Launcher" + }, +/obj/machinery/door/window/classic/reversed{ + name = "Toxins Launcher" + }, +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"gCT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/hardsuitstorage) +"gCZ" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"gDg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/cryo) +"gDm" = ( +/obj/structure/sink/directional/south, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"gDw" = ( +/obj/structure/table/wood, +/obj/item/deck/cards{ + pixel_y = 6 + }, +/obj/item/storage/pill_bottle/dice, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"gDY" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"gEj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/bridge) +"gEo" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"gEs" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"gEt" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"gEI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"gFm" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"gFt" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"gFX" = ( +/obj/machinery/light_construct/directional/east, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/starboard) +"gGq" = ( +/obj/machinery/atmospherics/portable/canister/nitrogen, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/maintenance/medmaint) +"gGE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/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" + }, +/turf/simulated/floor/plasteel/white, +/area/station/security/permabrig) +"gGM" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"gHy" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + dir = 4; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("Toxins") + }, +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"gHB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"gIn" = ( +/obj/machinery/optable, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/surgery/secondary) +"gIz" = ( +/obj/effect/turf_decal{ + dir = 6 + }, +/obj/machinery/power/apc/engineering/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/storage) +"gID" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"gJg" = ( +/obj/structure/table/glass, +/obj/item/paper_bin/nanotrasen{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen/multi{ + pixel_y = 6; + pixel_x = 6 + }, +/obj/machinery/button/windowtint/east{ + id = "CMO"; + pixel_y = 8 + }, +/obj/machinery/door_control/shutter/east{ + id = "Biohazard_medi"; + name = "Emergency Medbay Quarantine"; + pixel_y = -8; + color = "yellow" + }, +/obj/machinery/door_control/normal/east{ + id = "CMO"; + name = "Office Door"; + req_access_txt = "40" + }, +/obj/item/cartridge/chemistry{ + pixel_y = 4; + pixel_x = -6 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"gJk" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/lobby) +"gJA" = ( +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"gJC" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/soda{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"gJG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"gJL" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"gJQ" = ( +/turf/simulated/floor/wood, +/area/station/command/office/hos) +"gJS" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"gJT" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/pillbottles, +/turf/simulated/floor/engine, +/area/station/science/explab) +"gJU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"gJW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/break_room) +"gKl" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/permabrig) +"gKA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/security/detective) +"gLa" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/lobby) +"gLi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel/freezer, +/area/station/public/toilet) +"gLk" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"gLy" = ( +/obj/machinery/door/airlock/external{ + id_tag = "apsolar_door_int"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button/south{ + autolink_id = "apsolar_btn_int"; + name = "interior access button"; + req_access_txt = "13" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"gLB" = ( +/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, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"gLC" = ( +/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/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit/maintenance) +"gLL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"gLW" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"gMx" = ( +/obj/structure/cable{ + 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/junction/reversed, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"gMG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/red/partial{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"gMI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit/maintenance) +"gML" = ( +/obj/structure/sign/radiation/rad_area, +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos) +"gMM" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"gMT" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Prisoner Lockers"; + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prisonlockers) +"gMW" = ( +/obj/effect/decal/cleanable/flour, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/starboard2) +"gNd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/engine, +/area/station/science/explab) +"gNh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/warden) +"gNi" = ( +/obj/machinery/door/airlock/research{ + name = "Abandoned Equipment Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"gNj" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/station/security/interrogation) +"gNm" = ( +/obj/structure/chair/sofa/corner{ + color = "#A30FAF"; + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"gOk" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology) +"gOz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/snacks/disk, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" + }, +/area/station/maintenance/starboard2) +"gOP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + 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/plating, +/area/station/maintenance/fore) +"gPh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"gPu" = ( +/obj/machinery/economy/vending/sovietsoda, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"gPL" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/machinery/status_display/directional/east, +/obj/machinery/camera{ + c_tag = "Prison Library"; + dir = 9; + network = list("Prison","SS13") + }, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"gPS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/visitingroom) +"gPW" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Surgery1" + }, +/turf/simulated/floor/plating, +/area/station/medical/surgery/primary) +"gQg" = ( +/obj/structure/table/wood, +/obj/item/lighter/zippo/engraved{ + pixel_x = -5 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"gQm" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/shard, +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"gQF" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"gQL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"gQW" = ( +/turf/simulated/wall/r_wall, +/area/station/science/toxins/launch) +"gRm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"gRr" = ( +/obj/item/book/manual/wiki/security_space_law, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/old_detective) +"gRx" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) +"gRO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"gRS" = ( +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"gRY" = ( +/obj/effect/landmark/start/clown, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/service/clown) +"gSc" = ( +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"gSg" = ( +/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/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"gSh" = ( +/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/plasteel/dark, +/area/station/command/bridge) +"gSH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/security/permabrig) +"gSY" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/starboard) +"gTc" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"gTe" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/brig) +"gTk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"gTt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/interrogation/observation) +"gTy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"gTA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/control) +"gTF" = ( +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"gTS" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 6 + }, +/obj/machinery/light/directional/north, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"gTT" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall9d"; + location = "hall9c" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/public/fitness) +"gUc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"gUg" = ( +/obj/effect/decal/cleanable/dirt, +/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/plating, +/area/station/maintenance/starboard) +"gUi" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/public/sleep) +"gUl" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"gUt" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"gUx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"gUS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"gVw" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"gVD" = ( +/obj/machinery/door/airlock{ + name = "Toilet"; + id_tag = "DormToilet2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"gVE" = ( +/obj/machinery/light/directional/north, +/obj/machinery/economy/vending/chinese, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"gVF" = ( +/obj/machinery/door/poddoor/shutters{ + density = 0; + dir = 8; + icon_state = "open"; + id_tag = "hopqueueshutters"; + name = "Queue Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/west) +"gVG" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "detprivacy"; + name = "Detective Privacy Shutters Control" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"gWf" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) +"gWi" = ( +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"gWk" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"gWl" = ( +/obj/machinery/camera{ + c_tag = "Theatre West"; + dir = 4; + pixel_y = -22 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"gWP" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"gXb" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/service/barber) +"gXh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"gXj" = ( +/turf/simulated/wall, +/area/station/medical/cryo) +"gXs" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"gXY" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) +"gYq" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"gYr" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cloning) +"gYA" = ( +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"gYB" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"gYJ" = ( +/obj/machinery/economy/vending/wallmed/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/processing) +"gYK" = ( +/obj/structure/cable, +/obj/machinery/power/apc/directional/west, +/obj/effect/decal/warning_stripes/west, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"gYQ" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/fries{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/ants, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"gZs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"gZI" = ( +/obj/effect/decal/cleanable/dirt, +/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/plating, +/area/station/maintenance/port) +"gZU" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"haa" = ( +/obj/structure/sink/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"hak" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology) +"hap" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"haA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"haY" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"hbq" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"hbv" = ( +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"hby" = ( +/obj/structure/safe/floor{ + known_by = list("captain") + }, +/obj/item/gun/projectile/revolver/russian, +/obj/item/toy/figure/crew/captain, +/obj/item/storage/fancy/cigarettes/cigpack_robustgold, +/obj/item/lighter/zippo/nt_rep, +/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium, +/turf/simulated/floor/carpet/black, +/area/station/command/office/captain/bedroom) +"hbH" = ( +/obj/item/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/red/corner, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"hbN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"hci" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/maintenance/starboard2) +"hcm" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"hco" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"hcr" = ( +/obj/effect/decal/warning_stripes/east, +/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 = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"hcH" = ( +/obj/machinery/door/morgue{ + name = "Dungeon"; + req_access = list(63) + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/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/plasteel/dark, +/area/station/security/interrogation) +"hcY" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"hda" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "lightblue" + }, +/obj/structure/morgue, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"hdR" = ( +/obj/structure/rack, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/item/clothing/accessory/holster{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/accessory/holster{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/accessory/holster{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/accessory/holster{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/clothing/accessory/holster, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/storage) +"heu" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/engineering/hardsuitstorage) +"heT" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"heU" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"hfb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"hfe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"hfh" = ( +/obj/effect/decal/warning_stripes/yellow, +/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/plasteel/white, +/area/station/science/xenobiology) +"hfm" = ( +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/west, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/engineering/atmos/control) +"hfn" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"hfo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"hfw" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"hfx" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/science/genetics) +"hgc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/qm) +"hgg" = ( +/obj/structure/transit_tube/station/reverse{ + dir = 1 + }, +/obj/structure/transit_tube_pod{ + dir = 8 + }, +/obj/machinery/ai_status_display/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/aitransit) +"hgs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/turbine) +"hgA" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 6 + }, +/obj/machinery/light/nightshifted/south, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"hhf" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"hhp" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Checkpoint" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/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/plasteel{ + icon_state = "redfull" + }, +/area/station/security/checkpoint/south) +"hhD" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"hhF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"hhM" = ( +/obj/structure/table, +/obj/item/storage/box/syringes{ + layer = 3.9; + pixel_x = -4; + pixel_y = -8 + }, +/obj/item/storage/box/syringes{ + layer = 3.9; + pixel_x = 8; + pixel_y = -8 + }, +/obj/item/storage/box/autoinjectors{ + layer = 3.8; + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/storage/box/autoinjectors{ + layer = 3.8; + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/storage/box/gloves{ + layer = 3.7; + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/storage/box/gloves{ + layer = 3.7; + pixel_x = 8; + pixel_y = 12 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"hif" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/white, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"hig" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"hiq" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"hiL" = ( +/obj/structure/table/wood/fancy, +/obj/item/trash/plate, +/obj/item/kitchen/utensil/fork{ + pixel_x = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"hiP" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"hiT" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/range) +"hjl" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "Warden"; + name = "Warden Privacy Shutters" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/warden) +"hjJ" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"hjK" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall/r_wall, +/area/station/medical/chemistry) +"hjN" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/primary) +"hjU" = ( +/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/structure/disposalpipe/segment, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"hkc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/control) +"hke" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"hkj" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/engineering/hardsuitstorage) +"hkA" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster/directional/north, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"hkE" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/iv_bag/blood/random, +/obj/item/reagent_containers/iv_bag/blood/random, +/obj/item/reagent_containers/iv_bag/blood/random, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"hkN" = ( +/obj/structure/barricade/security, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"hkR" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/warden) +"hle" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"hlo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/station/hallway/secondary/exit) +"hlr" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"hly" = ( +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"hlC" = ( +/obj/structure/reagent_dispensers/peppertank/south, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"hlW" = ( +/obj/structure/table/wood, +/turf/simulated/floor/carpet/red, +/area/station/legal/lawoffice) +"hng" = ( +/obj/machinery/message_server, +/turf/simulated/floor/bluegrid, +/area/station/telecomms/chamber) +"hnH" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = -30 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"hnJ" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/storage) +"hnM" = ( +/obj/docking_port/stationary{ + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + width = 9 + }, +/turf/space, +/area/space) +"hoh" = ( +/obj/structure/closet/secure_closet{ + anchored = 1; + name = "Evidence Storage"; + req_access_txt = "4" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/door/window/reinforced/reversed{ + dir = 4; + name = "Evidence" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/evidence) +"hoj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"hov" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"hox" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"hoG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"hoX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"hpo" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/range) +"hpH" = ( +/obj/machinery/fishtank/tank, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/beach/sand, +/area/station/maintenance/fsmaint) +"hpS" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"hpX" = ( +/obj/machinery/door/airlock/command/cmo/glass{ + id_tag = "CMO" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "CMO" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/cmo, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/command/office/cmo) +"hqo" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/machinery/atmospherics/unary/portables_connector, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"hqq" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel Morgue" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/service/chapel/office) +"hqG" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/processing) +"hqR" = ( +/obj/machinery/photocopier, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"hqT" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit/maintenance) +"hrq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/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/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"hrB" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"hrQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"hrU" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/machinery/holosign/surgery{ + id = "Surgery2" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "Surgery2" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/surgery/secondary) +"hrW" = ( +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"hsa" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/sign/poster/contraband/random/south, +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"hss" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"hst" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/brig) +"hsC" = ( +/obj/structure/closet/secure_closet/brig, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/prisonlockers) +"hsK" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/security/visitingroom) +"hsQ" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"hti" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/window/brigdoor{ + id = "Cell 6"; + name = "Cell 6"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/prison/cell_block/A) +"htD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"htH" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"htQ" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/reagent_dispensers/peppertank/south, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"huh" = ( +/obj/structure/sign/fire, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/station/maintenance/turbine) +"huN" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"huY" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"hvi" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prisonlockers) +"hvl" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/iv_bag/salglu{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/iv_bag/salglu{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"hvs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"hvv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/control) +"hvw" = ( +/obj/effect/decal/warning_stripes/blue, +/obj/effect/decal/warning_stripes/northwest, +/obj/machinery/shower{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"hvE" = ( +/obj/structure/sign/poster/official/random/east, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"hvJ" = ( +/obj/structure/disposalpipe/sortjunction/reversed{ + name = "Sci R&D"; + sort_type_txt = "12" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"hvS" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + location = "Bar" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/station/service/bar) +"hwf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"hwg" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"hwu" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"hwF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"hwI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"hwR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/range) +"hxc" = ( +/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 = 10 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"hxk" = ( +/obj/structure/holosign/barrier/atmos, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"hxm" = ( +/obj/machinery/cryopod, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"hxq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central) +"hxs" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/disposalpipe/segment, +/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" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/main) +"hxB" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/explab) +"hxF" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"hxL" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"hxO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"hxP" = ( +/obj/structure/sign/bobross{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"hyI" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/armory, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"hyS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/miningdock) +"hyT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/brig) +"hzl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/turret_protected/aisat) +"hzo" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall9b"; + location = "hall9a" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall9g"; + location = "hall9f" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall10"; + location = "hall9h" + }, +/obj/structure/disposalpipe/junction/y{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) +"hzs" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"hzw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/snacks/disk{ + pixel_x = -6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/starboard2) +"hzH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"hzJ" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/brig) +"hzV" = ( +/obj/structure/sign/nosmoking_1, +/turf/simulated/wall, +/area/station/medical/morgue) +"hzW" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/kitchenspike, +/obj/machinery/camera{ + c_tag = "Kitchen Backroom" + }, +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel, +/area/station/service/kitchen) +"hAj" = ( +/obj/machinery/optable, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/surgery/primary) +"hAD" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"hAO" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"hAZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/computer/general_air_control/large_tank_control{ + autolink_sensors = list("air_sensor"="Tank"); + dir = 8; + inlet_injector_autolink_id = "air_in"; + name = "Mixed Air Supply Control"; + outlet_setting = 2000; + outlet_vent_autolink_id = "air_out" + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/engineering/atmos) +"hBe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "visitleft" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/plasteel, +/area/station/security/visitingroom) +"hBu" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"hBy" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"hBH" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"hBV" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"hCj" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/grass/no_creep, +/area/station/hallway/secondary/exit) +"hCx" = ( +/obj/item/camera_film, +/obj/effect/decal/cleanable/dirt, +/obj/item/mounted/frame/intercom, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/old_detective) +"hCA" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"hCM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/effect/decal/warning_stripes/south, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"hDf" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"hDu" = ( +/obj/effect/landmark/start/coroner, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"hDz" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"hDF" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/science/break_room) +"hDH" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/mineral/tranquillite, +/area/station/maintenance/starboard2) +"hDP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/red, +/area/station/legal/lawoffice) +"hDS" = ( +/obj/structure/table, +/obj/item/storage/pill_bottle/dice, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"hDZ" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 8; + height = 31; + id = "whiteship_home"; + name = "north of Kerberos"; + width = 21 + }, +/turf/space, +/area/space) +"hEc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"hEh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/processing) +"hEl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/apmaint) +"hEn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"hEF" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"hEG" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/simulated/floor/carpet/orange, +/area/station/service/theatre) +"hEO" = ( +/obj/structure/table/wood, +/turf/simulated/floor/carpet/orange, +/area/station/service/theatre) +"hEP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/checkpoint/south) +"hEU" = ( +/obj/machinery/economy/vending/cola, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"hEX" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"hFh" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/bridge) +"hFj" = ( +/obj/structure/window/reinforced, +/obj/structure/chair/office, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/visitingroom) +"hFn" = ( +/obj/effect/decal/cleanable/dirt, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"hFq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/visitingroom) +"hFx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/office/hos) +"hFB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"hGa" = ( +/obj/effect/landmark/start/detective, +/obj/machinery/status_display/directional/west, +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/main) +"hGe" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5; + color = "lightblue" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"hGs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/checkpoint/south) +"hGx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"hGN" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera{ + c_tag = "Restrooms" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"hGO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"hGT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/service/kitchen) +"hGV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/dark, +/area/station/security/storage) +"hGZ" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"hHd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/station/science/robotics/showroom) +"hHk" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"hHr" = ( +/obj/machinery/light/directional/north, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"hHx" = ( +/obj/structure/cable{ + 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/wood/fancy, +/area/station/public/sleep_female) +"hHy" = ( +/obj/structure/sink/directional/south, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"hHW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/maintenance/fsmaint) +"hId" = ( +/obj/effect/spawner/window/reinforced/grilled, +/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{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/checkpoint/south) +"hIj" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"hIE" = ( +/obj/item/bodybag, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/apmaint) +"hIK" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"hIQ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/visitingroom) +"hJd" = ( +/obj/machinery/mass_driver{ + id_tag = "chapelgun2" + }, +/obj/machinery/door/window{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/chapel_office{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"hJe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/cap/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"hJh" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"hJo" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/item/storage/fancy/donut_box, +/obj/machinery/status_display/directional/west, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/brig) +"hJq" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/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/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay2) +"hJA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/processing) +"hJG" = ( +/turf/simulated/floor/plasteel/stairs, +/area/station/science/research) +"hJM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_animal/mouse/white, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"hKc" = ( +/obj/machinery/hydroponics/constructable{ + desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays."; + name = "Prison hydroponics tray"; + using_irrigation = 1 + }, +/obj/item/seeds/apple, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"hKr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"hKO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"hKQ" = ( +/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/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"hKT" = ( +/turf/simulated/wall/r_wall, +/area/station/security/brig) +"hKV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Prison Solitary 1"; + dir = 4; + network = list("Prison","SS13") + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"hKW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel/freezer, +/area/station/public/toilet) +"hLe" = ( +/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/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"hLf" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/brig) +"hLA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/turbine) +"hLU" = ( +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "enginen_btn_ext"; + ext_door_link_id = "enginen_door_ext"; + int_button_link_id = "enginen_btn_int"; + int_door_link_id = "enginen_door_int"; + pixel_y = -25; + req_access_txt = "10;13"; + vent_link_id = "enginen_vent" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"hLV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"hMD" = ( +/obj/machinery/camera{ + c_tag = "Research Toxin Mixing"; + network = list("Research","SS13") + }, +/obj/machinery/power/apc/engineering/north, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"hMM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/north) +"hMZ" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + name = "Sci RD Office"; + sort_type_txt = "13" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"hNd" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"hNq" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/public/fitness) +"hNw" = ( +/obj/effect/decal/warning_stripes/white/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"hNN" = ( +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"hNR" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "BrigLeft" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"hNS" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"hNV" = ( +/obj/structure/railing, +/obj/structure/chair/office, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"hOj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"hOr" = ( +/obj/structure/chair/sofa/right{ + color = "#A30FAF"; + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"hOu" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"hOG" = ( +/obj/structure/table/glass, +/obj/item/storage/box/syringes{ + pixel_y = 4; + pixel_x = -8 + }, +/obj/item/storage/box/beakers{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"hOL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/red, +/area/station/legal/lawoffice) +"hOP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"hPf" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) +"hPm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"hPG" = ( +/obj/item/kirbyplants, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"hPI" = ( +/obj/machinery/economy/vending/medical, +/obj/machinery/light/nightshifted/east, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"hPL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"hQe" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"hQk" = ( +/obj/structure/sign/electricshock{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"hQq" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/fitness) +"hQt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/public/sleep) +"hQC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/plasteel{ + icon_state = "blue" + }, +/area/station/bridge/checkpoint/south) +"hQJ" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Magistrate" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/legal/magistrate) +"hQV" = ( +/obj/machinery/atmospherics/portable/canister/nitrogen, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "yellow" + }, +/area/station/maintenance/electrical) +"hRa" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"hRF" = ( +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/service/chapel/office) +"hSa" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"hSp" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "GYM"; + name = "Dungeon Privacy Shutters" + }, +/turf/simulated/floor/plating, +/area/station/security/interrogation) +"hSK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"hSL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"hSW" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "janitorshutters"; + name = "Janitor Shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/service/janitor) +"hTj" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"hTr" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/bridge/checkpoint/south) +"hTB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"hTC" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/portable/canister, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"hTU" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"hTV" = ( +/turf/simulated/wall, +/area/station/legal/magistrate) +"hTW" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall/r_wall, +/area/station/command/office/cmo) +"hUh" = ( +/obj/structure/rack, +/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" + }, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"hUL" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/starboard2) +"hUQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"hUT" = ( +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/stamp/cmo, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"hUV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/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/wood/oak, +/area/station/service/theatre) +"hVa" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"hVj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"hVo" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/curtain/open/shower, +/obj/item/bikehorn/rubberducky, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"hVr" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"hVu" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/sw) +"hVB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"hVL" = ( +/obj/item/kirbyplants, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/aitransit) +"hVT" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "lightblue" + }, +/obj/structure/morgue, +/obj/effect/landmark/spawner/rev, +/obj/structure/sign/poster/official/random/south, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"hWg" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10; + color = "lightblue" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"hWh" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"hWp" = ( +/obj/machinery/light/directional/east, +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"hWM" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/processing) +"hWP" = ( +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/interrogation/observation) +"hXg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"hXU" = ( +/obj/effect/turf_decal{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"hYv" = ( +/obj/structure/table, +/obj/item/toy/figure/crew/scientist, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"hYD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"hZk" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"hZm" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"hZs" = ( +/obj/effect/turf_decal{ + dir = 1 + }, +/obj/effect/turf_decal, +/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/plasteel/white, +/area/station/science/storage) +"hZD" = ( +/obj/machinery/disposal{ + name = "Deathposal" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"hZL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/public/locker) +"hZR" = ( +/obj/machinery/computer/area_atmos/area{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"hZW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"iaw" = ( +/obj/structure/table, +/obj/item/storage/pill_bottle/dice, +/obj/item/deck/cards, +/obj/machinery/atmospherics/unary/outlet_injector/on, +/turf/simulated/floor/carpet, +/area/station/security/permabrig) +"iaD" = ( +/obj/machinery/light_switch/east, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics/chargebay) +"iaG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/storage) +"iaN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/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/carpet/red, +/area/station/command/office/hos) +"iaP" = ( +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"ibb" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/access_button{ + autolink_id = "turbine_btn_ext"; + name = "Gas Turbine Access Button"; + pixel_x = -26; + pixel_y = -8 + }, +/obj/machinery/access_button{ + autolink_id = "turbine_btn_int"; + name = "Gas Turbine Access Button"; + pixel_x = 26; + pixel_y = -8 + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"ibt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"ibG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"ibK" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + autolink_id = "waste_in"; + dir = 4; + icon_state = "on"; + on = 1; + pixel_y = 1 + }, +/turf/simulated/floor/engine/vacuum, +/area/station/engineering/atmos) +"ibQ" = ( +/obj/structure/chair/sofa/bench/left{ + cover_color = "#68452a"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"ice" = ( +/obj/effect/decal/warning_stripes/red/hollow, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera{ + c_tag = "Brig Briefing Room"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"ici" = ( +/obj/machinery/economy/vending/tool, +/obj/item/radio/intercom/directional/west, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"ics" = ( +/obj/structure/lattice/catwalk, +/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/space, +/area/station/maintenance/starboardsolar) +"icL" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/stack/cable_coil, +/obj/item/taperecorder{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/analyzer{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"icT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"idf" = ( +/obj/structure/table/wood, +/obj/item/toy/figure/crew/hos{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/mug/hos, +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood, +/area/station/command/office/hos) +"idp" = ( +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"idy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"idB" = ( +/obj/machinery/atmospherics/portable/scrubber/huge/stationary, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"idF" = ( +/obj/structure/sign/radiation/rad_area, +/turf/simulated/wall/r_wall, +/area/station/engineering/control) +"ieo" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage/secondary) +"ieq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"ieu" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"iev" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Toxins Bombing Room" + }, +/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/plasteel, +/area/station/science/toxins/mixing) +"iex" = ( +/obj/machinery/camera{ + c_tag = "Departure Lounge South-West"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"ieA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"ieC" = ( +/obj/machinery/dnaforensics, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/security/detective) +"ieN" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/processing) +"ieW" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"ieX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"ifb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/oil_maybe, +/obj/structure/sign/poster/contraband/random/west, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ifv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"ifQ" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/crate/freezer, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/service/kitchen) +"ifS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"iga" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"ign" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"igp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"igB" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"igI" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"ihb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"ihz" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + name = "Virology Shutters"; + id_tag = "Virology1" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"ihG" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/storage) +"ihK" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "air_out"; + dir = 8; + external_pressure_bound = 0; + icon_state = "in"; + internal_pressure_bound = 2000; + on = 1; + pressure_checks = 2; + releasing = 0 + }, +/turf/simulated/floor/engine/air, +/area/station/engineering/atmos) +"ihN" = ( +/obj/structure/flora/ausbushes/pointybush, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"ihR" = ( +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"iie" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"iig" = ( +/obj/machinery/light/directional/east, +/obj/structure/table/wood, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"iiY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"ijq" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"ijG" = ( +/obj/structure/closet/crate/medical, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"ijO" = ( +/obj/structure/table, +/obj/machinery/computer/library, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"ijQ" = ( +/obj/machinery/door/airlock/public, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"ijT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"ikd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"ikw" = ( +/obj/machinery/door/window/classic/normal{ + name = "Virology Work Zone" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/virology, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology/lab) +"ikC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"ikQ" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"ikX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"ila" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"ilJ" = ( +/turf/simulated/wall, +/area/station/bridge/checkpoint/south) +"ilP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"ilY" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/classic/normal{ + dir = 1; + name = "Medbay Reception" + }, +/obj/item/phone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/flashlight/pen{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/flashlight/pen{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/flashlight/pen{ + pixel_x = 6 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"ilZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"ima" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"imf" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel/grimy, +/area/station/public/vacant_office) +"imx" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitegreen" + }, +/area/station/medical/medbay) +"imN" = ( +/obj/structure/closet/crate/freezer/iv_storage, +/obj/effect/decal/warning_stripes/blue/hollow, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"imZ" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/range) +"inc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"inB" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/north) +"inE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/visitingroom) +"inM" = ( +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"inO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/public/fitness) +"iol" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"iom" = ( +/obj/structure/table/reinforced, +/obj/machinery/kitchen_machine/microwave{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"ioI" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"ioK" = ( +/obj/structure/closet/walllocker/medlocker/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"ioR" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/glass/bottle/ammonia, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/decal/cleanable/dirt, +/obj/item/crowbar/large, +/obj/item/wirecutters, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ioU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"ipa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"ipf" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"ipi" = ( +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"ipj" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"ipy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 4; + id = "Cell 1"; + name = "Cell 1" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/prison/cell_block/A) +"ipz" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/service/barber) +"ipP" = ( +/turf/simulated/wall, +/area/station/security/prison/cell_block/A) +"ipQ" = ( +/obj/machinery/atmospherics/unary/thermomachine/heater{ + dir = 1 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"ipT" = ( +/obj/machinery/floodlight, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "greenblue" + }, +/area/station/maintenance/abandoned_garden) +"ipW" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "paramedic"; + name = "Paramedic Garage" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/paramedic) +"ipZ" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"iqc" = ( +/turf/simulated/wall, +/area/station/science/break_room) +"iqf" = ( +/obj/machinery/atmospherics/binary/valve, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"iqA" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/prisonlockers) +"iqN" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/service/theatre) +"iqR" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"ird" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/maintenance/starboard2) +"irn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"irt" = ( +/turf/simulated/wall, +/area/station/maintenance/abandonedbar) +"iru" = ( +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) +"irM" = ( +/obj/machinery/status_display/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/processing) +"irO" = ( +/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/plasteel/dark, +/area/station/security/interrogation) +"irV" = ( +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"isc" = ( +/obj/structure/statue/delta/se, +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/hallway/secondary/bridge) +"iss" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/electrical) +"ist" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/toxins/mixing) +"isA" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"isQ" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"itk" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "perma_door_int"; + locked = 1; + name = "Prison Wing" + }, +/obj/machinery/access_button/south{ + autolink_id = "perma_btn_int"; + name = "Prison Wing Access Button"; + req_one_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/permabrig) +"ito" = ( +/turf/simulated/wall/r_wall, +/area/station/security/main) +"itt" = ( +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/medmaint) +"itv" = ( +/obj/machinery/camera{ + c_tag = "Chief Medical Officer's Quarters"; + dir = 1; + network = list("Medical","SS13") + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/cyan, +/area/station/command/office/cmo) +"itw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/station/service/library) +"itA" = ( +/turf/simulated/wall, +/area/station/security/main) +"itB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/north) +"itF" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"itL" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"itM" = ( +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"itO" = ( +/obj/machinery/door/airlock/engineering, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"itT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"iud" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"iuj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/item/chair, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"iuA" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/range) +"iuF" = ( +/obj/effect/decal/cleanable/blood, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"iuU" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/station/legal/courtroom) +"ivq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"ivD" = ( +/obj/machinery/door/poddoor{ + id_tag = "ToxinsVenting"; + name = "Toxins Venting Bay Door"; + power_state = 0 + }, +/turf/simulated/wall/r_wall, +/area/station/science/toxins/mixing) +"ivR" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"iwi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/outlet_injector/on, +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"iwz" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/main) +"iwO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ixf" = ( +/turf/simulated/wall, +/area/station/maintenance/starboard) +"ixr" = ( +/obj/machinery/door/poddoor{ + id_tag = "toxinsdriver"; + name = "Toxins Launcher Bay Door"; + protected = 0 + }, +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"ixA" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"ixE" = ( +/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/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ixZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"iyc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"iyh" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/engineering/atmos/control) +"iys" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft) +"iyC" = ( +/obj/machinery/atmospherics/trinary/tvalve/digital{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"iyF" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) +"ize" = ( +/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" + }, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"izv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"izz" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/atmos) +"izD" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/gray, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"izF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"izZ" = ( +/obj/effect/decal/cleanable/dirt, +/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/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"iAe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 4; + id = "Cell 3"; + name = "Cell 3" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/prison/cell_block/A) +"iAH" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"iAO" = ( +/obj/structure/disposalpipe/junction/y{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"iAW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"iBh" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/north) +"iBn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/brig) +"iBt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera{ + c_tag = "Brig Prisoner Processing West"; + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/processing) +"iBy" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"iBF" = ( +/obj/effect/decal/warning_stripes/red/hollow, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/landmark/start/security_officer, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/main) +"iBI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"iCs" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) +"iCy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed{ + dir = 1 + }, +/obj/structure/curtain/open, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/maintenance/starboard) +"iCE" = ( +/obj/machinery/economy/vending/snack, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"iCS" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/northeast, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"iCY" = ( +/obj/machinery/hydroponics/soil, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"iDa" = ( +/obj/machinery/light/directional/north, +/obj/structure/closet/secure_closet/iaa, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"iDw" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"iDP" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/analyzer, +/obj/machinery/camera{ + c_tag = "Atmospherics Front Desk"; + dir = 4; + network = list("SS13","Engineering") + }, +/obj/machinery/newscaster/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/engineering/atmos/control) +"iDU" = ( +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/captain) +"iEw" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"iEG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/security/permabrig) +"iEH" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/xenobiology) +"iEL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"iFl" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"iFx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "greencorner" + }, +/area/station/medical/virology/lab) +"iFA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"iFQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"iFR" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft) +"iGm" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel/white, +/area/station/security/permabrig) +"iGI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) +"iHc" = ( +/obj/structure/closet/crate/can, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"iHf" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/engineering/break_room) +"iHg" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"iHp" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/storage) +"iHv" = ( +/obj/structure/marker_beacon{ + icon_state = "markerteal-on"; + initialized = 1 + }, +/obj/structure/window/full/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/station/hallway/secondary/exit) +"iHy" = ( +/obj/machinery/disposal, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Genetics Requests Console"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"iHK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay2) +"iHP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/station/maintenance/fore) +"iHU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt, +/obj/item/cigbutt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"iHY" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast north"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"iIj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"iIC" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"iIM" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"iIZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"iJd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"iJq" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + name = "Virology Shutters"; + id_tag = "Virology1" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"iKe" = ( +/obj/structure/chair/comfy/red{ + dir = 8 + }, +/obj/effect/landmark/start/magistrate, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"iKC" = ( +/obj/structure/closet/crate/medical, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"iKH" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"iKY" = ( +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/starboard2) +"iLl" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"iLB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"iMa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 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/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"iMn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/port) +"iMB" = ( +/obj/machinery/economy/vending/security, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/main) +"iME" = ( +/obj/machinery/hydroponics/constructable{ + desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays."; + name = "Prison hydroponics tray"; + using_irrigation = 1 + }, +/obj/item/seeds/banana, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"iMI" = ( +/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, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"iMO" = ( +/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/plasteel/white, +/area/station/science/xenobiology) +"iMT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/medical/storage/secondary) +"iNa" = ( +/obj/item/relic, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"iNi" = ( +/obj/effect/turf_decal, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/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/plasteel/white, +/area/station/science/storage) +"iNt" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/theatre) +"iNL" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/door_control/shutter/south{ + id = "detprivacy"; + name = "Detective Privacy Shutters Control" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"iNR" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"iOe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"iOp" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/apmaint) +"iOs" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"iOu" = ( +/obj/structure/toilet, +/obj/item/reagent_containers/food/snacks/grown/pineapple{ + name = "Старый ананас"; + desc = "Довольно старый ананас. Интересно как он тут оказался и почему он так странно пахнет..." + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"iOx" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"iOA" = ( +/obj/structure/table/glass, +/obj/item/defibrillator/loaded{ + layer = 4; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"iOD" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"iPd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/public/sleep) +"iPy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"iPE" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"iPQ" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"iQj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) +"iQt" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/browntrenchcoat, +/obj/item/clothing/head/fedora/brownfedora, +/turf/simulated/floor/wood/fancy, +/area/station/public/sleep_female) +"iQv" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"iQw" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/classic/normal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/starboard2) +"iQK" = ( +/obj/machinery/mech_bay_recharge_port, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "yellow" + }, +/area/station/maintenance/electrical) +"iQO" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/library) +"iRa" = ( +/obj/structure/statue/sandstone/assistant, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"iRd" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/turf/simulated/floor/plasteel/freezer, +/area/station/public/toilet) +"iRf" = ( +/obj/machinery/atmospherics/portable/canister/toxins, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"iRp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/hardsuitstorage) +"iRy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/supply/miningdock) +"iRN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/flashlight, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"iRO" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/machinery/door/firedoor, +/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" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"iSe" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"iSg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"iSy" = ( +/obj/structure/table, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/shovel/spade, +/obj/item/hatchet, +/turf/simulated/floor/plasteel, +/area/station/service/hydroponics) +"iST" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/processing) +"iTn" = ( +/obj/machinery/atmospherics/binary/valve{ + dir = 4; + name = "port to heat exchange" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/toxins/mixing) +"iTq" = ( +/obj/structure/table/glass, +/obj/item/storage/box/masks{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/storage/box/gloves{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/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 = -8; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"iTw" = ( +/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/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"iTC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/range) +"iTG" = ( +/turf/simulated/wall, +/area/station/security/storage) +"iTK" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/maintenance/starboard2) +"iUa" = ( +/obj/machinery/economy/vending/tool/free, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"iUO" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "Bar"; + name = "Bar Privacy Shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"iUT" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/carpet/arcade, +/area/station/maintenance/starboard) +"iUV" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/wood/oak, +/area/station/command/office/ntrep) +"iUW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"iUX" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clipboard, +/obj/item/toy/figure/crew/janitor, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "purple" + }, +/area/station/service/janitor) +"iVf" = ( +/obj/machinery/camera{ + c_tag = "Expedition"; + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"iVg" = ( +/obj/machinery/economy/atm/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"iVi" = ( +/obj/machinery/power/apc/directional/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"iVy" = ( +/turf/simulated/wall, +/area/station/security/range) +"iVF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"iVI" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil, +/obj/item/airlock_electronics, +/obj/item/airlock_electronics, +/obj/machinery/light/directional/south, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/airlock_electronics, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"iVJ" = ( +/obj/machinery/economy/vending/artvend, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "escape" + }, +/area/station/public/fitness) +"iVO" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"iVQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/cloning) +"iVX" = ( +/turf/simulated/wall, +/area/station/maintenance/library) +"iWz" = ( +/obj/machinery/light/directional/east, +/obj/structure/sign/fire{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"iWI" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"iWM" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"iWV" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"iWX" = ( +/obj/machinery/photocopier, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/brig) +"iXn" = ( +/obj/structure/flora/ausbushes/palebush, +/mob/living/simple_animal/cock/Clucky, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"iXz" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/security/detective) +"iXL" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"iXW" = ( +/obj/machinery/door/airlock/research/glass{ + autoclose = 0; + id_tag = "tox_airlock_exterior"; + locked = 1; + name = "Xenobiology Kill Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/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/plasteel/dark, +/area/station/science/xenobiology) +"iYd" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"iYj" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "heat exchange to port" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/toxins/mixing) +"iYo" = ( +/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/plating, +/area/station/maintenance/starboard2) +"iYD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Mining Dock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"iYK" = ( +/obj/structure/closet/crate/engineering, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"iYN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/wood/fancy/black, +/obj/item/paper_bin, +/obj/item/pen/multi, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/courtroom) +"iZh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/processing) +"iZl" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"iZq" = ( +/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/carpet, +/area/station/legal/courtroom) +"iZL" = ( +/obj/effect/decal/warning_stripes/southeastcorner, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"iZR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"jag" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"jaE" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"jaY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"jby" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/lobby) +"jbL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/button/windowtint/west{ + id = "Interrogation"; + req_one_access_txt = "63" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/interrogation/observation) +"jbU" = ( +/obj/structure/table/reinforced, +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/item/razor{ + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"jbW" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/decal/warning_stripes/blue/partial{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"jck" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"jcq" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"jcU" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"jda" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"jdc" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/hallway/primary/central/north) +"jdm" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/decal/warning_stripes/red, +/obj/machinery/recharger/wallcharger{ + pixel_x = -27 + }, +/obj/item/clothing/mask/balaclava, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/storage) +"jdn" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"jdC" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/brig) +"jep" = ( +/obj/machinery/kitchen_machine/grill, +/turf/simulated/floor/plasteel/white, +/area/station/security/permabrig) +"jeu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"jev" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/checkpoint/south) +"jez" = ( +/obj/machinery/economy/vending/autodrobe, +/turf/simulated/floor/plasteel/dark, +/area/station/public/locker) +"jeE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/maintenance/starboard) +"jeJ" = ( +/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{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/toxins/mixing) +"jeM" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/laser{ + pixel_x = -2; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser{ + pixel_x = 2 + }, +/obj/item/gun/energy/laser{ + pixel_x = 4 + }, +/obj/item/gun/energy/laser{ + pixel_x = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"jeZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"jfy" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/radio/intercom/directional/south, +/obj/structure/sink/directional/east, +/obj/structure/mirror{ + pixel_x = -26 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"jfD" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"jfN" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/lobby) +"jfO" = ( +/obj/structure/chair/sofa/bench/right{ + cover_color = "#68452a"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"jfR" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"jfV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"jgp" = ( +/obj/structure/disposalpipe/segment, +/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/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"jgE" = ( +/obj/structure/closet/secure_closet/psychiatrist, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"jgZ" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/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/plasteel/dark, +/area/station/security/processing) +"jhj" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"jhk" = ( +/obj/effect/spawner/random_barrier/obstruction, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"jhp" = ( +/obj/machinery/light/directional/south, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"jhv" = ( +/obj/machinery/door/airlock/security/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/armory, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "WardenD" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/warden) +"jhz" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/economy/atm/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"jhD" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/brig) +"jhH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"jhJ" = ( +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"jhM" = ( +/obj/structure/table/glass, +/obj/item/stack/packageWrap{ + pixel_y = 2 + }, +/obj/item/reagent_scanner/adv{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/item/reagent_containers/applicator{ + pixel_y = 4; + pixel_x = 16 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"jif" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "HoS" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"jim" = ( +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"jiy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) +"jiB" = ( +/obj/structure/dresser, +/obj/machinery/button/windowtint/south{ + id = "hos_room"; + pixel_y = 24; + pixel_x = 6 + }, +/obj/machinery/light_switch/north{ + pixel_x = -6 + }, +/obj/machinery/door_control/shutter/west{ + id = "hos_secure_doors"; + pixel_x = 24 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/office/hos) +"jiN" = ( +/obj/effect/decal/cleanable/ants, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"jja" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"jjf" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"jji" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"jjl" = ( +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Hydroponics" + }, +/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" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/turf/simulated/floor/plasteel, +/area/station/service/hydroponics) +"jjp" = ( +/obj/machinery/newscaster/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"jjr" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"jjx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"jjK" = ( +/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" + }, +/turf/simulated/floor/plasteel/white, +/area/station/security/permabrig) +"jjN" = ( +/obj/machinery/recharge_station, +/obj/machinery/ai_status_display/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"jkk" = ( +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"jks" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/station/public/fitness) +"jku" = ( +/obj/machinery/light/directional/south, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"jkw" = ( +/obj/item/flashlight/flare/glowstick/random, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"jkz" = ( +/obj/machinery/hologram/holopad, +/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/effect/decal/warning_stripes/yellow/hollow, +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"jkC" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"jkD" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"jkM" = ( +/obj/machinery/door/airlock/external{ + id_tag = "enginen_door_ext"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"jkP" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/engineering/break_room) +"jlj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"jlS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"jmi" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Turbine Generator Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"jmD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction/reversed{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"jmF" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"jmG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"jmI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "Bar"; + name = "Bar Privacy Shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"jmJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/starboard2) +"jmX" = ( +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"jni" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/brig) +"jnp" = ( +/obj/structure/sink/directional/east, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"jnT" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"jnW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) +"joe" = ( +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"jof" = ( +/obj/structure/transit_tube, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"jog" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/control) +"joi" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 7; + height = 5; + id = "sit_arrivals"; + name = "Arrivals Maintenance"; + width = 11 + }, +/turf/space, +/area/space) +"jol" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Magistrate" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/legal/magistrate) +"jou" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/brig) +"joU" = ( +/obj/machinery/economy/vending/cigarette, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry) +"joW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"jpn" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/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" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/brig) +"jpo" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"jpu" = ( +/obj/machinery/dna_scannernew, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"jpy" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"jpB" = ( +/obj/machinery/light/directional/west, +/obj/machinery/optable, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/security/detective) +"jpX" = ( +/obj/effect/landmark/start/security_officer, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/storage) +"jqb" = ( +/obj/machinery/light/directional/north, +/obj/machinery/computer/scan_consolenew, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"jqc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/kitchen_machine/grill, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"jql" = ( +/obj/machinery/dye_generator, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"jqA" = ( +/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{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"jqC" = ( +/obj/effect/mapping_helpers/airlock/polarized{ + id = "hos_room" + }, +/obj/machinery/door/airlock/command/hos/glass{ + name = "Head of Security Bedroom" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/hos, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/hos) +"jqD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"jqI" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"jqX" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/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{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) +"jqZ" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"jri" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop{ + pixel_y = 2; + dir = 4; + pixel_x = 2 + }, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"jrw" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/decal/warning_stripes/red, +/obj/item/clothing/mask/balaclava, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/storage) +"jrK" = ( +/obj/structure/table/wood, +/obj/item/folder, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"jrU" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargodisposals" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"jrY" = ( +/obj/structure/chair/sofa/bench/right{ + cover_color = "#68452a" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"jrZ" = ( +/obj/machinery/door/airlock/psych, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "Psych" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, +/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/mapping_helpers/airlock/autoname, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"jsE" = ( +/obj/machinery/drone_fabricator, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"jsK" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"jtq" = ( +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore2) +"jtN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/station/maintenance/starboardsolar) +"jtV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"juo" = ( +/obj/machinery/chem_heater, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"juz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + id_tag = "engstorage"; + name = "Secure Storage Blast Doors" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"juA" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/science/explab) +"juJ" = ( +/obj/machinery/economy/vending/cola, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry) +"juL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + name = "Virology Shutters"; + id_tag = "Virology1" + }, +/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, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"juU" = ( +/obj/structure/morgue, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/maintenance/old_detective) +"jvm" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"jvo" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"jvp" = ( +/obj/effect/spawner/window/reinforced/grilled, +/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{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"jvu" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"jvC" = ( +/obj/structure/cable{ + 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/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/starboard) +"jvM" = ( +/obj/machinery/economy/vending/coffee, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/storage) +"jvO" = ( +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"jvR" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"jvS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"jwG" = ( +/obj/machinery/economy/vending/autodrobe, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"jwL" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"jwT" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/crew/bartender, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/bar) +"jxY" = ( +/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" + }, +/obj/effect/landmark/start/chef, +/turf/simulated/floor/plasteel, +/area/station/service/kitchen) +"jya" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"jyh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay2) +"jyi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/abandoned_garden) +"jym" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"jyv" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1; + color = "lightblue" + }, +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"jyJ" = ( +/turf/simulated/wall, +/area/station/maintenance/abandoned_garden) +"jyK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/starboard) +"jyP" = ( +/obj/structure/flora/junglebush, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"jyT" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 8 + }, +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_3) +"jzu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"jzw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"jzE" = ( +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"jzI" = ( +/obj/machinery/light/directional/east, +/obj/structure/sign/fire{ + pixel_x = 32 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/equipmentstorage) +"jzK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/station/maintenance/starboardsolar) +"jzV" = ( +/obj/machinery/sparker{ + id = "toxinsigniter"; + pixel_x = 20 + }, +/obj/machinery/atmospherics/unary/passive_vent{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"jAn" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"jBa" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"jBk" = ( +/obj/structure/table/reinforced, +/obj/machinery/door_control/normal{ + desc = "A remote control switch for the brig foyer."; + id = "BrigLeft"; + name = "Brig Foyer Left Doors"; + pixel_x = -5; + pixel_y = 6; + req_one_access_txt = "63" + }, +/obj/machinery/door_control/normal{ + desc = "A remote control switch for the brig foyer."; + id = "BrigRight"; + name = "Brig Foyer Right Doors"; + pixel_x = 5; + pixel_y = 6; + req_one_access_txt = "63" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/brig) +"jBn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"jBv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"jBA" = ( +/obj/item/flag/sec, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/storage) +"jBO" = ( +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/plasteel, +/area/station/security/brig) +"jCv" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"jCz" = ( +/obj/item/kirbyplants, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"jCO" = ( +/obj/structure/closet/cabinet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/starboard) +"jCU" = ( +/obj/structure/closet/secure_closet/iaa, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"jDc" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"jDu" = ( +/obj/machinery/computer/operating, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"jDw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"jDE" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/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/plasteel{ + dir = 1; + icon_state = "greencorner" + }, +/area/station/service/hydroponics) +"jDG" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/permabrig) +"jDI" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"jEo" = ( +/obj/machinery/economy/vending/security, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/processing) +"jEu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"jEH" = ( +/obj/machinery/door_control/shutter/east{ + id = "unknowndoor" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"jEI" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "engines_vent"; + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"jEZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/break_room) +"jFs" = ( +/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/plasteel, +/area/station/security/brig) +"jFV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/control) +"jGe" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera{ + c_tag = "Brig Security Equipment West"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/storage) +"jGf" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"jGH" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"jGV" = ( +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "waste_sensor"; + output = 127 + }, +/turf/simulated/floor/engine/vacuum, +/area/station/engineering/atmos) +"jHd" = ( +/obj/machinery/door/airlock{ + name = "Bedroom"; + id_tag = "PrivateRoom2" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + 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/wood/fancy, +/area/station/public/sleep_female) +"jHk" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/east) +"jHD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/east) +"jHH" = ( +/obj/structure/railing, +/obj/effect/landmark/lightsout, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"jHK" = ( +/obj/structure/table/tray, +/obj/item/storage/firstaid/surgery{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"jHO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"jIf" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper{ + pixel_y = -5 + }, +/obj/item/reagent_containers/dropper/precision{ + pixel_y = 3; + pixel_x = -12 + }, +/obj/item/lighter/zippo{ + name = "Ash Generator 3000"; + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellowfull" + }, +/area/station/medical/chemistry) +"jIg" = ( +/obj/machinery/light_construct/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"jIs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/brig) +"jIO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/visitingroom) +"jJc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/computer/general_air_control/large_tank_control{ + autolink_sensors = list("n2_sensor"="Tank"); + dir = 8; + inlet_injector_autolink_id = "n2_in"; + name = "Nitrogen Supply Control"; + outlet_vent_autolink_id = "n2_out" + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/engineering/atmos) +"jJj" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"jJq" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "escape_vent"; + dir = 1 + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "escape_btn_ext"; + ext_door_link_id = "escape_door_ext"; + int_button_link_id = "escape_btn_int"; + int_door_link_id = "escape_door_int"; + pixel_x = -26; + pixel_y = 6; + vent_link_id = "escape_vent" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) +"jJs" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"jJO" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Genetics Desk" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Genetics Privacy Shutter"; + id_tag = "GeneticsPrivacy"; + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen/multi{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/desk_bell{ + pixel_x = -6 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "Genetics Desk" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/genetics{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/genetics) +"jJU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/station/maintenance/turbine) +"jJW" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"jKc" = ( +/obj/structure/cable{ + 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/wood/oak, +/area/station/command/office/captain/bedroom) +"jKd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"jKj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/cell, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"jKo" = ( +/obj/structure/table/wood, +/obj/item/toy/figure/crew/wizard, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"jKy" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"jKJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/effect/landmark/start/head_of_security, +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera{ + c_tag = "Brig Head of Security's Bedroom"; + dir = 9 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/office/hos) +"jKL" = ( +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"jKM" = ( +/obj/structure/table/reinforced, +/obj/item/taperecorder{ + pixel_y = 3; + pixel_x = 12 + }, +/obj/item/flashlight/lamp{ + pixel_y = 6; + pixel_x = -4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/interrogation/observation) +"jKW" = ( +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "tox_sensor" + }, +/turf/simulated/floor/engine/plasma, +/area/station/engineering/atmos) +"jLf" = ( +/obj/structure/chair/sofa/left{ + color = "#A30FAF"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Break Room"; + dir = 4; + network = list("Research","SS13") + }, +/obj/machinery/alarm/directional/west, +/mob/living/simple_animal/goose/Scientist, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"jLn" = ( +/obj/machinery/chem_dispenser/soda{ + pixel_y = 6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"jLt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/barricade/sandbags, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/maintenance/starboard2) +"jMi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"jMo" = ( +/obj/structure/closet/radiation, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/radio/intercom/directional/north, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"jMx" = ( +/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, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"jMN" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/space, +/area/space/nearstation) +"jNg" = ( +/obj/machinery/newscaster/directional/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/storage) +"jNp" = ( +/obj/structure/cable{ + 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/station/maintenance/starboard) +"jNy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"jNz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"jNF" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/stack/medical/ointment/advanced{ + pixel_y = 2; + pixel_x = 5 + }, +/obj/item/stack/medical/bruise_pack/advanced{ + pixel_y = 2; + pixel_x = -6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"jNM" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"jOf" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Court" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"jOi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/blue, +/obj/structure/rack, +/obj/item/storage/firstaid/o2{ + pixel_y = 6 + }, +/obj/item/storage/firstaid/adv/empty{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"jOl" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"jOr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/item/flashlight/lamp{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel, +/area/station/security/processing) +"jOB" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prisonlockers) +"jOZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + name = "Virology Shutters"; + id_tag = "Virology1" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"jPh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/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" + }, +/obj/machinery/flasher_button{ + id = "prison3"; + pixel_x = 24; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"jPE" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/button/windowtint/south{ + id = "IAA"; + pixel_x = 8 + }, +/obj/effect/landmark/start/internal_affairs, +/turf/simulated/floor/carpet/red, +/area/station/legal/lawoffice) +"jQg" = ( +/obj/structure/statue/delta/sw, +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/hallway/secondary/bridge) +"jQi" = ( +/obj/item/chair/wood, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"jQm" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/permabrig) +"jRa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall, +/area/station/maintenance/fsmaint) +"jRf" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"jRl" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"jRu" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/light/small/directional/north, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"jRG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"jRH" = ( +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"jRL" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/coroner, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"jRY" = ( +/obj/machinery/chem_master, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"jSb" = ( +/obj/structure/chair/sofa/left, +/obj/machinery/alarm/directional/north, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"jSd" = ( +/obj/machinery/economy/vending/artvend, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"jSh" = ( +/obj/machinery/economy/vending/autodrobe, +/obj/machinery/camera{ + c_tag = "Clown Office" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/service/clown) +"jSy" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "GYM"; + name = "Dungeon Privacy Shutters" + }, +/turf/simulated/floor/plating, +/area/station/security/interrogation) +"jSE" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"jSH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"jSX" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/sleeper) +"jTe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"jTj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/alarm/directional/south, +/obj/machinery/economy/vending/robodrobe, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"jTD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"jTE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"jTH" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/control) +"jTS" = ( +/obj/item/kirbyplants, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"jUn" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"jUs" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"jUu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"jUG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/chair/sofa/left, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/moth, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard2) +"jUH" = ( +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"jUO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"jUS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/sink/directional/east, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"jVh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"jVi" = ( +/obj/machinery/door/airlock/freezer, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"jWd" = ( +/obj/machinery/flasher{ + pixel_x = 24; + id = "prison1" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"jWj" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/warden) +"jWx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"jWY" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 12; + id = "ferry_home"; + name = "port bay 3"; + width = 5 + }, +/turf/space, +/area/space) +"jXC" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/obj/machinery/computer/sm_monitor{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"jXF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "greencorner" + }, +/area/station/medical/virology/lab) +"jXH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"jYi" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"jYj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"jYv" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "evidence" + }, +/turf/simulated/floor/plating, +/area/station/security/evidence) +"jYB" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/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/plasteel/dark, +/area/station/command/bridge) +"jYQ" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"jZa" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/checkpoint/secondary) +"jZg" = ( +/obj/structure/chair/sofa/corner, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"jZi" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/machinery/holosign/surgery{ + id = "Surgery2" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "Surgery2" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/surgery/secondary) +"jZx" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"jZz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/maintenance/starboard2) +"jZM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/nw) +"jZO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"jZR" = ( +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"jZT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"kap" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"kaq" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/portable/canister, +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"kaL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table_frame, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"kaM" = ( +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"kaN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"kaO" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"kaP" = ( +/obj/machinery/light/directional/south, +/obj/structure/table/wood, +/obj/machinery/newscaster/directional/south, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 7; + pixel_y = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"kaQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/landmark/start/magistrate, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/courtroom) +"kaS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"kbj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"kbm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"kbw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"kbP" = ( +/obj/machinery/economy/vending/hydroseeds, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "greenblue" + }, +/area/station/maintenance/abandoned_garden) +"kbZ" = ( +/obj/structure/cable{ + 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/carpet/black, +/area/station/command/office/captain) +"kcc" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/flashlight/lamp/green/off{ + pixel_y = 12; + pixel_x = -4 + }, +/obj/item/cane, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"kcd" = ( +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"kcj" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"kcw" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) +"kcz" = ( +/obj/machinery/flasher/portable, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/effect/decal/warning_stripes/northeast, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"kcY" = ( +/obj/machinery/cooker/deepfryer, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"kdg" = ( +/obj/machinery/door/airlock/external{ + id_tag = "escape_door_ext"; + locked = 1; + name = "Escape External Access" + }, +/obj/effect/decal/warning_stripes/south, +/obj/machinery/access_button/east{ + autolink_id = "escape_btn_ext"; + name = "exterior access button"; + req_access_txt = "10;13" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"kdm" = ( +/obj/machinery/power/apc/engineering/north, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"kdn" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/service/theatre) +"kdu" = ( +/obj/structure/chair/sofa/right, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel/dark, +/area/station/service/theatre) +"kdF" = ( +/obj/effect/landmark/start/mime, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"kdH" = ( +/obj/structure/disposalpipe/sortjunction/reversed{ + dir = 1; + name = "Kitchen"; + sort_type_txt = "20" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"kdI" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/control) +"kep" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"ket" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/control) +"keu" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"keM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/permabrig) +"keS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"keU" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/seed_extractor, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"kfl" = ( +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall/r_wall, +/area/station/maintenance/starboard2) +"kfm" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"kfw" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel/white, +/area/station/science/research) +"kfy" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Interrogation" + }, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/security/interrogation/observation) +"kfP" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"kfU" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"kfZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel, +/area/station/security/brig) +"kga" = ( +/obj/structure/table/glass, +/obj/item/storage/fancy/vials{ + pixel_x = -2 + }, +/obj/item/storage/box/syringes{ + pixel_y = 3; + pixel_x = 15 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "greenfull" + }, +/area/station/medical/virology/lab) +"kgp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"kgr" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"kgy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"kgB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/landmark/start/bartender, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"kgO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"kgY" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/abandoned_garden) +"kht" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"khJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/west) +"khL" = ( +/obj/machinery/door/airlock/tranquillite{ + name = "Mime's Office" + }, +/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/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/mime, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"khQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/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/plating, +/area/station/maintenance/old_kitchen) +"kil" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"kiv" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"kiB" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/table/reinforced, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/light/directional/north, +/obj/item/gps/engineering, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"kiP" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"kiW" = ( +/turf/simulated/wall, +/area/station/security/brig) +"kjb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel/freezer, +/area/station/maintenance/aft) +"kjl" = ( +/obj/structure/flora/grass/jungle, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/east, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"kjm" = ( +/obj/structure/sign/poster/official/random, +/turf/simulated/wall/r_wall, +/area/station/security/brig) +"kjn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"kjw" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/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{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/brig) +"kjB" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"kjP" = ( +/obj/machinery/door/airlock/maintenance, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"kjR" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"kkB" = ( +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/maintenance/apmaint) +"kkD" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/door/firedoor, +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"kkR" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"kkX" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"klf" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/public/locker) +"klz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"klA" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "lightblue" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"klO" = ( +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"kmi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Toxins Mixing Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/tox, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/science/toxins/mixing) +"kmy" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/glass/beaker/waterbottle, +/turf/simulated/floor/carpet/red, +/area/station/legal/courtroom) +"kno" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"knI" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/storage) +"knM" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 9; + height = 18; + id = "admin_home"; + name = "port bay 1"; + timid = 1; + width = 19 + }, +/turf/space, +/area/space) +"knP" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"knR" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"knU" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"knV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"knW" = ( +/obj/item/flag/sec, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/warden) +"knY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast east"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/bridge) +"koI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/courtroom) +"kpp" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/old_detective) +"kpB" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/service/chapel) +"kpD" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"kpK" = ( +/obj/effect/landmark/start/shaft_miner, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"kqa" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/old_kitchen) +"kqp" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"kqF" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) +"kqQ" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Escape Shuttle Command Point" + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/bridge/checkpoint/south) +"krc" = ( +/obj/machinery/optable, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"krr" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"krw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"krD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"krP" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"ksd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"ksz" = ( +/obj/machinery/door_control/shutter{ + pixel_y = -24; + id = "evidence"; + req_one_access_txt = "1"; + name = "Evidence Shutters Control" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/evidence) +"ksQ" = ( +/obj/machinery/door_control/shutter/west{ + id = "restaurant"; + name = "Restaurant Shutters control" + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/gray, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"ksS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"ktb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) +"ktm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"ktr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/maintenance/electrical) +"kue" = ( +/obj/effect/decal/cleanable/ants, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"kur" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow/hollow, +/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/plasteel, +/area/station/engineering/controlroom) +"kut" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/starboard) +"kuI" = ( +/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/plasteel, +/area/station/science/research) +"kuJ" = ( +/obj/machinery/atmospherics/unary/thermomachine/freezer{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"kuY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Court" + }, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"kvx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/qm/glass, +/obj/effect/mapping_helpers/airlock/access/all/supply/qm, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "qm" + }, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel, +/area/station/supply/qm) +"kvQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"kvR" = ( +/obj/structure/sink/kitchen/north, +/obj/effect/decal/cleanable/ants, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"kwe" = ( +/obj/machinery/hydroponics/constructable, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "greenblue" + }, +/area/station/maintenance/abandoned_garden) +"kwr" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"kwv" = ( +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"kww" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"kwC" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/chef_recipes, +/obj/machinery/door/window/classic/normal{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"kwD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"kwN" = ( +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/service/chapel/office) +"kwO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"kxP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/security/court, +/obj/machinery/door/airlock, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"kxX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"kya" = ( +/obj/machinery/flasher{ + id = "Execution"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/security/execution) +"kyg" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/obj/machinery/light/directional/north, +/obj/item/paper/pamphlet/deltainfo, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"kyw" = ( +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"kyz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Science Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"kyJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/classic/normal{ + dir = 1; + name = "Medbay Reception" + }, +/obj/machinery/door_control/normal{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyerPort"; + name = "Medbay Doors Control"; + req_access = list(5) + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"kyU" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"kzh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/science/research) +"kzn" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"kzq" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6; + color = "lightblue" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"kzt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera{ + c_tag = "Brig Cell 6"; + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"kzE" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"kzN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"kzR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"kAf" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"kAl" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/engineering/hardsuitstorage) +"kAm" = ( +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"kAy" = ( +/obj/structure/table/wood, +/obj/item/kitchen/utensil/fork, +/obj/item/kitchen/utensil/spoon, +/turf/simulated/floor/carpet/orange, +/area/station/service/theatre) +"kAG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"kAK" = ( +/obj/structure/sign/greencross{ + icon_state = "lifestar" + }, +/turf/simulated/wall/r_wall, +/area/station/medical/chemistry) +"kAN" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/supply/miningdock) +"kAW" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "perma_door_int"; + locked = 1; + name = "Prison Wing" + }, +/obj/machinery/access_button/north{ + autolink_id = "perma_btn_int"; + name = "Prison Wing Access Button"; + req_one_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"kBi" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "chemdesk"; + name = "Chemistry Desk Shutters" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/medical/chemistry) +"kBQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"kBZ" = ( +/obj/structure/sign/explosives, +/turf/simulated/wall/r_wall, +/area/station/science/toxins/mixing) +"kCw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/checkpoint/south) +"kCy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"kCA" = ( +/obj/effect/turf_decal{ + dir = 4 + }, +/obj/effect/turf_decal{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/scrubber/huge, +/turf/simulated/floor/plasteel/white, +/area/station/science/storage) +"kDi" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/obj/machinery/computer/cryopod{ + pixel_y = -32; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"kDl" = ( +/obj/structure/table/reinforced, +/obj/item/trash/plate, +/obj/item/reagent_containers/food/condiment/enzyme, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"kDv" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Restaurant" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"kDE" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgreen"; + dir = 1 + }, +/area/station/medical/virology/lab) +"kEe" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/public/fitness) +"kEw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"kEO" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/service/theatre) +"kEV" = ( +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"kEX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard2) +"kFm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/public/fitness) +"kFr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"kFL" = ( +/obj/structure/table, +/obj/item/tank/internals/emergency_oxygen/nitrogen{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/tank/internals/emergency_oxygen/nitrogen{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/tank/internals/emergency_oxygen/nitrogen{ + layer = 3.1; + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/tank/internals/emergency_oxygen/plasma{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/tank/internals/emergency_oxygen/plasma{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/tank/internals/emergency_oxygen/plasma{ + layer = 3.1; + pixel_x = -6; + pixel_y = 10 + }, +/obj/machinery/camera{ + c_tag = "Medbay Storage"; + network = list("Medbay","SS13"); + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"kFS" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/permabrig) +"kGe" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen/multi{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"kGk" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"kGm" = ( +/obj/machinery/economy/atm/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"kGr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel, +/area/station/maintenance/starboard2) +"kGs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 = 9 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/public/locker) +"kGx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"kGy" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/old_detective) +"kGI" = ( +/obj/effect/turf_decal{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"kGM" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"kGW" = ( +/obj/machinery/door/poddoor/impassable/gamma, +/obj/structure/fans/tiny, +/obj/effect/decal/warning_stripes/red, +/turf/simulated/floor/plasteel/dark, +/area/station/security/storage) +"kHe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/service/hydroponics) +"kHq" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/snacks/candy/caramel, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"kHw" = ( +/obj/structure/table/wood, +/obj/item/paper/pamphlet/deltainfo, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"kHz" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "janitorshutters"; + name = "Janitor Shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/service/janitor) +"kHA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, +/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/plasteel/dark, +/area/station/security/evidence) +"kIl" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Brig HoS Office"; + sort_type_txt = "7" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/main) +"kIs" = ( +/obj/effect/decal/warning_stripes/south, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"kIt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"kIC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera{ + c_tag = "Brig Cell 2"; + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"kIL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"kIP" = ( +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"kJd" = ( +/obj/effect/decal/warning_stripes/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"kJV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel, +/area/station/hallway/primary/central/sw) +"kJY" = ( +/obj/structure/sign/security, +/turf/simulated/wall/r_wall, +/area/station/security/brig) +"kKj" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"kKs" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/processing) +"kKB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"kKH" = ( +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"kLf" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/photo_album, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/maintenance/old_detective) +"kLw" = ( +/obj/machinery/atmospherics/unary/tank/air, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"kLT" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"kMn" = ( +/obj/machinery/hologram/holopad{ + pixel_x = 16 + }, +/mob/living/simple_animal/pet/cat/Floppa, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"kMu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"kMx" = ( +/obj/machinery/light/directional/south, +/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/plasteel, +/area/station/science/toxins/mixing) +"kME" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/mug/sci, +/turf/simulated/floor/plasteel/white, +/area/station/science/break_room) +"kMH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"kNe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/range) +"kNg" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"kNj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"kNk" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 4; + pixel_x = 6 + }, +/obj/item/pen/red{ + pixel_y = 6; + pixel_x = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"kNn" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast north"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"kNu" = ( +/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" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"kNC" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/engine, +/area/station/science/explab) +"kNF" = ( +/obj/machinery/status_display/directional/south, +/obj/machinery/computer/monitor{ + dir = 1; + name = "Engineering Power Monitoring Console" + }, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/controlroom) +"kNU" = ( +/obj/machinery/light_construct/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"kOq" = ( +/obj/effect/decal/cleanable/dirt, +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"kOr" = ( +/obj/structure/table, +/obj/item/camera{ + name = "Autopsy Camera"; + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/autopsy_scanner{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/scalpel{ + pixel_y = 2 + }, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"kOs" = ( +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"kOA" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"kOD" = ( +/obj/machinery/bodyscanner, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"kOE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"kOW" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"kPd" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"kPm" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/decal/warning_stripes/red, +/obj/item/clothing/mask/balaclava, +/obj/machinery/firealarm/directional/east, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/storage) +"kPt" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"kPJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/portable/canister/carbon_dioxide, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"kQd" = ( +/obj/machinery/computer/prisoner{ + dir = 8 + }, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/warden) +"kQm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"kQt" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/engine, +/area/station/science/explab) +"kQN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera{ + c_tag = "Brig Cell 4"; + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"kQQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cryo) +"kRd" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"kRr" = ( +/obj/structure/table/glass, +/obj/item/storage/box/disks{ + pixel_y = 4; + pixel_x = -8 + }, +/obj/item/storage/box/disks{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/camera{ + c_tag = "Medbay Genetics"; + network = list("Medbay","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"kSc" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + 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/plasteel, +/area/station/engineering/tech_storage) +"kSk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"kSr" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel/white, +/area/station/science/research) +"kSu" = ( +/obj/effect/landmark/start/chef, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"kSQ" = ( +/obj/structure/sink/directional/east, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"kSW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"kTm" = ( +/obj/structure/table/wood, +/obj/random/figure, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"kTo" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Xenobiology Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"kTs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/starboard) +"kTw" = ( +/obj/machinery/fishtank/tank, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"kTR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"kTV" = ( +/obj/structure/toilet, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"kUe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Mining Dock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"kUB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"kUE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/security, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"kUF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"kUG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"kUQ" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/green/hollow, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"kUW" = ( +/obj/effect/decal/cleanable/dust, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"kUY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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/station/maintenance/starboard) +"kVf" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"kVr" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"kVB" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"kVK" = ( +/obj/structure/table/wood, +/obj/machinery/cell_charger, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"kWa" = ( +/obj/structure/table, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light/directional/north, +/obj/item/storage/toolbox/emergency{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage/secondary) +"kWd" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"kWj" = ( +/obj/machinery/door/airlock/security/glass, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"kWx" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"kWz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external{ + id_tag = "vir_int_door"; + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/machinery/access_button/east{ + autolink_id = "vir_int_button"; + name = "interior access button" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"kWB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/processing) +"kWD" = ( +/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/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"kWF" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"kWO" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/reversed, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"kXm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera{ + c_tag = "Brig Cell 1"; + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"kXM" = ( +/obj/structure/table/glass, +/obj/item/stack/packageWrap{ + pixel_y = 2 + }, +/obj/item/reagent_scanner/adv{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/item/reagent_containers/applicator{ + pixel_y = 4; + pixel_x = 16 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellowfull" + }, +/area/station/medical/chemistry) +"kXZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"kYX" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"kZc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"kZe" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/secondary) +"kZg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/freezer, +/area/station/medical/virology/lab) +"kZm" = ( +/obj/structure/window/reinforced, +/obj/structure/chair/office, +/turf/simulated/floor/plasteel, +/area/station/security/visitingroom) +"kZp" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"lai" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10; + color = "lightblue" + }, +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/landmark/spawner/rev, +/obj/machinery/light_switch/east, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"lam" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"laQ" = ( +/obj/machinery/camera{ + c_tag = "Engineering Storage"; + dir = 8; + network = list("Engineering","SS13") + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/decal/warning_stripes/yellow, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"laV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/electrical_shop) +"laY" = ( +/obj/item/flag/sec, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/processing) +"lbc" = ( +/obj/machinery/economy/atm/west, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) +"lbz" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"lbA" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/apmaint) +"lbT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"lcj" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/main) +"lcl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"lct" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"lcA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Court" + }, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"lcV" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/brig) +"ldm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"ldn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white, +/area/station/security/permabrig) +"lds" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/curtain/open/shower/security{ + icon_state = "closed" + }, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"ldC" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/brown, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"ldQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/electrical) +"ldZ" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/carpet/orange, +/area/station/service/bar/atrium) +"lee" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_y = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "chemdesk"; + name = "Chemistry Desk Shutters" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Chemistry Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/chemistry) +"les" = ( +/obj/structure/rack, +/obj/item/assembly/igniter{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/assembly/igniter{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/assembly/igniter{ + pixel_x = 2 + }, +/obj/item/assembly/igniter{ + pixel_y = -1 + }, +/obj/machinery/light_switch/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"ley" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel, +/area/station/service/theatre) +"leM" = ( +/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/wood/oak, +/area/station/service/theatre) +"leZ" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/turbine) +"lfc" = ( +/obj/structure/cable{ + 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/station/maintenance/apmaint) +"lfd" = ( +/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" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"lfg" = ( +/obj/machinery/door/airlock/bathroom{ + name = "Toilet" + }, +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/service/theatre) +"lfi" = ( +/obj/structure/table/wood, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/starboard) +"lfo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"lfz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark/nitrogen{ + temperature = 80 + }, +/area/station/science/xenobiology) +"lfQ" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"lgg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lgJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"lgO" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"lgQ" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"lhb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/maintenance/starboard2) +"lhn" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/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{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"lhu" = ( +/obj/machinery/chem_master/condimaster, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel, +/area/station/service/kitchen) +"lhF" = ( +/obj/machinery/door/airlock/virology, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/virology, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology) +"lhN" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"lhQ" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"lhR" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"lim" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"liC" = ( +/obj/machinery/light/directional/south, +/obj/machinery/economy/vending/snack, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) +"liD" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/tox, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"liZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) +"lja" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"ljm" = ( +/obj/structure/safe/floor, +/obj/item/reagent_containers/food/drinks/bottle/cognac, +/obj/item/reagent_containers/food/drinks/bottle/cognac, +/obj/item/reagent_containers/food/drinks/bottle/cognac, +/obj/item/reagent_containers/food/drinks/bottle/goldschlager, +/obj/item/reagent_containers/food/drinks/bottle/goldschlager, +/obj/item/reagent_containers/food/drinks/bottle/goldschlager, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/food/drinks/bottle/random_drink, +/obj/item/reagent_containers/food/drinks/bottle/random_drink, +/obj/item/reagent_containers/food/drinks/bottle/random_drink, +/obj/item/reagent_containers/food/drinks/bottle/random_drink, +/obj/item/reagent_containers/food/drinks/bottle/random_drink, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"ljq" = ( +/obj/structure/chair/office, +/obj/machinery/camera{ + c_tag = "Courtroom North" + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"ljM" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/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/plasteel/dark, +/area/station/security/range) +"ljY" = ( +/obj/machinery/door/window/classic/normal{ + name = "Virology Work Zone" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/virology, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology/lab) +"lke" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"lkf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/blue/partial{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"lkh" = ( +/obj/structure/filingcabinet/chestdrawer/autopsy, +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"lkt" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"lkD" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"lkK" = ( +/obj/machinery/camera{ + c_tag = "Medbay Hallway South-East"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"lkW" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/obj/structure/barricade/wooden, +/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/station/maintenance/old_kitchen) +"lkZ" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_containers/food/snacks/icecream/icecreamcone, +/obj/item/reagent_containers/food/snacks/icecream/icecreamcone, +/obj/item/reagent_containers/food/snacks/icecream/icecreamcone, +/obj/item/reagent_containers/food/snacks/icecream/icecreamcone, +/obj/item/reagent_containers/food/snacks/icecream, +/obj/item/reagent_containers/food/snacks/icecream, +/obj/item/reagent_containers/food/snacks/icecreamsandwich, +/obj/item/reagent_containers/food/snacks/icecreamsandwich, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/starboard2) +"lle" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"llm" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"llp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/cigbutt, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"llJ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"llR" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lmo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"lmt" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) +"lmA" = ( +/obj/structure/chair/sofa/pew/left, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/service/chapel) +"lmD" = ( +/obj/structure/table/glass, +/obj/machinery/light/directional/south, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_y = 4; + pixel_x = 12 + }, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"lmQ" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"lmY" = ( +/obj/structure/cable{ + 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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"lny" = ( +/obj/structure/cable{ + 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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"lnL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"lnO" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"lnW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/maintenance/fore) +"lnY" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/fsmaint) +"lnZ" = ( +/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/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/lobby) +"los" = ( +/obj/machinery/economy/vending/chemdrobe, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"loM" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/landmark/start/head_of_security, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"loS" = ( +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/old_detective) +"lpe" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/r_wall, +/area/station/security/processing) +"lpk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"lpo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/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/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"lpL" = ( +/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/plasteel{ + dir = 6; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/entry) +"lqJ" = ( +/obj/machinery/camera{ + c_tag = "Aft Starboard Solars" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm/directional/north, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"lqL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/controlroom) +"lrb" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/west) +"lrg" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"lrv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"lrx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/service/hydroponics) +"lrz" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/processing) +"lrN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"lsa" = ( +/obj/machinery/icemachine, +/obj/structure/sign/poster/official/random/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/starboard2) +"lsd" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/checkpoint/south) +"lse" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "lightblue" + }, +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/landmark/spawner/rev, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"lsu" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"lsv" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/security/lobby) +"lsz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/plating, +/area/station/maintenance/starboard) +"lsC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera{ + c_tag = "Brig Cell 3"; + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"lsG" = ( +/obj/machinery/camera{ + c_tag = "Restoraunt South"; + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"lsO" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/starboard) +"ltb" = ( +/obj/machinery/atmospherics/binary/valve{ + dir = 1; + name = "port to space" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"ltw" = ( +/obj/machinery/light/directional/east, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"ltA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"ltH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"ltQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/constructable_frame/machine_frame, +/obj/item/stock_parts/cell, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"ltX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"lus" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/explab) +"luE" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/item/paper/pamphlet/deltainfo{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit/maintenance) +"luJ" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/analyzer, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"lvb" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/medical/virology/lab) +"lvu" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"lvD" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"lvH" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat) +"lvJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"lvO" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"lvU" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer Requests Console"; + pixel_x = 30 + }, +/obj/machinery/light_switch/south, +/obj/machinery/computer/card/minor/cmo{ + dir = 8 + }, +/obj/machinery/keycard_auth/south{ + pixel_x = -8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"lvV" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"lwj" = ( +/obj/machinery/disposal, +/obj/machinery/light_switch/north, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/primary) +"lwn" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"lwr" = ( +/obj/machinery/atmospherics/portable/canister, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"lwx" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + name = "Virology Shutters"; + id_tag = "Virology2" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"lwE" = ( +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"lxh" = ( +/obj/structure/rack, +/obj/effect/decal/warning_stripes/southeast, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"lxi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"lxo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"lxC" = ( +/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/plasteel/white, +/area/station/service/kitchen) +"lxJ" = ( +/obj/structure/chair/comfy/brown, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"lxQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"lxV" = ( +/obj/structure/table/glass, +/obj/item/book/manual/barman_recipes, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/starboard) +"lyy" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"lyD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"lyJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/visitingroom) +"lyQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/maintenance/electrical) +"lzg" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"lzl" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"lzp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"lzG" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"lAk" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"lAm" = ( +/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/plating, +/area/station/maintenance/abandonedbar) +"lAq" = ( +/obj/structure/table/wood, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/storage) +"lAG" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lAM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/service/kitchen) +"lAO" = ( +/obj/structure/sink/kitchen/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lAU" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Detective" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/detective) +"lBf" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"lBi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/science, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel/white, +/area/station/science/break_room) +"lBu" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"lBT" = ( +/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage/secondary) +"lBW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"lBY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"lCh" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"lCu" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster/directional/north, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"lCy" = ( +/obj/machinery/door/airlock/vault, +/obj/structure/barricade/wooden, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"lCD" = ( +/turf/simulated/floor/plasteel, +/area/station/security/range) +"lCE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) +"lCR" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/welded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"lDc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage/secondary) +"lDp" = ( +/obj/structure/chair/sofa/left, +/turf/simulated/floor/plasteel/dark, +/area/station/service/theatre) +"lDq" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"lDP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/maintenance/fsmaint) +"lDQ" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"lDS" = ( +/obj/structure/closet/secure_closet{ + anchored = 1; + name = "Evidence Storage"; + req_access_txt = "4" + }, +/obj/item/restraints/handcuffs/pinkcuffs, +/obj/item/clothing/under/rank/security/officer, +/obj/item/clothing/under/rank/security/officer, +/obj/item/grenade/barrier, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/maintenance/starboard2) +"lEt" = ( +/obj/machinery/firealarm/directional/east, +/obj/item/kirbyplants, +/obj/machinery/camera{ + c_tag = "Chief Medical Officer's Office"; + dir = 8; + network = list("Medical","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"lEw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/public/locker) +"lEN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"lEP" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"lEV" = ( +/obj/machinery/newscaster/directional/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"lFv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"lFJ" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"lGu" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "paramedic"; + name = "Paramedic Garage" + }, +/obj/machinery/door_control/shutter/north{ + id = "paramedic"; + name = "Garage Door Control"; + req_access_txt = "66" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/paramedic) +"lHb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/security/visitingroom) +"lHp" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay2) +"lHr" = ( +/obj/structure/table/reinforced, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/turf/simulated/floor/plating, +/area/station/engineering/equipmentstorage) +"lHz" = ( +/obj/item/storage/box/monkeycubes/wolpincubes{ + pixel_x = -6 + }, +/obj/item/storage/box/monkeycubes/neaeracubes{ + pixel_x = 8 + }, +/obj/item/storage/box/monkeycubes/farwacubes{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/storage/box/monkeycubes/stokcubes{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"lHI" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"lHO" = ( +/obj/effect/decal/cleanable/ants, +/obj/structure/sign/poster/official/random/west, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"lIc" = ( +/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" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/hardsuitstorage) +"lIp" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"lIv" = ( +/obj/machinery/suit_storage_unit/clown, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"lIE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"lIH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/soap, +/obj/structure/sink/directional/east, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/service/kitchen) +"lIQ" = ( +/obj/machinery/suit_storage_unit/clown, +/obj/machinery/door_control/shutter/east{ + id = "Clown"; + name = "Clowns Privacy Shutters Control" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/service/clown) +"lIT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/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" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"lIX" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/ai_monitored/storage/eva) +"lJd" = ( +/obj/structure/rack, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/item/grenade/barrier{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/warden) +"lJf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/hologram/holopad, +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"lJk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"lJl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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" + }, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"lJu" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/soda{ + pixel_y = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/bar) +"lJP" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/hardsuitstorage) +"lKe" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/storage) +"lKp" = ( +/obj/machinery/atmospherics/portable/pump, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"lKI" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lKW" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"lLj" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 4; + location = "Kitchen" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/station/service/kitchen) +"lLM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"lLP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/junction, +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"lLS" = ( +/obj/structure/closet/emcloset, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"lMb" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/main) +"lMl" = ( +/turf/simulated/floor/carpet/arcade, +/area/station/maintenance/starboard) +"lMA" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "Warden"; + name = "Warden Privacy Shutters" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/warden) +"lMB" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/station/hallway/secondary/exit/maintenance) +"lMH" = ( +/obj/structure/table_frame/wood, +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"lMI" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/reagent_containers/spray/pestspray, +/obj/item/reagent_containers/spray/pestspray, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/cultivator, +/obj/item/cultivator, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/plant_analyzer, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"lML" = ( +/obj/machinery/economy/vending/clothing, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry) +"lMM" = ( +/obj/effect/spawner/random_barrier/wall_probably, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"lNj" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"lNx" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"lNO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/controlroom) +"lOk" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"lOm" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos) +"lOy" = ( +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"lOE" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/recharger/wallcharger{ + pixel_x = 35 + }, +/obj/effect/decal/warning_stripes/red, +/obj/item/clothing/mask/balaclava, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/storage) +"lOZ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + 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/station/maintenance/starboard) +"lPg" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + autolink_id = "co2_in"; + dir = 4; + icon_state = "on"; + on = 1; + pixel_y = 1 + }, +/turf/simulated/floor/engine/co2, +/area/station/engineering/atmos) +"lPi" = ( +/obj/effect/decal/cleanable/dirt, +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"lPm" = ( +/obj/machinery/gibber, +/turf/simulated/floor/plasteel, +/area/station/service/kitchen) +"lPp" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/chair/wood{ + dir = 4; + pixel_y = 5; + pixel_x = 12 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"lPy" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 2; + pixel_x = -5 + }, +/obj/item/flashlight/pen{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_x = 14; + pixel_y = 4 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"lPB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"lPK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"lPP" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/storage) +"lPW" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Containment Cells" + }, +/obj/machinery/door/firedoor, +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/virology, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"lPY" = ( +/obj/structure/closet/secure_closet/brig, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/prisonlockers) +"lQa" = ( +/obj/machinery/sleeper, +/obj/effect/decal/warning_stripes/blue/hollow, +/obj/machinery/camera{ + c_tag = "Medbay Treatment North"; + network = list("Medbay","SS13") + }, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"lQf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"lQk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/door_assembly/door_assembly_atmo, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"lQs" = ( +/obj/structure/table, +/obj/item/storage/box/cups{ + pixel_y = 2 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"lQw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/aft) +"lQA" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall9f"; + location = "hall9e" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"lQC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"lQE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"lQH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"lQN" = ( +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"lRb" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/storage) +"lRc" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"lRf" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"lRi" = ( +/obj/effect/decal/warning_stripes/blue, +/obj/structure/rack, +/obj/item/storage/firstaid/brute{ + pixel_y = 6 + }, +/obj/item/storage/firstaid/toxin{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"lSa" = ( +/obj/machinery/economy/arcade/claw, +/obj/machinery/light/directional/east, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"lSc" = ( +/obj/machinery/camera{ + c_tag = "Research South Hallway"; + dir = 4; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"lSu" = ( +/turf/simulated/wall/r_wall, +/area/station/science/test_chamber) +"lSB" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/carpet/orange, +/area/station/service/theatre) +"lSE" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"lSK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"lSQ" = ( +/obj/structure/showcase, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet/black, +/area/station/security/warden) +"lSZ" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"lTi" = ( +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"lTj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/damageturf, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"lTJ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"lTY" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/barricade/wooden, +/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/station/maintenance/library) +"lUd" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast north"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"lUm" = ( +/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/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"lUo" = ( +/obj/effect/landmark/start/bartender, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"lUw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "greenblue" + }, +/area/station/maintenance/abandoned_garden) +"lVg" = ( +/obj/docking_port/stationary{ + dwidth = 8; + height = 22; + id = "syndicate_nw"; + name = "northwest of station"; + width = 18 + }, +/turf/space, +/area/space) +"lVl" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"lVR" = ( +/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/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"lWo" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/reflector/box, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"lWq" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/maintenance/starboard2) +"lWQ" = ( +/obj/structure/chair/sofa/bench/left{ + cover_color = "#68452a" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"lXP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/visitingroom) +"lYd" = ( +/obj/structure/safe, +/obj/item/soap/syndie, +/obj/item/grenade/bananade, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"lYg" = ( +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"lYz" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"lYS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"lZc" = ( +/obj/structure/table/wood/poker, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/abandonedbar) +"lZm" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"lZR" = ( +/obj/structure/sign/radiation/rad_area, +/turf/simulated/wall/r_wall, +/area/station/engineering/controlroom) +"maf" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"mai" = ( +/obj/item/kirbyplants, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/processing) +"mak" = ( +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"mar" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"maI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/storage) +"maL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "restaurant"; + name = "Restaurant Shutters" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"mbp" = ( +/obj/structure/disposalpipe/sortjunction/reversed{ + name = "Morgue"; + sort_type_txt = "25"; + dir = 1 + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"mbz" = ( +/obj/machinery/button/windowtint/east{ + id = "Cloning Room" + }, +/obj/machinery/camera{ + c_tag = "Medbay Cloning"; + network = list("Medical","SS13"); + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"mbB" = ( +/obj/machinery/light_switch/south, +/obj/machinery/light/directional/south, +/obj/machinery/button/windowtint/south{ + dir = 8; + id = "Chapel"; + pixel_x = -8 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"mbC" = ( +/obj/machinery/suit_storage_unit/cmo, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"mbN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/main) +"mbO" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"mbY" = ( +/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" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft) +"mcg" = ( +/obj/item/transfer_valve{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/transfer_valve{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/transfer_valve{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/table, +/obj/item/transfer_valve{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"mch" = ( +/obj/effect/decal/cleanable/ants, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"mcz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"mcD" = ( +/turf/space, +/area/station/public/fitness) +"mcM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"mcQ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/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, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"mdd" = ( +/obj/structure/table/wood, +/obj/item/toy/russian_revolver, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"mdg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel/white, +/area/station/science/research) +"meB" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + name = "Virology Shutters"; + id_tag = "Virology1" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"meJ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9; + color = "lightblue" + }, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"meP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/sortjunction/reversed{ + dir = 4; + name = "Disposals Maint"; + sort_type_txt = "1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"mfc" = ( +/turf/simulated/wall, +/area/station/hallway/primary/central/nw) +"mfr" = ( +/turf/simulated/wall/r_wall, +/area/station/security/execution) +"mfB" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"mfI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"mfJ" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "escape" + }, +/area/station/bridge/checkpoint/south) +"mfW" = ( +/obj/vehicle/janicart{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"mga" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/urinal{ + pixel_y = 28 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"mgl" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"mgx" = ( +/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/obj/machinery/light/directional/south, +/obj/structure/sign/poster/official/random/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage/secondary) +"mgK" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/starboard) +"mhu" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/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/plasteel/dark, +/area/station/security/evidence) +"mhv" = ( +/obj/structure/computerframe, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/old_detective) +"mhy" = ( +/obj/effect/decal/cleanable/dirt, +/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/station/maintenance/starboard) +"mhD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"mhU" = ( +/obj/item/radio/intercom/directional/east, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/service/expedition) +"mit" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public{ + name = "Bar" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"miw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/oak, +/area/station/service/library) +"miH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"miL" = ( +/obj/machinery/door_timer/cell_1{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"miU" = ( +/obj/structure/chair/sofa/pew/right, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/service/chapel) +"miY" = ( +/obj/structure/table/reinforced, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"miZ" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"mjD" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/door/firedoor, +/obj/item/clipboard{ + pixel_y = 3 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_y = 3 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_y = 6 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_y = 9 + }, +/obj/machinery/light/directional/east, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"mjH" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/engineering/atmos/control) +"mkb" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"mkp" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"mkG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"mkI" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"mkJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"mkW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/economy/vending/wallmed{ + name = "Emergency NanoMed"; + pixel_x = 24 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"mli" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/permabrig) +"mlR" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "Kitchen Dinner Windows"; + name = "Kitchen Shutters" + }, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/snacks/burrito, +/obj/item/reagent_containers/food/snacks/burrito{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Kitchen Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/service/kitchen) +"mlS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"mmg" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prisonlockers) +"mmC" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"mmE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"mmK" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1; + color = "lightblue" + }, +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/landmark/spawner/rev, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"mmP" = ( +/obj/item/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/engineering/atmos/control) +"mmY" = ( +/obj/structure/table/reinforced, +/obj/item/key/security, +/obj/item/toy/figure/crew/warden, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/warden) +"mng" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/food/snacks/candy/cotton/blue, +/obj/item/reagent_containers/food/snacks/candy/cotton/pink, +/obj/item/reagent_containers/food/snacks/candy/cotton/rainbow, +/obj/item/reagent_containers/food/snacks/candy/cotton/yellow, +/obj/structure/sign/poster/official/random/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "cmo" + }, +/area/station/maintenance/starboard2) +"mnp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"mnt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/aft) +"mnw" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/main) +"mnK" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"mod" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/research) +"moJ" = ( +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Head of Security's Office"; + pixel_y = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security Requests Console"; + pixel_x = 30 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"moT" = ( +/obj/machinery/cryopod/right, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"mpe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/genetics) +"mpi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/dispenser, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"mpk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"mpz" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"mpS" = ( +/obj/machinery/atmospherics/portable/canister/carbon_dioxide, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"mpV" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/turf/simulated/floor/plasteel/white, +/area/station/science/toxins/mixing) +"mqn" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/requests_console{ + department = "Engineering"; + departmentType = 3; + name = "Engineering Requests Console"; + pixel_y = -30 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"mqr" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"mqx" = ( +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"mqy" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"mqF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"mqG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/visitingroom) +"mqH" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast north"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"mqR" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small/directional/east, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"mrg" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast north"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"mrn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"mrw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"mrF" = ( +/turf/simulated/wall/r_wall, +/area/station/medical/medbay2) +"mrQ" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"mrW" = ( +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"msl" = ( +/obj/item/radio/beacon, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"msm" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"msu" = ( +/obj/structure/target_stake, +/obj/machinery/magnetic_module, +/obj/effect/decal/warning_stripes/red, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"msA" = ( +/obj/effect/turf_decal/bot, +/obj/structure/punching_bag, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"mtt" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 10 + }, +/obj/item/stack/sheet/metal{ + amount = 10 + }, +/obj/machinery/newscaster/directional/south, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/gas/oxygen, +/obj/item/grenade/gas/oxygen, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"mtx" = ( +/obj/item/radio/beacon, +/turf/simulated/floor/plasteel/airless, +/area/station/science/toxins/test) +"mtz" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"mtC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"mtE" = ( +/obj/structure/sign/vacuum/external, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/supply/storage) +"mtM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/paramedic) +"mtQ" = ( +/turf/simulated/wall, +/area/station/medical/surgery/secondary) +"mui" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 9 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"mux" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"muI" = ( +/obj/machinery/hologram/holopad, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"muJ" = ( +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "HoS" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"muR" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/medical/chemistry, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"muX" = ( +/turf/simulated/wall/r_wall, +/area/station/security/range) +"mwn" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"mwo" = ( +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"mwp" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/storage) +"mwz" = ( +/obj/structure/table/wood, +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"mwK" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"mxd" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera{ + c_tag = "Brig Cell Block A North"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"mxk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"mxm" = ( +/obj/machinery/door/airlock/atmos/glass{ + heat_proof = 1; + name = "Supermatter Chamber"; + id_tag = "smint"; + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"mxB" = ( +/obj/machinery/camera{ + c_tag = "Locker Room West"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"mxE" = ( +/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{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"mxG" = ( +/obj/effect/decal/warning_stripes/north, +/obj/item/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"myf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/station/hallway/primary/fore) +"myi" = ( +/obj/item/vending_refill/cola, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"myy" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) +"myI" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"myP" = ( +/obj/item/stack/rods/ten, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"myR" = ( +/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/plating, +/area/station/maintenance/apmaint) +"mzd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"mzk" = ( +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"mzt" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/service/clown) +"mzE" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat{ + pixel_x = 4 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"mzZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"mAp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"mAs" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"mAw" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"mAy" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"mAz" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"mAB" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/damaged_window, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"mAC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"mAW" = ( +/obj/structure/closet/walllocker/medlocker/west, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"mBB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/hardsuitstorage) +"mBY" = ( +/obj/machinery/door/airlock/engineering{ + name = "Fore Starboard Solar Access" + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"mCt" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/plating, +/area/station/maintenance/abandoned_garden) +"mCv" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) +"mCB" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera{ + c_tag = "Brig Labor Camp Airlock" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"mCN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/tech_storage) +"mCZ" = ( +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "assolar_btn_ext"; + ext_door_link_id = "assolar_door_ext"; + int_button_link_id = "assolar_btn_int"; + int_door_link_id = "assolar_door_int"; + req_access_txt = "13"; + vent_link_id = "assolar_vent"; + pixel_x = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "assolar_vent"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"mDf" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) +"mDl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"mDm" = ( +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"mDu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"mEm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/break_room) +"mEz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel, +/area/station/service/hydroponics) +"mEV" = ( +/obj/machinery/light/directional/east, +/obj/structure/closet/walllocker/medlocker/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"mFh" = ( +/obj/machinery/smartfridge/secure/chemistry/virology, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"mFi" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"mFy" = ( +/obj/machinery/status_display/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"mGG" = ( +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "orangecorner" + }, +/area/station/hallway/primary/aft) +"mGS" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"mHA" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"mHK" = ( +/obj/effect/spawner/random_barrier/possibly_welded_airlock, +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"mHW" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/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" + }, +/turf/simulated/floor/carpet, +/area/station/security/permabrig) +"mIh" = ( +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "n2_sensor" + }, +/turf/simulated/floor/engine/n2, +/area/station/engineering/atmos) +"mIj" = ( +/obj/structure/sink/kitchen/east, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/plasteel/dark, +/area/station/security/interrogation) +"mIK" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 4 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"mIZ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/bridge/checkpoint/south) +"mJi" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice{ + pixel_y = 2 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/maintenance/starboard) +"mJr" = ( +/obj/structure/plasticflaps, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"mKd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"mKK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"mKQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"mKU" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/brig) +"mLg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"mLm" = ( +/obj/structure/sign/poster/official/random/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"mMc" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 9 + }, +/area/station/security/interrogation) +"mMh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"mMm" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"mMt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"mMR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/genetics) +"mNf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"mNk" = ( +/obj/effect/decal/warning_stripes/red/partial, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/main) +"mNz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/service/chapel) +"mNC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/toxins/mixing) +"mNS" = ( +/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/station/maintenance/starboard) +"mOB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal) +"mOS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/brig) +"mOW" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/syringes, +/obj/item/storage/box/syringes, +/obj/item/reagent_containers/dropper/precision, +/obj/item/reagent_containers/dropper/precision, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/turf/simulated/floor/engine, +/area/station/science/explab) +"mPe" = ( +/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/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"mPO" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) +"mPR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"mPT" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/engineering/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"mPY" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"mPZ" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "greenblue" + }, +/area/station/maintenance/abandoned_garden) +"mQD" = ( +/obj/machinery/atmospherics/portable/canister/oxygen{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes/blue, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/storage/secondary) +"mQE" = ( +/obj/machinery/economy/vending/snack, +/obj/machinery/economy/vending/wallmed/directional/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/storage) +"mQK" = ( +/obj/machinery/door/airlock/external{ + id_tag = "fssolar_door_int"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/access_button/north{ + autolink_id = "fssolar_btn_int"; + name = "interior access button"; + req_access_txt = "13" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"mQL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + 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/transparent/glass/reinforced, +/area/station/maintenance/starboard2) +"mQT" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/storage) +"mRb" = ( +/obj/machinery/airlock_controller/access_controller{ + ext_button_link_id = "turbine_btn_ext"; + ext_door_link_id = "turbine_door_ext"; + int_button_link_id = "turbine_btn_int"; + int_door_link_id = "turbine_door_int"; + name = "Turbine Access Console"; + pixel_x = 8; + pixel_y = -26; + req_access_txt = "12" + }, +/obj/machinery/ignition_switch{ + id = "Incinerator"; + pixel_x = 8; + pixel_y = -36 + }, +/obj/machinery/door_control/shutter{ + id = "turbinevent"; + name = "Turbine Vent Control"; + pixel_x = -8; + pixel_y = -36; + req_access_txt = "12" + }, +/obj/machinery/door_control/shutter/south{ + id = "auxincineratorvent"; + name = "Auxiliary Vent Control"; + pixel_x = -8 + }, +/obj/machinery/computer/turbine_computer{ + dir = 1; + id = "incineratorturbine" + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "caution" + }, +/area/station/maintenance/turbine) +"mRk" = ( +/obj/structure/sign/poster/official/random/north, +/obj/machinery/camera{ + c_tag = "Theatre North" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"mRq" = ( +/obj/effect/turf_decal{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"mRz" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat) +"mRI" = ( +/turf/simulated/wall, +/area/station/maintenance/virology_maint) +"mRK" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology) +"mRM" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/office) +"mRU" = ( +/obj/machinery/status_display/directional/west, +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/main) +"mRX" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) +"mSs" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/main) +"mSw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/science/server) +"mSF" = ( +/obj/effect/turf_decal{ + dir = 1 + }, +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"mSI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"mSQ" = ( +/obj/machinery/light/directional/north, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"mSU" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "BrigLeft" + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"mSZ" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/maintenance/electrical) +"mTi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"mTo" = ( +/obj/machinery/economy/vending/hydronutrients, +/turf/simulated/floor/plating, +/area/station/maintenance/abandoned_garden) +"mTs" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"mTu" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"mTw" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"mTB" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"mTK" = ( +/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/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/maintenance/starboard2) +"mTQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"mUc" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"mUq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"mUr" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/west, +/obj/item/book/random, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/turf/simulated/floor/carpet, +/area/station/service/theatre) +"mUU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"mUY" = ( +/obj/machinery/computer/brigcells{ + dir = 8 + }, +/obj/machinery/door_control/shutter/west{ + id = "hos_secure_doors"; + pixel_x = 24; + pixel_y = 6 + }, +/obj/machinery/keycard_auth/east{ + pixel_y = -6 + }, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"mVc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Court" + }, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"mVx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"mVV" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"mWa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"mWM" = ( +/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, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"mWO" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"mXk" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "Bar"; + name = "Bar Privacy Shutters" + }, +/turf/simulated/floor/plating, +/area/station/service/bar) +"mXo" = ( +/obj/structure/chair/sofa/bench/right{ + cover_color = "#68452a"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"mXD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"mYk" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/hardsuitstorage) +"mYq" = ( +/obj/machinery/door/firedoor/closed, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"mYH" = ( +/obj/machinery/newscaster/directional/west, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"mYS" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5; + color = "lightblue" + }, +/obj/structure/morgue, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"mYX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/mob/living/simple_animal/hostile/retaliate/goat/chef, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/service/kitchen) +"mZk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/general_air_control/large_tank_control{ + autolink_sensors = list("tox_sensor"="Tank"); + dir = 4; + inlet_injector_autolink_id = "tox_in"; + name = "Toxin Supply Control"; + outlet_vent_autolink_id = "tox_out" + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/engineering/atmos) +"mZo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"mZv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/southeastcorner, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"mZR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"mZS" = ( +/obj/effect/decal/cleanable/dirt, +/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/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"mZX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"mZY" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"nae" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"naq" = ( +/obj/structure/cable/yellow, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/power/emitter{ + anchored = 1; + state = 2 + }, +/turf/simulated/floor/plating/airless, +/area/station/engineering/control) +"naA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/storage/box/matches, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"naD" = ( +/obj/machinery/light/directional/south, +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/engineering/atmos/control) +"naE" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"naN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/portable/canister/nitrogen, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"naX" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/turret_protected/ai) +"naY" = ( +/obj/machinery/door/airlock/external{ + id_tag = "fssolar_door_ext"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/access_button/south{ + autolink_id = "fssolar_btn_ext"; + name = "exterior access button"; + req_access_txt = "10;13" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"nbz" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/processing) +"nbG" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/southwestcorner, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"nch" = ( +/obj/machinery/door/airlock/virology{ + autoclose = 0; + id_tag = "virolab_door_ext"; + locked = 1; + name = "Virology Lab External Airlock" + }, +/obj/machinery/access_button/south{ + layer = 3.6; + autolink_id = "virolab_btn_ext"; + name = "Virology Lab Access Button"; + req_access_txt = "39" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/virology, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology/lab) +"ncs" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/grass, +/area/station/science/research) +"nct" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/structure/sign/poster/official/random/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"ncG" = ( +/obj/item/kirbyplants, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"ncN" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"ncO" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/station/command/office/hos) +"ncQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/storage) +"ncT" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/chem_heater, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"nda" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/window/reinforced/tinted/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"ndr" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"ndD" = ( +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"ndH" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/gray, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"ndT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"ndW" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA" + }, +/turf/simulated/wall, +/area/station/hallway/secondary/entry) +"neI" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Patients Room" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"neQ" = ( +/obj/machinery/hologram/holopad, +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft) +"nfe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"nfl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"nfs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"nft" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"nfU" = ( +/obj/machinery/camera{ + c_tag = "Brig Hall North-East" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"nfX" = ( +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/processing) +"ngc" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/plating, +/area/station/maintenance/abandoned_garden) +"ngp" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) +"ngP" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"ngQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/folder/red, +/obj/item/folder/red{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/folder/red{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/folder/red{ + pixel_x = 1; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/old_detective) +"ngU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/wall/r_wall, +/area/station/engineering/break_room) +"ngW" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/structure/curtain/open, +/obj/item/bedsheet/medical{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"ngX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"nhh" = ( +/obj/structure/cable{ + 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/sortjunction{ + name = "CE's Junction"; + sort_type_txt = "5" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"nhk" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"nhn" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 7; + height = 18; + id = "trade_dock"; + name = "port bay 4 at Kerberos"; + width = 15; + dheight = 1 + }, +/turf/space, +/area/space) +"nho" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/smartfridge/foodcart, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"nhI" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/maintenance/electrical) +"nij" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/maintenance/apmaint) +"niB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/brig) +"niP" = ( +/obj/machinery/economy/vending/autodrobe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"njn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"njp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) +"njr" = ( +/obj/structure/cable{ + 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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"njI" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + location = "Science" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/obj/machinery/door/window/classic/normal{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mule_bot, +/turf/simulated/floor/plating, +/area/station/science/break_room) +"njJ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags, +/obj/item/assembly/signaler{ + code = 6; + frequency = 1445 + }, +/obj/machinery/door_control/shutter/west{ + id = "justice_blast"; + name = "Space Vent"; + req_one_access_txt = "2" + }, +/obj/machinery/flasher_button{ + id = "Execution"; + pixel_x = -24; + pixel_y = 7 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"njM" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/warden) +"njV" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/bottle/bottleofnothing{ + pixel_y = 19 + }, +/obj/item/grown/bananapeel, +/obj/item/reagent_containers/food/drinks/bottle/cream{ + pixel_x = -9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"nkm" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"nkp" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"nkB" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/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/plasteel{ + icon_state = "white" + }, +/area/station/medical/cryo) +"nkM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"nls" = ( +/obj/machinery/atmospherics/binary/pump{ + name = "Port to Turbine" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/maintenance/turbine) +"nlB" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/visitingroom) +"nlN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"nlP" = ( +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/ants, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"nlU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/plasteel/dark, +/area/station/security/permabrig) +"nmg" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start/engineer, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"nmj" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/rack, +/obj/item/hand_labeler, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"nmk" = ( +/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/wood/oak, +/area/station/maintenance/library) +"nmw" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/economy/slot_machine, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"nmA" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/obj/machinery/light/directional/north, +/turf/simulated/floor/engine, +/area/station/science/explab) +"nmK" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"nmR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"nnn" = ( +/obj/structure/table/glass, +/obj/item/defibrillator/loaded{ + layer = 4; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"nnu" = ( +/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 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall3"; + location = "hall2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/north) +"nnK" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"nnL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/robotics, +/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/plasteel/white, +/area/station/science/robotics/chargebay) +"nnM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + id_tag = "pub_room"; + name = "Public Meeting Room" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/science/robotics/showroom) +"nnZ" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/full/reinforced, +/turf/simulated/floor/grass/no_creep, +/area/station/hallway/secondary/exit) +"non" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"now" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"noJ" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/brig) +"noP" = ( +/obj/machinery/camera{ + c_tag = "Cargo Disposals Sorting"; + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/recharger, +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"noV" = ( +/mob/living/simple_animal/mouse/brown, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"noW" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/station/science/break_room) +"nph" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"npj" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"npk" = ( +/turf/simulated/wall, +/area/station/public/sleep_female) +"npl" = ( +/obj/effect/turf_decal{ + dir = 9 + }, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel/white, +/area/station/science/storage) +"npp" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"npH" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/classic/normal{ + dir = 1; + name = "Cryo Tank Storage" + }, +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"nqa" = ( +/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/mineral/tranquillite, +/area/station/service/mime) +"nqj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/mob/living/simple_animal/possum/Poppy, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/hardsuitstorage) +"nqn" = ( +/obj/effect/decal/warning_stripes/red/hollow, +/obj/structure/rack/gunrack, +/obj/item/gun/projectile/shotgun/riot{ + pixel_x = -2 + }, +/obj/item/gun/projectile/shotgun/riot, +/obj/item/gun/projectile/shotgun/riot{ + pixel_x = 2 + }, +/obj/item/gun/projectile/shotgun/riot{ + pixel_x = 4 + }, +/obj/item/gun/projectile/shotgun/riot{ + pixel_x = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"nqp" = ( +/obj/structure/lattice, +/obj/item/toy/plushie/carpplushie/pink, +/turf/space, +/area/space/nearstation) +"nqJ" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/station/security/permabrig) +"nra" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/public/sleep) +"nri" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/machinery/alarm/directional/south, +/obj/effect/landmark/start/security_officer, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/storage) +"nrp" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"nrq" = ( +/obj/item/flag/nt, +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/main) +"nrz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"nrR" = ( +/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/machinery/door/airlock{ + name = "Custodial Closet" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/service/janitor, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/service/janitor) +"nsd" = ( +/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/plasteel{ + icon_state = "red" + }, +/area/station/security/processing) +"nsg" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/spawner/window, +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/grass/no_creep, +/area/station/medical/sleeper) +"nsi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"nsL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"nsP" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/permabrig) +"ntt" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/economy/vending/chinese, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"ntJ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/structure/sign/poster/official/random/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"ntR" = ( +/obj/structure/table/glass, +/obj/machinery/cell_charger{ + pixel_y = 2; + pixel_x = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"num" = ( +/obj/effect/decal/warning_stripes/red/partial, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"nuF" = ( +/obj/structure/rack, +/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" + }, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"nvd" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/machinery/newscaster/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"nvh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/engineering/hardsuitstorage) +"nvl" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"nvN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"nvQ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/west) +"nvW" = ( +/obj/structure/closet, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/visitingroom) +"nwe" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/nw) +"nwm" = ( +/obj/structure/table/wood, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/ashtray/bronze{ + pixel_x = -6 + }, +/obj/item/storage/fancy/cigarettes/cigpack_carp{ + pixel_x = 8; + pixel_y = 2 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"nwu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"nwK" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay2) +"nwW" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/spray/cleaner{ + pixel_y = 12; + pixel_x = -8 + }, +/obj/item/kitchen/utensil/fork, +/obj/item/instrument/bikehorn{ + pixel_y = -3 + }, +/obj/machinery/light/nightshifted/west, +/turf/simulated/floor/plasteel/dark, +/area/station/security/interrogation) +"nwY" = ( +/obj/effect/landmark/start/coroner, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"nwZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"nxa" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"nxx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"nxy" = ( +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"nxD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"nxN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"nxO" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/genetics, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/science/research) +"nyq" = ( +/turf/simulated/wall/r_wall, +/area/station/security/visitingroom) +"nyt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"nyB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"nyK" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"nyZ" = ( +/obj/structure/sink/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"nza" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/bridge) +"nzd" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/closet/firecloset, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"nzm" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"nzw" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/genetics) +"nzL" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"nzS" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"nzV" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "Kitchen Windows"; + name = "Kitchen Privacy Shutters" + }, +/turf/simulated/floor/plating, +/area/station/service/kitchen) +"nAf" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"nAx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"nAV" = ( +/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/storage/secondary) +"nAW" = ( +/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" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/lobby) +"nAX" = ( +/obj/machinery/door/airlock/external{ + id_tag = "assolar_door_int"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/north, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/access_button/west{ + autolink_id = "assolar_btn_int"; + name = "interior access button"; + req_access_txt = "10;13" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"nAZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"nBa" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"nBc" = ( +/turf/simulated/wall/r_wall, +/area/station/maintenance/medmaint) +"nBi" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/electrical_shop) +"nBm" = ( +/obj/structure/engineeringcart, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/maintenance/electrical) +"nBv" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"nBC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/maintenance/starboard2) +"nBF" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/brig) +"nBM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/nw) +"nBN" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"nBO" = ( +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"nBP" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/light_switch/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"nBZ" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/stamp/rd, +/obj/item/paper/monitorkey{ + pixel_x = -14 + }, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/rd) +"nCq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"nCt" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast north"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"nCu" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"nCy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"nCK" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"nCY" = ( +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"nDt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"nDu" = ( +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/hallway/primary/starboard) +"nDH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel/white, +/area/station/science/research) +"nDZ" = ( +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"nEe" = ( +/obj/item/kirbyplants, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"nEn" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/genetics) +"nEp" = ( +/obj/machinery/power/apc/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"nEq" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 2; + pixel_x = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"nEM" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"nFa" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"nFd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/officetoys, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/old_detective) +"nFi" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"nFk" = ( +/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 = 9 + }, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"nFu" = ( +/obj/machinery/gateway, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/expedition) +"nFv" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"nFK" = ( +/obj/structure/weightmachine/weightlifter, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/security/permabrig) +"nFM" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"nFN" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/ai_monitored/storage/eva) +"nGd" = ( +/obj/effect/decal/warning_stripes/yellow, +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"nGy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay2) +"nGR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"nHh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"nHt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) +"nHv" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/syndicatebomb/training, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/range) +"nHK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 6; + pixel_x = -6; + initialized = 1; + volume = 0 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 6; + pixel_x = 8; + initialized = 1; + volume = 0 + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/aft) +"nHS" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"nHT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/abandoned_garden) +"nIc" = ( +/obj/machinery/camera{ + c_tag = "Engineering Break Room"; + dir = 8; + network = list("SS13","Security") + }, +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/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/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"nIl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/classic/normal{ + name = "Virology Work Zone" + }, +/obj/structure/disposalpipe/segment, +/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/mapping_helpers/airlock/windoor/access/any/medical/virology, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"nIm" = ( +/obj/structure/cable{ + 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 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"nIr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"nIw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"nIH" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/fitness) +"nIM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"nJn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"nJw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/permabrig) +"nJC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/interrogation/observation) +"nJW" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Science Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"nKf" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast west"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"nKj" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/security/main) +"nKm" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"nKs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"nKw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"nKz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/control) +"nKI" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"nKZ" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"nLi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"nLp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood/cherry, +/area/station/service/hydroponics) +"nLy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/toxins/mixing) +"nLA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"nLC" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/break_room) +"nLL" = ( +/obj/machinery/light/directional/north, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/public/fitness) +"nLW" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/maintenance/electrical) +"nLX" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/processing) +"nMa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/wall, +/area/station/public/fitness) +"nMc" = ( +/obj/machinery/flasher/portable, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"nMg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/station/security/permabrig) +"nMl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"nMm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"nMo" = ( +/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/station/maintenance/starboard2) +"nME" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"nMH" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"nMN" = ( +/obj/machinery/camera{ + c_tag = "Departure Lounge East"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"nMR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/extinguisher, +/obj/item/clothing/mask/gas, +/obj/item/grenade/chem_grenade/firefighting, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"nNb" = ( +/obj/item/pipe_meter, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating/airless, +/area/station/medical/virology/lab) +"nNu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"nNv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit/maintenance) +"nNA" = ( +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "EscapeLockdown"; + name = "Escape Shuttle Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "ShuttleKPP" + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 8; + name = "Security Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/general{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluefull" + }, +/area/station/bridge/checkpoint/south) +"nNB" = ( +/obj/structure/table/glass, +/obj/item/flashlight/lamp{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology) +"nNM" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/equipmentstorage) +"nNR" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/structure/dispenser/oxygen, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"nNZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"nOe" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"nOf" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/station/security/permabrig) +"nOL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"nOO" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"nOP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit/maintenance) +"nPe" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"nPi" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"nPp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/service/hydroponics) +"nQa" = ( +/obj/machinery/alarm/directional/south, +/obj/structure/table, +/obj/item/storage/belt/medical{ + pixel_y = 10 + }, +/obj/item/storage/belt/medical{ + pixel_y = 8 + }, +/obj/item/storage/belt/medical{ + pixel_y = 6 + }, +/obj/item/storage/belt/medical{ + pixel_y = 4 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/storage/belt/medical, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"nQF" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellowcorner"; + dir = 4 + }, +/area/station/medical/chemistry) +"nQL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"nQM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/apmaint) +"nRd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/red/partial{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/warden) +"nRv" = ( +/obj/structure/closet/secure_closet/freezer/fridge/open, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/white, +/area/station/security/permabrig) +"nRx" = ( +/obj/machinery/power/terminal, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"nRz" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/mapping_helpers/airlock/access/any/science/research, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"nRA" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/landmark/start/geneticist, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/science/genetics) +"nRE" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/fore) +"nRQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"nSd" = ( +/turf/simulated/wall/r_wall, +/area/station/command/office/hos) +"nSl" = ( +/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/plating, +/area/station/maintenance/port) +"nSv" = ( +/obj/machinery/economy/vending/cola, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/bridge) +"nSC" = ( +/turf/simulated/wall/r_wall, +/area/station/command/office/cmo) +"nSQ" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"nSV" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"nTt" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"nTE" = ( +/turf/simulated/wall, +/area/station/medical/break_room) +"nTR" = ( +/obj/machinery/camera{ + c_tag = "Central Ring Hallway West"; + dir = 8 + }, +/obj/machinery/ai_status_display/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) +"nTW" = ( +/obj/effect/decal/cleanable/dirt, +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"nUc" = ( +/obj/structure/table/reinforced, +/obj/structure/reagent_dispensers/spacecleanertank/west, +/obj/item/storage/box/mousetraps, +/obj/item/storage/box/mousetraps{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/restraints/legcuffs/beartrap, +/obj/item/restraints/legcuffs/beartrap, +/obj/item/restraints/legcuffs/beartrap, +/obj/item/restraints/legcuffs/beartrap, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purple" + }, +/area/station/service/janitor) +"nUm" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/controlroom) +"nUp" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/command/office/rd) +"nUq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"nUx" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"nUC" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Restaurant" + }, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"nUR" = ( +/obj/machinery/camera{ + c_tag = "Supermatter North"; + network = list("SS13","Engineering") + }, +/obj/structure/reflector/box, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"nVf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"nVq" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/gps/engineering, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"nVz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"nVT" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"nWe" = ( +/obj/machinery/door/poddoor/multi_tile/two_tile_hor{ + id_tag = "unknowndoor" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"nWg" = ( +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/control) +"nWx" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/crew/ce, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/circuitboard/autolathe, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/command/office/ce) +"nWy" = ( +/obj/machinery/door_timer/cell_4{ + pixel_x = 32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"nWC" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "Warden"; + name = "Warden Privacy Shutters" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/warden) +"nWF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/processing) +"nWI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"nWJ" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"nXa" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard{ + pixel_y = 3 + }, +/obj/item/folder/white{ + pixel_y = 2 + }, +/obj/item/toy/figure/crew/md{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"nXr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/engine{ + icon_state = "rampbottom"; + name = "reinforced stairs" + }, +/area/station/science/test_chamber) +"nXw" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/stamp/warden, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/warden) +"nXD" = ( +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"nXF" = ( +/obj/machinery/door/airlock/external{ + id_tag = "arrivalsn_door_ext" + }, +/obj/machinery/access_button/east{ + autolink_id = "arrivalsn_btn_ext"; + name = "exterior access button" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"nXR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"nYe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"nYh" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"nYm" = ( +/obj/structure/sign/radiation/rad_area{ + pixel_x = -32 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/gravitygenerator) +"nYw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"nYF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"nYT" = ( +/obj/machinery/computer/brigcells, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/warden) +"nZg" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"nZo" = ( +/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/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"nZs" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"oae" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"oan" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/warning_stripes/south, +/obj/machinery/economy/vending/wallmed/directional/south, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"oav" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/peppermill, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/simulated/floor/plasteel/white, +/area/station/security/permabrig) +"oaK" = ( +/obj/structure/girder, +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"oaR" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"obk" = ( +/obj/machinery/door/airlock/engineering, +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"obq" = ( +/obj/structure/chair/sofa/pew/right, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/service/chapel) +"obK" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/science/genetics) +"obO" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/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/plasteel/dark, +/area/station/science/server) +"obW" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplefull" + }, +/area/station/science/xenobiology) +"oci" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ocr" = ( +/obj/effect/spawner/random_spawners/cobweb_left_rare, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"ocu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"ocx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/station/legal/courtroom) +"ocz" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "neutral" + }, +/area/station/security/permabrig) +"ocA" = ( +/obj/structure/closet/radiation, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"ocJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/station/maintenance/starboardsolar) +"odQ" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/warning_stripes/southwest, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"odS" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"odU" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/closet/bombcloset, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/newscaster/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"oey" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"oeB" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + autolink_id = "air_in"; + dir = 8; + icon_state = "on"; + on = 1; + volume_rate = 200 + }, +/turf/simulated/floor/engine/air, +/area/station/engineering/atmos) +"oeG" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"oeH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/reagent_containers/glass/rag, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fsmaint) +"oeN" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency/old{ + pixel_y = 2 + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"oeP" = ( +/obj/item/paper/pamphlet/deltainfo, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit/maintenance) +"oeY" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/science/robotics/showroom) +"oeZ" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"off" = ( +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"ofl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/engineering/tech_storage) +"ofJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"ogM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"ogX" = ( +/obj/machinery/camera{ + c_tag = "Experimentation Lab Office"; + dir = 9; + network = list("Research","SS13") + }, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/pen, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"ogZ" = ( +/obj/structure/table, +/obj/machinery/firealarm/directional/north, +/obj/item/radio/alternative{ + pixel_y = 12; + pixel_x = -6 + }, +/obj/item/radio/alternative{ + pixel_y = 3; + pixel_x = -6 + }, +/obj/item/radio/alternative{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/item/radio/alternative{ + pixel_y = 3; + pixel_x = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/storage/secondary) +"oha" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"ohp" = ( +/obj/structure/chair/sofa/pew, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/service/chapel) +"ohw" = ( +/obj/structure/sign/poster/contraband/borg_fancy_1{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/maintenance/old_detective) +"ohP" = ( +/obj/effect/decal/warning_stripes/yellow, +/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/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"ohQ" = ( +/obj/machinery/alarm/directional/south, +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/screwdriver, +/obj/item/crowbar/engineering, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"oih" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/structure/chair/sofa/right, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/moth, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard2) +"oir" = ( +/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{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"oiz" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"oiG" = ( +/obj/effect/decal/warning_stripes/red/hollow, +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start/security_officer, +/turf/simulated/floor/plasteel/dark, +/area/station/security/main) +"oiI" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"oiJ" = ( +/obj/structure/table/reinforced, +/obj/item/taperecorder{ + pixel_x = -7 + }, +/obj/item/taperecorder, +/obj/item/taperecorder{ + pixel_x = 7 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/processing) +"oiP" = ( +/obj/structure/chair/wood, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ojg" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"ojt" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/closet/l3closet/virology, +/obj/item/storage/box/masks, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"ojS" = ( +/obj/machinery/door/firedoor/closed, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"okx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"oky" = ( +/obj/item/kirbyplants, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"okF" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"olj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"olk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"oll" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Cryogenic Dormitories" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"olo" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) +"olT" = ( +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/command/office/cmo) +"olZ" = ( +/obj/machinery/computer/general_air_control/large_tank_control{ + autolink_sensors = list("waste_sensor"="Tank"); + dir = 4; + inlet_injector_autolink_id = "waste_in"; + name = "Gas Mix Tank Control"; + outlet_vent_autolink_id = "waste_out" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/engineering/atmos) +"omd" = ( +/obj/structure/weightmachine/weightlifter, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/permabrig) +"omg" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/machinery/igniter{ + id = "disp" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"omA" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"omF" = ( +/obj/machinery/door/airlock/maintenance, +/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 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"omI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/checkpoint/south) +"omJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/brig) +"omQ" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"omV" = ( +/turf/simulated/wall/r_wall, +/area/station/medical/storage/secondary) +"onA" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/structure/chair, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"onD" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/simulated/floor/carpet/orange, +/area/station/service/bar/atrium) +"onQ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"onR" = ( +/obj/item/flashlight/lantern{ + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"ooe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/maintenance/starboard2) +"oon" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 30 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"ooq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"oox" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"ooD" = ( +/obj/machinery/camera{ + c_tag = "Medbay Virology Office"; + network = list("Medical","SS13"); + dir = 8 + }, +/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/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"ooI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"ooN" = ( +/obj/effect/decal/warning_stripes/south, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"ooO" = ( +/obj/structure/table/wood/fancy, +/obj/item/kitchen/utensil/fork{ + pixel_x = -5 + }, +/obj/item/reagent_containers/food/condiment/saltshaker, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"ooQ" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/beer{ + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/bar) +"oph" = ( +/obj/structure/chair/sofa/pew/left{ + dir = 4 + }, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"opj" = ( +/obj/structure/cable{ + 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/carpet, +/area/station/command/office/hop) +"ops" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"opu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood/oak, +/area/station/science/robotics/showroom) +"opB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/maintenance/port) +"opM" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/starboard2) +"oql" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"oqq" = ( +/obj/effect/decal/cleanable/dust, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"oqy" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/reagent_containers/food/snacks/grown/redbeet, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"oqJ" = ( +/obj/structure/table/reinforced, +/obj/item/kitchen/knife, +/obj/machinery/door/window/classic/normal{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"orj" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/window/reinforced, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Kitchen Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/service/kitchen) +"ork" = ( +/obj/machinery/computer/arcade/recruiter{ + dir = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"orw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj/structure/sign/poster/contraband/atmosia_independence{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/maintenance/electrical) +"orz" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"orL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"osf" = ( +/obj/effect/decal/cleanable/ants, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"osw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"osD" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"osS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"osV" = ( +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"ota" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"otb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain/bedroom) +"ott" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"otH" = ( +/obj/machinery/kitchen_machine/grill, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"ouo" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "QM Office"; + sort_type_txt = "3" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/north) +"ouu" = ( +/obj/vehicle/ambulance{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/northwestsouth, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/paramedic) +"ova" = ( +/obj/machinery/economy/merch{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"ovl" = ( +/obj/structure/table/wood, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 4; + pixel_x = 6; + layer = 4 + }, +/turf/simulated/floor/wood/fancy, +/area/station/public/sleep_female) +"ovC" = ( +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ovF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/maintenance/starboard) +"ovT" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/tapes, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/processing) +"owG" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"owW" = ( +/obj/structure/table/glass, +/obj/machinery/light/directional/north, +/obj/machinery/computer/med_data/laptop{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"oxi" = ( +/obj/machinery/camera{ + c_tag = "Brig Prisoner Processing South-East"; + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/processing) +"oxq" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 4; + name = "Evidence" + }, +/obj/structure/closet/secure_closet{ + anchored = 1; + name = "Evidence Storage"; + req_access_txt = "4" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/evidence) +"oxu" = ( +/obj/machinery/atmospherics/portable/scrubber/huge/stationary, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"oyh" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "eva-shutters"; + name = "E.V.A. Storage Shutters" + }, +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"oyt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"oyu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/office/hos) +"oyG" = ( +/obj/structure/table/glass, +/obj/item/storage/box/gloves{ + pixel_y = 4; + pixel_x = 4 + }, +/obj/item/storage/box/masks{ + pixel_y = 2; + pixel_x = -4 + }, +/obj/item/hand_labeler{ + pixel_y = 2 + }, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"oyR" = ( +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/plasteel/white, +/area/station/science/break_room) +"ozg" = ( +/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/plasteel/dark, +/area/station/security/interrogation) +"ozn" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "apsolar_vent"; + dir = 4 + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "apsolar_btn_ext"; + ext_door_link_id = "apsolar_door_ext"; + int_button_link_id = "apsolar_btn_int"; + int_door_link_id = "apsolar_door_int"; + pixel_y = -25; + req_access_txt = "13"; + vent_link_id = "apsolar_vent" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"ozs" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/brig) +"ozw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"ozI" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/door_control/shutter/north{ + id = "Secure Armory"; + name = "Secure Armory Shutter Control"; + req_one_access_txt = "3" + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"ozJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"ozL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) +"ozO" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"ozX" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"oAd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"oAe" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"oAE" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"oAP" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/structure/chair, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"oAU" = ( +/obj/effect/decal/warning_stripes/east, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"oBi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"oBx" = ( +/obj/structure/bed, +/obj/item/bedsheet/mime, +/turf/simulated/floor/mineral/tranquillite, +/area/station/maintenance/starboard2) +"oBN" = ( +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"oBX" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"oBZ" = ( +/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{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"oCs" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/structure/sign/poster/official/random/north, +/obj/machinery/light_construct/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard2) +"oCt" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/service/hydroponics) +"oCv" = ( +/obj/structure/table/glass, +/obj/item/flashlight/lamp{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/storage/lockbox/vials{ + pixel_y = -10 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"oCI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"oCK" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"oCQ" = ( +/obj/effect/landmark/start/geneticist, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/science/genetics) +"oCV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"oCX" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"oDB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/old_detective) +"oDH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"oEi" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"oEq" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/main) +"oEy" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"oEG" = ( +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"oEJ" = ( +/obj/structure/rack, +/obj/item/stack/sheet/plasteel{ + amount = 25 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/hardsuitstorage) +"oEK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"oEO" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"oEP" = ( +/obj/item/kirbyplants, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"oER" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/greengrid, +/area/station/maintenance/port2) +"oFv" = ( +/obj/machinery/computer/arcade, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/directional/east, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"oFF" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"oFL" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"oFN" = ( +/obj/machinery/door/airlock/external{ + id_tag = "laborcamp_home"; + locked = 1; + name = "Labor Camp Airlock" + }, +/obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"oFY" = ( +/obj/machinery/newscaster/directional/south, +/obj/structure/chair/comfy/red{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/station/service/theatre) +"oGt" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/processing) +"oGz" = ( +/obj/structure/window/full/reinforced, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass/no_creep, +/area/station/hallway/secondary/exit) +"oGX" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"oHg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/power/rad_collector, +/obj/structure/window/plasmareinforced{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"oHi" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"oHn" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/storage) +"oHK" = ( +/obj/machinery/power/smes, +/obj/item/radio/intercom/directional/south, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/controlroom) +"oHO" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"oHX" = ( +/obj/machinery/camera{ + c_tag = "Prison Entry South"; + dir = 1; + network = list("Prison","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "neutral" + }, +/area/station/security/permabrig) +"oIJ" = ( +/obj/item/radio/beacon, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"oIQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"oJn" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"oJB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"oJQ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"oJT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"oJY" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/apmaint) +"oKa" = ( +/obj/machinery/economy/vending/snack, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"oKf" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"oKl" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light/directional/north, +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"oKN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"oKV" = ( +/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" + }, +/obj/structure/reflector/box, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"oLg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/visitingroom) +"oLl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"oLA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"oLH" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/virology_maint) +"oLJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"oLM" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/public/fitness) +"oLR" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/apmaint) +"oMf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/command/office/cmo) +"oMr" = ( +/obj/machinery/turretid/lethal{ + control_area = "\improper Telecoms Central Compartment"; + name = "Telecommunications Turret Control"; + pixel_y = 8 + }, +/turf/simulated/wall/r_wall, +/area/station/telecomms/chamber) +"oMy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"oMD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"oMO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"oMS" = ( +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"oNd" = ( +/turf/simulated/wall, +/area/station/public/arcade) +"oNe" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/visitingroom) +"oNR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) +"oNY" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"oOe" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"oOi" = ( +/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/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"oOq" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"oOU" = ( +/obj/structure/table/reinforced, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/obj/item/stamp/magistrate{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/machinery/camera{ + c_tag = "Magistrate Office"; + dir = 1; + start_active = 1 + }, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"oOW" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"oOZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"oPj" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"oPo" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"oPr" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6; + color = "lightblue" + }, +/obj/structure/morgue, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"oPw" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"oPR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"oQq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plating, +/area/station/maintenance/starboard2) +"oQJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"oRb" = ( +/obj/effect/decal/warning_stripes/red/hollow, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/turf/simulated/floor/plasteel/dark, +/area/station/security/main) +"oRg" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"oRs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"oRu" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "hos_secure_doors" + }, +/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, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"oRx" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool, +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/maintenance/apmaint) +"oRz" = ( +/obj/machinery/flasher{ + pixel_x = -24; + id = "prison2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"oRA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"oRB" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"oRL" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Brig Firing Range"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/range) +"oSb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"oSD" = ( +/obj/machinery/flasher{ + pixel_x = 24; + pixel_y = -24; + id = "Cell 4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"oSI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/primary/central) +"oTh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"oTm" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/range) +"oTx" = ( +/obj/effect/decal/warning_stripes/yellow, +/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 + }, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"oTP" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"oUp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"oUJ" = ( +/obj/structure/closet/crate{ + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"oUP" = ( +/obj/structure/chair/sofa/left, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/wood/fancy, +/area/station/public/sleep_female) +"oUR" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) +"oVj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/effect/decal/warning_stripes/north, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"oVs" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/power/apc/super/north, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/engine/supermatter) +"oVL" = ( +/obj/item/flag/sec, +/turf/simulated/floor/carpet/black, +/area/station/command/office/hos) +"oVN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"oVS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"oWb" = ( +/turf/simulated/wall, +/area/station/hallway/primary/central/ne) +"oWc" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"oWg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/station/turret_protected/ai_upload) +"oWp" = ( +/obj/effect/turf_decal{ + dir = 4 + }, +/obj/effect/turf_decal{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/storage) +"oWx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/storage/tools) +"oWz" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"oWQ" = ( +/obj/machinery/camera{ + c_tag = "Bar counter"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"oXd" = ( +/obj/structure/table, +/obj/item/storage/box/monkeycubes/farwacubes{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/storage/box/monkeycubes/wolpincubes{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/storage/box/monkeycubes/neaeracubes{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/storage/box/monkeycubes/stokcubes{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"oXh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/north) +"oXq" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/brig) +"oXr" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/public/fitness) +"oXL" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"oYb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/public/vacant_office) +"oYh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cloning) +"oYl" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/nanotrasen, +/obj/item/pen/multi, +/obj/machinery/button/windowtint/north{ + id = "HoS"; + pixel_x = 7 + }, +/obj/machinery/door_control/shutter/north{ + pixel_x = -7; + id = "Secure Armory"; + name = "Secure Armory Shutter Control"; + req_one_access_txt = "3" + }, +/obj/machinery/door_control/normal{ + id = "hosofficedoor"; + name = "Office Door"; + pixel_y = 33; + req_one_access_txt = "58"; + pixel_x = 7 + }, +/obj/machinery/door_control/shutter/north{ + pixel_x = -7; + pixel_y = 33; + id = "ArmoryLock"; + name = "Armory Lockdown"; + req_one_access_txt = "3" + }, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"oYq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"oYw" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/engineering/hardsuitstorage) +"oYC" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"oYM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"oYN" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"oYY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"oZb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"oZm" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/quartermaster, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"oZp" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/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/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology/lab) +"oZU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/supply/office) +"pac" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"pai" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plating, +/area/station/medical/morgue) +"paj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/permabrig) +"pau" = ( +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/processing) +"paM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/station/hallway/secondary/exit/maintenance) +"pbl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/service/theatre) +"pbz" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/permabrig) +"pbJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"pcm" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/chem_master, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"pcM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"pdc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"pdl" = ( +/obj/machinery/camera{ + c_tag = "Engine Room South"; + dir = 1; + network = list("Engineering","SS13") + }, +/obj/effect/decal/warning_stripes/south, +/obj/item/radio/intercom/directional/south, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"pdq" = ( +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"pdP" = ( +/obj/machinery/light_switch/south, +/obj/structure/table, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 10 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 8 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 6 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 4 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/health, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"pdW" = ( +/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/plasteel/dark, +/area/station/security/evidence) +"peo" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating/burnt/airless, +/area/space/nearstation) +"pex" = ( +/obj/machinery/sleeper, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"pey" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"peD" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"peG" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"peH" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"peY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/brig) +"pfe" = ( +/obj/machinery/light_switch/north, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"pfg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/range) +"pfh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"pfl" = ( +/obj/machinery/door_control/shutter/west{ + id = "restaurant"; + name = "Restaurant Shutters control" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"pfu" = ( +/obj/machinery/disposal, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"pfT" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"pgg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"pgk" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/wood/oak, +/area/station/command/office/captain) +"pgH" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/east, +/obj/item/book/manual/wiki/security_space_law, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"pgK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/maintenance/starboard) +"pgX" = ( +/turf/simulated/floor/light/blue, +/area/station/maintenance/old_kitchen) +"phe" = ( +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"phi" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"phG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/flasher_button{ + pixel_y = 24; + pixel_x = 24; + id = "prison1" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"phN" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"phO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"phP" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"phR" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"phT" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/storage) +"pia" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/office) +"pic" = ( +/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/plating, +/area/station/maintenance/fore) +"pih" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"piq" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "hos_secure_doors" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"piQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"piV" = ( +/obj/effect/turf_decal{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"pjk" = ( +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"pjq" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/effect/decal/cleanable/dust, +/obj/item/pipe_meter, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"pjK" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/grass/jungle, +/area/station/maintenance/fsmaint) +"pjS" = ( +/obj/structure/closet/radiation, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/storage/secondary) +"pka" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"pkj" = ( +/obj/machinery/door/airlock/external{ + id_tag = "apsolar_door_ext"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/east, +/obj/machinery/access_button/north{ + autolink_id = "apsolar_btn_ext"; + name = "exterior access button"; + req_access_txt = "13" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"pkv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"pky" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"pla" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"plb" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/range) +"plj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/directional/east, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"plm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"plp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"plr" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"plF" = ( +/obj/machinery/atmospherics/binary/valve{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"plL" = ( +/obj/structure/table/glass, +/obj/item/storage/fancy/vials{ + pixel_x = 4 + }, +/obj/item/storage/box/syringes{ + pixel_y = 3; + pixel_x = -14 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "greenfull" + }, +/area/station/medical/virology/lab) +"plN" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"pmA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"pmC" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"pmI" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"pmT" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"pnw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"pnM" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/field/generator{ + anchored = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"pnN" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"pnV" = ( +/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/plasteel/white, +/area/station/science/research) +"poa" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/turf/simulated/floor/carpet/orange, +/area/station/service/theatre) +"poh" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"poK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"poN" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"poO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/starboard) +"poR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"ppj" = ( +/obj/structure/table, +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"ppn" = ( +/obj/structure/chair/sofa/bench/left{ + cover_color = "#68452a"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"ppp" = ( +/obj/machinery/bodyscanner{ + dir = 2 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"pps" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"ppu" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/reception) +"ppB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"ppE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"ppN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"ppP" = ( +/obj/structure/dispenser{ + starting_plasma_tanks = 0 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/sign/poster/official/air2{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"pqh" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/brig) +"pqo" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/service/clown) +"pqQ" = ( +/obj/machinery/power/apc/directional/east, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/structure/flora/junglebush, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"prg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"prk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"prt" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/service/bar) +"prx" = ( +/obj/structure/closet/boxinggloves, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/public/fitness) +"prC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"prD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"prI" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/hallway/secondary/exit/maintenance) +"prN" = ( +/obj/structure/table, +/obj/item/roller{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/roller{ + pixel_y = 10; + pixel_x = -4 + }, +/obj/item/roller{ + pixel_y = 14; + pixel_x = -4 + }, +/obj/item/storage/pill_bottle/painkillers{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = -6; + pixel_y = -12 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 8; + pixel_y = -10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/sleeper) +"prY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"psn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/stack/sheet/metal/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/hardsuitstorage) +"pso" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Public Access" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"psr" = ( +/obj/item/tank/internals/anesthetic, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/freezer, +/area/station/maintenance/aft) +"pss" = ( +/obj/item/chair/stool{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dust, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/carpet/arcade, +/area/station/maintenance/starboard) +"psA" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera{ + c_tag = "Research Test Lab"; + dir = 8; + network = list("Research","SS13") + }, +/turf/simulated/floor/engine, +/area/station/science/explab) +"psB" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil, +/obj/item/apc_electronics{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/apc_electronics{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/apc_electronics{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"psD" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"psF" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargodisposals" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"psN" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Storage" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/tox_storage, +/obj/machinery/door/firedoor, +/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/plasteel/white, +/area/station/science/storage) +"psZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/apmaint) +"ptg" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/pod_3) +"pti" = ( +/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/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"ptn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/sw) +"ptq" = ( +/obj/machinery/door/airlock/external{ + id_tag = "stationai_door_ext"; + locked = 1; + name = "Minisat Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/access_button/north{ + autolink_id = "stationai_btn_ext"; + name = "exterior access button"; + req_access_txt = "10;13" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"ptU" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"ptZ" = ( +/obj/item/gun/energy/disabler{ + pixel_x = -2 + }, +/obj/item/gun/energy/disabler, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/item/gun/energy/disabler{ + pixel_x = 2 + }, +/obj/item/gun/energy/disabler{ + pixel_x = 4 + }, +/obj/item/gun/energy/disabler{ + pixel_x = 6 + }, +/obj/structure/rack/gunrack, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"pup" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"puv" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/brute{ + pixel_y = 10 + }, +/obj/item/storage/firstaid/brute{ + pixel_y = 6 + }, +/obj/item/storage/firstaid/brute{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"puG" = ( +/turf/simulated/floor/beach/away/water/deep/dense{ + density = 0; + water_overlay_image = null + }, +/area/station/hallway/secondary/exit) +"puR" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"puY" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"pvo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"pvq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"pwA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start/botanist, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/service/hydroponics) +"pwX" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) +"pwY" = ( +/obj/machinery/door/airlock/external{ + id_tag = "enginen_door_int"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"pxy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/virology_maint) +"pxC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/northwest, +/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" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"pxJ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"pxP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light_switch/west, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"pyb" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/aft) +"pyd" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/processing) +"pys" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/public/fitness) +"pyv" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/processing) +"pyC" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + layer = 2 + }, +/obj/machinery/atmospherics/portable/canister, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"pyQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/power/rad_collector, +/obj/structure/window/plasmareinforced{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"pzB" = ( +/obj/machinery/firealarm/directional/north{ + pixel_x = 5 + }, +/obj/machinery/light_switch/north{ + pixel_x = -5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/interrogation/observation) +"pzE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft) +"pzF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/engineering/hardsuitstorage) +"pzX" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light/directional/east, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"pzY" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/west) +"pAg" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10; + initialize_directions = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"pAu" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/storage) +"pAv" = ( +/obj/machinery/hologram/holopad, +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"pAx" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"pAy" = ( +/obj/item/storage/backpack/satchel, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"pAC" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"pAK" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/security_officer, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"pAQ" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) +"pAT" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"pBb" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "EscapeLockdown"; + name = "Escape Shuttle Lockdown" + }, +/turf/simulated/floor/plating, +/area/station/security/checkpoint/south) +"pBc" = ( +/obj/machinery/economy/vending/coffee, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light_switch/north{ + pixel_x = -10 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"pBe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Auxiliary Storage" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"pBh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"pBA" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/computerframe{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/maintenance/old_detective) +"pBQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/maintenance/starboard) +"pBY" = ( +/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 + }, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"pCe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"pCi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"pCj" = ( +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/white, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"pCq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel, +/area/station/maintenance/starboard2) +"pCC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"pCD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"pCI" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast north"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"pDk" = ( +/obj/effect/mapping_helpers/airlock/access/any/security/court, +/obj/machinery/door/airlock, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"pDS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/aisat) +"pER" = ( +/obj/structure/table/wood, +/obj/item/book/manual/barman_recipes, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/structure/sign/poster/official/high_class_martini{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"pEY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + id_tag = "KPPSouth"; + name = "Public Access" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "EscapeLockdown"; + name = "Escape Shuttle Lockdown" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/bridge/checkpoint/south) +"pFn" = ( +/obj/machinery/computer/cloning, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"pFv" = ( +/obj/structure/closet/secure_closet/mime, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"pFO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/evidence) +"pFT" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"pFW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"pGk" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/railing{ + dir = 6; + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/kirbyplants{ + pixel_y = 7 + }, +/obj/structure/railing/corner{ + dir = 9; + pixel_x = 2; + pixel_y = -28 + }, +/turf/simulated/floor/grass, +/area/station/science/research) +"pGn" = ( +/obj/structure/falsewall, +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"pGr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"pGz" = ( +/obj/structure/table/glass, +/obj/item/clipboard{ + pixel_y = 6 + }, +/obj/item/toy/figure/crew/virologist{ + pixel_y = 6 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"pGJ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9; + color = "lightblue" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"pGK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/permabrig) +"pGO" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/decal/warning_stripes/red, +/obj/item/clothing/mask/balaclava, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/storage) +"pGQ" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"pGV" = ( +/obj/machinery/economy/atm/north, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"pHb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"pHe" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/range) +"pHg" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/door/airlock/external{ + id_tag = "specops_home"; + locked = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"pHK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/mob/living/simple_animal/mouse/brown, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"pIa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/maintenance/disposal) +"pIC" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"pIP" = ( +/obj/structure/table/glass, +/obj/item/defibrillator/loaded{ + layer = 4; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"pIR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"pJb" = ( +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"pJf" = ( +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"pJj" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"pJv" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/science/robotics/showroom) +"pJw" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"pJP" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/power/smes, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/controlroom) +"pKd" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/public/fitness) +"pKe" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Arcade" + }, +/obj/machinery/door/firedoor, +/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/carpet/arcade, +/area/station/public/arcade) +"pKl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/public/storage/tools) +"pKv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/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/plasteel, +/area/station/security/processing) +"pKK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/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 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"pKP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"pLc" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/ne) +"pLr" = ( +/obj/effect/spawner/window/reinforced/grilled, +/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/plating, +/area/station/maintenance/abandonedbar) +"pLs" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"pLI" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + name = "Virology Shutters"; + id_tag = "Virology2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"pLT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/public/fitness) +"pLU" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/toxins/mixing) +"pMd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/storage) +"pMe" = ( +/obj/structure/chair/sofa/bench{ + cover_color = "#68452a"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"pMg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"pMz" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"pML" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/research) +"pMU" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stack/cable_coil/random, +/obj/item/wrench, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"pNk" = ( +/obj/structure/table/reinforced, +/obj/item/cartridge/quartermaster{ + pixel_x = -3 + }, +/obj/item/cartridge/quartermaster{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/item/cartridge/quartermaster{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/gps/mining, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"pNl" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"pNv" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"pNz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/turbine) +"pOf" = ( +/obj/structure/disposalpipe/junction/y{ + dir = 4 + }, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"pOh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"pOi" = ( +/obj/effect/decal/warning_stripes/northwestcorner, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"pOp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/snacks/disk{ + pixel_y = 10; + pixel_x = 8 + }, +/obj/item/reagent_containers/food/snacks/disk{ + pixel_y = -6; + pixel_x = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/starboard2) +"pOA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"pOF" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/maintenance/turbine) +"pOK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/bridge/checkpoint/south) +"pOZ" = ( +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/dark, +/area/station/security/storage) +"pPc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/cap/hidden/supply, +/obj/structure/disposalpipe/broken, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"pPl" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/portable/canister/air{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"pPG" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/bush, +/turf/simulated/floor/grass, +/area/station/science/research) +"pPL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"pPQ" = ( +/obj/structure/bed, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"pPW" = ( +/obj/structure/table/reinforced, +/obj/machinery/defibrillator_mount/loaded, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"pPZ" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "transitlock"; + name = "Transit Tube Lockdown" + }, +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/engineering/aitransit) +"pQa" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "HoS" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"pQd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"pQj" = ( +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"pQl" = ( +/obj/effect/turf_decal{ + dir = 8 + }, +/obj/effect/turf_decal{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/storage) +"pQq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"pRI" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/storage) +"pRL" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/door_control/bolt_control/south{ + id = "DormToilet2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"pRP" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/damageturf, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"pRQ" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"pRX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/starboard) +"pRY" = ( +/obj/item/kirbyplants, +/obj/machinery/camera{ + c_tag = "Medbay Virology Restroom"; + network = list("Medical","SS13"); + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"pSw" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel/dark, +/area/station/security/brig) +"pSJ" = ( +/obj/machinery/camera{ + c_tag = "Supermatter East"; + dir = 8; + network = list("Engineering","SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/portable/canister/nitrogen, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"pSM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/hallway/primary/central) +"pSO" = ( +/obj/structure/bed/mattress/dirty, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"pSX" = ( +/obj/structure/rack, +/obj/item/multitool, +/obj/item/wrench, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"pTi" = ( +/obj/machinery/economy/vending/dinnerware, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"pTk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/brig) +"pTE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/medmaint) +"pUB" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"pUC" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "arrivalsn_vent" + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "arrivalsn_btn_ext"; + ext_door_link_id = "arrivalsn_door_ext"; + int_button_link_id = "arrivalsn_btn_int"; + int_door_link_id = "arrivalsn_door_int"; + pixel_x = 25; + vent_link_id = "arrivalsn_vent" + }, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"pUN" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"pVN" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"pWc" = ( +/obj/structure/cable{ + 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 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) +"pWh" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Test Chamber" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/obj/machinery/door/poddoor/preopen{ + id_tag = "RnDChem"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"pWq" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"pWr" = ( +/obj/structure/chair/sofa/bench{ + cover_color = "#68452a"; + dir = 4 + }, +/obj/machinery/economy/vending/wallmed/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"pWt" = ( +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"pWw" = ( +/obj/machinery/economy/vending/snack, +/obj/machinery/light/directional/north, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"pWA" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"pWT" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"pXb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"pXM" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/handcuffs{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/stack/tape_roll{ + pixel_x = -11; + pixel_y = -2 + }, +/obj/item/implanter/mindshield{ + pixel_y = 11; + pixel_x = -7 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/interrogation) +"pXQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"pXW" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"pYb" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"pYc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"pYk" = ( +/obj/machinery/flasher{ + pixel_x = -24; + pixel_y = -24; + id = "Cell 3" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"pYo" = ( +/obj/structure/coatrack, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"pYr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/permabrig) +"pYC" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"pYE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "greencorner" + }, +/area/station/hallway/secondary/exit) +"pYO" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/chem_dispenser/botanical, +/obj/machinery/requests_console{ + department = "Hydroponics"; + departmentType = 2; + name = "Hydroponics Requests Console"; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"pZs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"pZI" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/safe{ + known_by = list("captain") + }, +/obj/item/clothing/head/bearpelt, +/obj/item/folder/documents, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/lighter/zippo/nt_rep, +/obj/item/storage/fancy/cigarettes/cigpack_robustgold, +/obj/item/stack/spacecash/c1000, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/station/command/vault) +"qao" = ( +/turf/simulated/floor/plasteel{ + icon_state = "greencorner" + }, +/area/station/hallway/secondary/exit) +"qaC" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/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/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"qaQ" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos/control) +"qaS" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"qbb" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/computer/general_air_control/large_tank_control{ + autolink_sensors = list("o2_sensor"="Tank"); + dir = 8; + inlet_injector_autolink_id = "o2_in"; + name = "Oxygen Supply Control"; + outlet_vent_autolink_id = "o2_out" + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/engineering/atmos) +"qbl" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"qbx" = ( +/obj/structure/table, +/obj/random/tool, +/obj/random/tool{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"qbB" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard2) +"qbL" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10; + color = "lightblue" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"qbN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/command/office/cmo) +"qct" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"qcK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/brig) +"qcX" = ( +/obj/structure/kitchenspike, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/security/interrogation) +"qcZ" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"qdh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10; + initialize_directions = 10 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"qdk" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/head/radiation, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"qdm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/sleeper) +"qdE" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"qdW" = ( +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/library) +"qeJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/storage) +"qeW" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/station/supply/storage) +"qfb" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera{ + c_tag = "Prison General"; + dir = 8; + network = list("Prison","SS13") + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/permabrig) +"qfc" = ( +/obj/machinery/papershredder, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"qfd" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/public/fitness) +"qfr" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast east"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"qfs" = ( +/obj/machinery/light/nightshifted/north, +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"qfX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"qgl" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/screwdriver, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"qgK" = ( +/obj/machinery/economy/vending/chinese, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"qgN" = ( +/obj/machinery/door/window/reinforced/normal, +/obj/machinery/door/window/reinforced/normal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"qgP" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"qgV" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/bag/tray, +/obj/item/storage/bag/tray, +/obj/item/storage/bag/tray, +/obj/item/storage/bag/tray, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/utensil/pspoon, +/obj/item/kitchen/utensil/pspoon, +/obj/item/kitchen/utensil/pspoon, +/obj/item/kitchen/utensil/pfork, +/obj/item/kitchen/utensil/pfork, +/obj/item/kitchen/utensil/pfork, +/obj/item/trash/snack_bowl, +/obj/item/trash/snack_bowl, +/obj/item/trash/snack_bowl, +/obj/item/trash/snack_bowl, +/obj/item/trash/snack_bowl, +/obj/item/trash/snack_bowl, +/obj/item/seeds/ambrosia, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"qhe" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/controlroom) +"qhF" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/iv_bag/salglu{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/iv_bag/salglu{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"qhG" = ( +/obj/machinery/atmospherics/unary/thermomachine/freezer, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"qhK" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"qhP" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6; + color = "lightblue" + }, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"qhX" = ( +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"qhZ" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/table/glass, +/obj/item/soap, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"qih" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/station/science/robotics/showroom) +"qin" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/box/beakers{ + pixel_x = -5 + }, +/obj/item/storage/box/beakers{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/storage/box/syringes{ + pixel_x = 6 + }, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"qiu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"qiB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"qiD" = ( +/obj/machinery/light_switch/north, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"qjn" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 10 + }, +/obj/item/storage/firstaid/surgery, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/interrogation) +"qjp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cryo) +"qjP" = ( +/obj/item/clothing/head/collectable/rabbitears, +/obj/item/clothing/gloves/color/white, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"qjT" = ( +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"qkn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/storage/tools) +"qkD" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"qkH" = ( +/obj/structure/chair/sofa/corner{ + color = "#A30FAF"; + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"qlg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"qlM" = ( +/obj/machinery/door/airlock/maintenance/external, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/virology, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"qlY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"qlZ" = ( +/obj/structure/rack, +/obj/item/storage/briefcase/inflatable, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/maintenance/medmaint) +"qmo" = ( +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/virology_maint) +"qmw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"qmz" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"qmM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"qmT" = ( +/obj/item/mounted/frame/display/newscaster_frame, +/obj/machinery/light/small/directional/west, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/starboard) +"qno" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"qnC" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/machinery/alarm/directional/south, +/obj/machinery/camera{ + c_tag = "Brig Stand"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/brig) +"qoq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"qov" = ( +/obj/structure/closet/body_bag, +/obj/item/reagent_containers/food/drinks/bottle/random_drink, +/obj/item/reagent_containers/food/drinks/bottle/random_drink, +/obj/item/reagent_containers/food/drinks/bottle/random_drink, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/starboard) +"qoM" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/crayons, +/obj/item/toy/crayon/random, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"qoU" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"qoW" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/warden) +"qpf" = ( +/obj/item/kirbyplants, +/obj/effect/landmark/spawner/xeno, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"qpo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"qpq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/qm) +"qpB" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"qpZ" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/service/kitchen) +"qqa" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"qqe" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/checkpoint/south) +"qqh" = ( +/obj/machinery/cryopod, +/obj/machinery/light/directional/east, +/obj/machinery/computer/cryopod{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"qrq" = ( +/obj/item/chair, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"qrE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/visitingroom) +"qrT" = ( +/turf/simulated/wall/r_wall, +/area/station/telecomms/chamber) +"qsm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"qsq" = ( +/obj/structure/closet, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/visitingroom) +"qsu" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/carpet/orange, +/area/station/service/theatre) +"qsU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) +"qto" = ( +/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" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"qtv" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"qtC" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + autolink_id = "co2_out"; + dir = 4; + external_pressure_bound = 0; + icon_state = "in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + releasing = 0 + }, +/turf/simulated/floor/engine/co2, +/area/station/engineering/atmos) +"qtJ" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/control) +"qtU" = ( +/obj/structure/disposalpipe/sortjunction/reversed{ + dir = 4; + name = "Library"; + sort_type_txt = "16" + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"qul" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"quv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/public/fitness) +"quK" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "hos_secure_doors" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"quL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/science/research) +"quV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"qvp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"qvq" = ( +/obj/machinery/camera{ + c_tag = "Medbay Virology Main Hall"; + network = list("Medical","SS13") + }, +/obj/machinery/door_control/shutter/north{ + id = "Virology1"; + name = "Virology Window Shutters Control" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"qvr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/abandoned_garden) +"qvA" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"qvE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"qvJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"qvT" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"qvV" = ( +/obj/structure/punching_bag, +/obj/effect/decal/warning_stripes/green/hollow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/directional/west, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/permabrig) +"qwd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"qwl" = ( +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) +"qwo" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"qwH" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"qwI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"qwK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door_control/normal{ + pixel_x = -5; + id = "visitleft"; + desc = "A remote control switch for the visit room."; + name = "Visit Room Left Door" + }, +/obj/machinery/door_control/normal{ + pixel_x = 5; + id = "visitup"; + desc = "A remote control switch for the visit room."; + name = "Visit Room Right Door" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/brig) +"qwS" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/aitransit) +"qxd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/grille, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"qxh" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "GYM"; + name = "Dungeon Privacy Shutters" + }, +/turf/simulated/floor/plating, +/area/station/security/interrogation) +"qxj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"qxk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"qxs" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/suit_storage_unit/atmos, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"qxt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"qxv" = ( +/obj/structure/chair/sofa/pew/left{ + dir = 8; + name = "bench of contemplation" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"qxB" = ( +/obj/machinery/door/airlock/engineering, +/obj/structure/barricade/wooden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"qxO" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"qyr" = ( +/obj/machinery/light/directional/north, +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_y = 4; + pixel_x = -8 + }, +/obj/item/storage/box/syringes{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/machinery/door_control/shutter/north{ + desc = "A remote control switch for the medbay foyer."; + id = "GeneticsPrivacy"; + name = "Genetics Privacy Shutter Control" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"qzu" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + cell_type = 25000; + dir = 4; + name = "Magistrate Office"; + pixel_x = 24; + shock_proof = 1 + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"qzw" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall/r_wall, +/area/station/security/checkpoint/south) +"qzy" = ( +/obj/machinery/economy/vending/wallmed/directional/west, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"qzG" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/service/kitchen) +"qzR" = ( +/obj/machinery/hydroponics/soil, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"qAh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Brig Visit Room North" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/visitingroom) +"qAl" = ( +/obj/machinery/economy/vending/sustenance, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"qAQ" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/science/robotics) +"qAZ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/camera{ + c_tag = "Custodial Closet"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/service/janitor) +"qBb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/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/plasteel, +/area/station/security/permabrig) +"qBc" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/interrogation/observation) +"qBe" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"qBo" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"qBu" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel, +/area/station/service/theatre) +"qBw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"qBR" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hooded/ablative, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 8 + }, +/obj/item/gun/energy/ionrifle, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/effect/decal/warning_stripes/west, +/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"qCc" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/computer/station_alert, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"qCd" = ( +/turf/simulated/floor/plasteel/grimy, +/area/station/maintenance/abandonedbar) +"qCk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/classic/normal{ + name = "Bar Delivery" + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mule_bot, +/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"qCv" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage/secondary) +"qCw" = ( +/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{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"qDj" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"qDv" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/table, +/obj/item/paper/pamphlet/deltainfo, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"qDL" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/apmaint) +"qDP" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "Warden"; + name = "Warden Privacy Shutters" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/warden) +"qDW" = ( +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_y = 4; + pixel_x = 4 + }, +/obj/item/storage/box/beakers{ + pixel_y = 2; + pixel_x = -4 + }, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"qDX" = ( +/obj/structure/closet/secure_closet/CMO, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"qEc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"qEm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/hardsuitstorage) +"qEA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/rd) +"qEB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/power/rad_collector, +/obj/structure/window/plasmareinforced{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"qEN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reflector/box{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"qEO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "greenblue" + }, +/area/station/maintenance/abandoned_garden) +"qES" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"qET" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/fsmaint) +"qEU" = ( +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/visitingroom) +"qFf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/service/kitchen) +"qFj" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"qFp" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"qFw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"qFy" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) +"qFB" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + 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/plasteel/white, +/area/station/science/xenobiology) +"qGa" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"qGj" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"qGm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"qGo" = ( +/obj/structure/chair/comfy/green, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology/lab) +"qGy" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/decal/warning_stripes/south, +/obj/structure/table/reinforced, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"qGF" = ( +/obj/machinery/button/windowtint/west{ + id = "privateroom"; + pixel_y = -6 + }, +/obj/machinery/door_control/bolt_control/west{ + id = "privateroom"; + pixel_y = 6 + }, +/obj/structure/table/wood, +/obj/machinery/light/directional/west, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 5 + }, +/obj/item/reagent_containers/food/drinks/bottle/wine{ + pixel_y = 5 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/theatre) +"qHc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"qHx" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex/nitrile{ + pixel_y = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"qHE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) +"qHN" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/white, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"qHY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"qIe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/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/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"qIl" = ( +/obj/structure/flora/grass/jungle, +/obj/machinery/light/directional/west, +/turf/simulated/floor/grass/no_creep, +/area/station/hallway/secondary/exit) +"qIz" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"qIE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/maintenance/fore) +"qIZ" = ( +/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/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"qJb" = ( +/obj/structure/bookcase, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"qJk" = ( +/turf/simulated/wall, +/area/station/maintenance/old_detective) +"qJA" = ( +/obj/machinery/atmospherics/pipe/simple/insulated{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/toxins/mixing) +"qJB" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/supply/storage) +"qJJ" = ( +/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/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/bridge) +"qKk" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"qKt" = ( +/obj/machinery/newscaster/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/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/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"qKv" = ( +/obj/structure/mirror{ + pixel_x = -26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"qKB" = ( +/obj/machinery/gameboard, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"qLk" = ( +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"qLB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/miningdock) +"qLC" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/bottle/holywater{ + pixel_y = 4; + pixel_x = -8; + initialized = 1 + }, +/obj/item/storage/bible{ + pixel_y = 6; + pixel_x = 7 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/interrogation) +"qLD" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/engineering/atmos/control) +"qLG" = ( +/obj/machinery/flasher{ + pixel_x = 24; + pixel_y = -24; + id = "Cell 6" + }, +/obj/structure/cable{ + 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 = 9 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"qMa" = ( +/obj/item/bikehorn/rubberducky, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel/freezer, +/area/station/public/toilet) +"qMB" = ( +/obj/structure/cable{ + d1 = 2; + 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/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"qMO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/office) +"qMT" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/storage) +"qMV" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/service/chapel) +"qMX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) +"qNb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/equipmentstorage) +"qNf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"qNx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"qNW" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"qOd" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"qOs" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"qOu" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/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 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + 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/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"qOz" = ( +/obj/machinery/economy/vending/clothing, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"qOP" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/checkpoint/south) +"qOQ" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/portable/scrubber, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"qPc" = ( +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"qPg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"qPi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/window/brigdoor{ + id = "Cell 2"; + name = "Cell 2"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/prison/cell_block/A) +"qPD" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/old_kitchen) +"qQx" = ( +/obj/machinery/economy/vending/plasmaresearch, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"qQG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/ne) +"qQL" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/processing) +"qQN" = ( +/obj/effect/landmark/start/botanist, +/turf/simulated/floor/plasteel{ + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"qQS" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/camera{ + c_tag = "Arrivals Port Aft"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"qRc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"qRi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/service/expedition) +"qRt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/starboard) +"qRG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) +"qRY" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/public/locker) +"qSh" = ( +/obj/machinery/door/airlock/external{ + hackProof = 1; + id_tag = "emergency_home"; + locked = 1; + name = "Escape Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/checkpoint/south) +"qSo" = ( +/obj/machinery/door_control/bolt_control/south{ + id = "PrivateRoom1" + }, +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"qSp" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 8; + location = "Chemistry" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/window/classic/reversed{ + name = "Chemistry Delivery"; + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ + dir = 1 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/medical/chemistry) +"qSv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) +"qSG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/arcade, +/area/station/maintenance/starboard) +"qSI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + name = "Atmospherics Junction"; + sort_type_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"qSX" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"qTb" = ( +/obj/effect/turf_decal, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/storage) +"qTe" = ( +/obj/item/reagent_containers/food/snacks/candy/gummyworm/green, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "cmo" + }, +/area/station/maintenance/starboard2) +"qTE" = ( +/obj/item/kirbyplants, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"qTF" = ( +/obj/machinery/economy/vending/engidrobe, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"qTY" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"qUc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"qUx" = ( +/obj/machinery/atmospherics/portable/canister/nitrogen, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10; + initialize_directions = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"qUI" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/processing) +"qUJ" = ( +/obj/machinery/economy/vending/wallmed/directional/north, +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"qVc" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/mutagen{ + pixel_y = 6; + pixel_x = -14 + }, +/obj/item/reagent_containers/glass/bottle/frostoil{ + pixel_y = 11 + }, +/obj/item/reagent_containers/glass/bottle/reagent/hairgrownium{ + pixel_y = 6; + pixel_x = 15 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = 3 + }, +/obj/item/reagent_containers/syringe/calomel{ + pixel_y = -1 + }, +/obj/item/reagent_containers/syringe/heparin{ + pixel_y = -5 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/interrogation) +"qVh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plating, +/area/station/maintenance/fore) +"qVu" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard2) +"qVD" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"qVF" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"qVU" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/storage) +"qWr" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"qWs" = ( +/obj/machinery/computer/arcade{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"qWx" = ( +/obj/item/kirbyplants, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"qWG" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"qWV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"qWZ" = ( +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "o2_sensor" + }, +/turf/simulated/floor/engine/o2, +/area/station/engineering/atmos) +"qXy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/landmark/start/botanist, +/turf/simulated/floor/plasteel{ + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"qXD" = ( +/obj/structure/bed, +/obj/structure/curtain/open, +/obj/item/bedsheet/medical, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"qXS" = ( +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/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/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/floor/plasteel/dark, +/area/station/security/prisonlockers) +"qYd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"qYm" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/storage/secondary) +"qYP" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"qYT" = ( +/obj/machinery/light/directional/north, +/obj/machinery/light_switch/east, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"qZg" = ( +/turf/simulated/wall/r_wall, +/area/station/security/interrogation) +"qZk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/stack/rods{ + amount = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"qZs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"qZu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/qm) +"qZx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"qZA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/freezer, +/area/station/medical/virology/lab) +"qZF" = ( +/obj/machinery/cryopod, +/turf/simulated/floor/plasteel/white, +/area/station/security/permabrig) +"qZV" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/machinery/chem_master, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"rad" = ( +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/old_kitchen) +"rah" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"raw" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/processing) +"raz" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1; + color = "lightblue" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"raB" = ( +/obj/structure/grille/broken, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"raD" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/service/bar) +"raH" = ( +/obj/structure/sign/radiation/rad_area, +/turf/simulated/wall/r_wall, +/area/station/engineering/engine/supermatter) +"raP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/medmaint) +"raR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"raT" = ( +/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{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"rbf" = ( +/turf/simulated/wall/r_wall, +/area/station/security/evidence) +"rbo" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/alarm/directional/east, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"rbq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/ai_monitored/storage/eva) +"rbI" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"rbL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/execution) +"rbM" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/medbay2) +"rbT" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door_control/shutter/west{ + id = "stationawaygate"; + name = "Gateway Shutters Control"; + req_access_txt = "62" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"rcs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/bridge) +"rcF" = ( +/obj/effect/decal/cleanable/dirt, +/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/plasteel/dark, +/area/station/maintenance/abandonedbar) +"rdb" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/maintenance/fsmaint) +"rdn" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"rdq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/cherry, +/area/station/service/hydroponics) +"rds" = ( +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/officetoys, +/obj/item/radio/security{ + pixel_x = 8 + }, +/obj/machinery/door_control/shutter{ + id = "Secure Gate"; + name = "Brig Lockdown"; + req_one_access_txt = "2"; + pixel_y = 24; + pixel_x = 5 + }, +/obj/machinery/door_control/shutter{ + desc = "A remote control-switch to lock down the prison wing's blast doors"; + id = "Prison Gate"; + name = "Prison Wing Lockdown"; + req_one_access_txt = "2"; + pixel_y = 24; + pixel_x = -5 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"rdB" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/applicator/burn{ + pixel_y = 4; + pixel_x = -6 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"red" = ( +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"res" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"reN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"reU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/control) +"reW" = ( +/obj/item/radio/intercom/directional/east, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"rfd" = ( +/turf/simulated/wall/r_wall, +/area/station/security/interrogation/observation) +"rfh" = ( +/obj/machinery/alarm/directional/west, +/obj/structure/table/reinforced, +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Area control access" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ + dir = 4 + }, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"rfB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"rfH" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"rfK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"rfQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"rfS" = ( +/obj/machinery/door/airlock/maintenance, +/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/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel, +/area/station/maintenance/starboard) +"rfT" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"rgg" = ( +/obj/machinery/fishtank/wall, +/turf/simulated/wall, +/area/station/service/kitchen) +"rgj" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "Clown"; + name = "Clown Privacy Shutters" + }, +/turf/simulated/floor/plating, +/area/station/service/clown) +"rgk" = ( +/obj/item/reagent_containers/spray/pepper{ + pixel_x = -8 + }, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = -4 + }, +/obj/item/reagent_containers/spray/pepper, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = 4 + }, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = 8 + }, +/obj/structure/rack, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/storage) +"rgo" = ( +/obj/machinery/light/directional/east, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Courtroom East"; + dir = 8 + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/courtroom) +"rgY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/maintenance/starboard2) +"rhn" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/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 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"rhA" = ( +/obj/effect/decal/cleanable/dirt, +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"rhY" = ( +/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/transparent/glass, +/area/station/maintenance/virology_maint) +"rim" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"rix" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/spawner/lootdrop/trash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"riA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/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/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/qm) +"riH" = ( +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"riJ" = ( +/obj/structure/railing, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"riK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/electricshock{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/station/security/execution) +"riO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"riP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/lobby) +"riQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"riV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"rjE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"rkf" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Virology Shutters"; + id_tag = "Virology2" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"rkv" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/three, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"rkO" = ( +/obj/machinery/status_display/directional/south, +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/lightreplacer, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"rkU" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"rkV" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/rack, +/obj/effect/decal/warning_stripes/southwest, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"rlB" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"rlI" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"rlK" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/blue/hollow, +/obj/machinery/camera{ + c_tag = "Medbay Treatment South"; + network = list("Medbay","SS13"); + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"rlS" = ( +/obj/machinery/economy/vending/cola, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/public/fitness) +"rma" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/storage/tools) +"rmw" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"rnI" = ( +/obj/structure/closet/crate/freezer/iv_storage, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/primary) +"rnO" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/station/maintenance/starboardsolar) +"rnY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"roN" = ( +/obj/structure/railing/corner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"roR" = ( +/obj/machinery/economy/vending/snack, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry) +"rpi" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"rpu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/blue, +/obj/structure/rack, +/obj/item/storage/firstaid/fire{ + pixel_y = 6 + }, +/obj/item/storage/firstaid/doctor{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"rpx" = ( +/obj/effect/turf_decal/box/red, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"rpC" = ( +/obj/effect/decal/cleanable/dirt, +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"rpE" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"rpF" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"rpN" = ( +/obj/structure/window/reinforced, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"rqh" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"rqk" = ( +/obj/effect/landmark/damageturf, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"rqn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"rqo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"rqv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"rqX" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"rqZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/table, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/processing) +"rrk" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy, +/area/station/public/sleep_female) +"rro" = ( +/turf/simulated/wall/r_wall, +/area/station/medical/storage) +"rrp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/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/plasteel/dark, +/area/station/security/permabrig) +"rrJ" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"rrL" = ( +/obj/machinery/door/airlock/freezer, +/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" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"rrT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"rsK" = ( +/obj/machinery/computer/security/telescreen/research{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/explab) +"rsW" = ( +/obj/structure/chair/office/dark, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/control) +"rsX" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"rtm" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/pet/dog/security/detective, +/turf/simulated/floor/plasteel/dark, +/area/station/security/detective) +"rto" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"rtz" = ( +/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 = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/control) +"rtE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"rtF" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"rtH" = ( +/obj/machinery/door/airlock/external{ + id_tag = "arrivalsn_door_int" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/access_button/west{ + autolink_id = "arrivalsn_btn_int"; + name = "exterior access button"; + pixel_y = 1 + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry) +"rtS" = ( +/obj/structure/table/wood/fancy, +/obj/item/trash/plate, +/obj/item/kitchen/utensil/fork{ + pixel_x = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"rtV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"rua" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"rul" = ( +/obj/machinery/airlock_controller/air_cycler{ + ext_door_link_id = "med_outer_door"; + int_button_link_id = "med_int_button"; + int_door_link_id = "med_int_door"; + req_access_txt = "13"; + vent_link_id = "med_vent"; + pixel_x = 25; + ext_button_link_id = "med_outer_button" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "med_vent"; + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/maintenance/starboard2) +"rux" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"ruI" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 8; + pixel_x = -6; + initialized = 1 + }, +/obj/item/paper/pamphlet/deltainfo{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay2) +"rvx" = ( +/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/plasteel, +/area/station/hallway/secondary/exit) +"rvy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"rvD" = ( +/obj/structure/table/reinforced, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/radio{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/radio{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/radio{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/engineering/control) +"rvI" = ( +/obj/machinery/door/airlock/bathroom{ + id = "toilet1"; + id_tag = "toilet1"; + name = "Toilet" + }, +/turf/simulated/floor/plasteel, +/area/station/service/theatre) +"rvJ" = ( +/obj/effect/decal/warning_stripes/west, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/range) +"rvR" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + name = "Virology Shutters"; + id_tag = "Virology1" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"rwg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"rwh" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"rwj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"rwn" = ( +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"rwU" = ( +/turf/simulated/wall, +/area/station/service/barber) +"rwX" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 8; + name = "Evidence" + }, +/obj/structure/closet/secure_closet{ + anchored = 1; + name = "Evidence Storage"; + req_access_txt = "4" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/camera{ + c_tag = "Brig Evidence"; + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/evidence) +"rwY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"rxa" = ( +/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" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"rxb" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/newscaster/security_unit/north, +/turf/simulated/floor/carpet/royalblack, +/area/station/command/office/ntrep) +"rxe" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"rxy" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/beakers, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/engine, +/area/station/science/explab) +"rxC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6; + initialize_directions = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"rxP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"rxZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"ryd" = ( +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/electrical) +"ryh" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"ryj" = ( +/obj/machinery/flasher/portable, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"ryk" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/security/checkpoint/south) +"ryz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/security/permabrig) +"ryH" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "small" + }, +/obj/structure/cable{ + 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/station/maintenance/port) +"ryK" = ( +/obj/machinery/alarm/directional/east, +/mob/living/simple_animal/pet/sloth/paperwork, +/obj/structure/bed/dogbed/pet, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"rza" = ( +/obj/structure/musician/piano, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/service/bar/atrium) +"rzb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"rzk" = ( +/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/plasteel{ + icon_state = "green" + }, +/area/station/hallway/secondary/exit/maintenance) +"rzq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"rzO" = ( +/obj/machinery/economy/vending/scidrobe, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"rAg" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"rAC" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/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/plasteel, +/area/station/engineering/controlroom) +"rAL" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) +"rAS" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"rAU" = ( +/obj/machinery/hydroponics/constructable{ + desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays."; + name = "Prison hydroponics tray"; + using_irrigation = 1 + }, +/obj/item/seeds/orange, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"rBe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"rBp" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"rBP" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"rBT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"rCj" = ( +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"rCw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) +"rCz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"rCA" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"rDi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"rDp" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"rDN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/command/bridge) +"rDQ" = ( +/mob/living/carbon/human/monkey, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"rDS" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, +/area/station/maintenance/apmaint) +"rEf" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/warning_stripes/east, +/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/plasteel/white, +/area/station/science/xenobiology) +"rEr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/white, +/area/station/security/permabrig) +"rEs" = ( +/obj/structure/chair/sofa/bench/right{ + cover_color = "#68452a"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) +"rEQ" = ( +/obj/structure/weightmachine/weightlifter, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"rEZ" = ( +/obj/effect/decal/cleanable/dirt, +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"rFg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/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/plasteel, +/area/station/service/theatre) +"rFl" = ( +/obj/effect/landmark/costume/random, +/obj/structure/table/wood, +/obj/item/clothing/suit/suspenders, +/obj/structure/mirror{ + pixel_x = 26; + pixel_y = -1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"rFE" = ( +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/processing) +"rFT" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/zipties, +/obj/item/flash, +/obj/item/flash{ + pixel_x = 8; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/permabrig) +"rFU" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/maintenance/starboard2) +"rFZ" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/decal/cleanable/vomit, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_y = 10; + pixel_x = -14 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/starboard) +"rGQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct/small/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"rGZ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/visitingroom) +"rHd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"rIs" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay2) +"rIx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"rIO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "purplecorner" + }, +/area/station/hallway/primary/aft) +"rIU" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Court" + }, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"rJd" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"rJg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"rJi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"rJt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"rJD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) +"rJE" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"rJP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"rKg" = ( +/obj/machinery/driver_button{ + id_tag = "chapelgun2"; + name = "Chapel Mass Driver"; + pixel_y = -24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"rKJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/north) +"rKO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel/freezer, +/area/station/medical/virology/lab) +"rKT" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"rLj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/cloning) +"rLn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/warden) +"rLs" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/monkeycubes{ + pixel_y = 3 + }, +/obj/machinery/door_control/shutter/west{ + id = "Virology2"; + name = "Virology Window Shutters Control" + }, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"rLx" = ( +/turf/simulated/floor/carpet/black, +/area/station/command/office/hos) +"rLK" = ( +/obj/machinery/r_n_d/experimentor, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"rLW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/maintenance/starboard2) +"rMh" = ( +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/engineering/aitransit) +"rMi" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine/longrange{ + pixel_y = 4; + department = "Quartermaster's Office" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/station/supply/qm) +"rMm" = ( +/obj/effect/decal/warning_stripes/yellow, +/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, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"rMw" = ( +/obj/structure/bedsheetbin, +/obj/structure/table, +/obj/machinery/light/directional/west, +/obj/machinery/requests_console{ + department = "Crew Quarters"; + name = "Crew Quarters Requests Console"; + pixel_x = -30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/public/fitness) +"rMy" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"rML" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/box/red, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"rMW" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/medical/storage) +"rMZ" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/beans, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/virology_maint) +"rNi" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Detective" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/detective) +"rNL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Court" + }, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"rNU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/port) +"rOe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"rOm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"rOz" = ( +/obj/machinery/door/airlock/glass{ + name = "Cabin" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/public/locker) +"rOG" = ( +/obj/structure/sign/poster/official/random/north, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"rOJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"rOW" = ( +/turf/simulated/wall/r_wall, +/area/station/medical/reception) +"rPh" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"rPs" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"rPv" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"rPF" = ( +/obj/item/kirbyplants, +/obj/machinery/light/nightshifted/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"rPY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/storage) +"rQi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"rQj" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/hand_labeler, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"rQl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/interrogation/observation) +"rQp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"rQu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"rQz" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"rQD" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CMO_Bedroom" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/command/office/cmo) +"rQH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"rQP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"rQZ" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 1 + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"rRb" = ( +/turf/simulated/wall, +/area/station/security/permabrig) +"rRm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel) +"rRP" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Court" + }, +/turf/simulated/floor/plating, +/area/station/legal/courtroom) +"rRQ" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/poster/official/random/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/virology_maint) +"rSb" = ( +/obj/machinery/door/poddoor{ + id_tag = "chapelgun2"; + name = "Chapel Launcher Door"; + protected = 0 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"rSw" = ( +/obj/structure/chair/office/light, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/station/command/office/rd) +"rSI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/station/telecomms/chamber) +"rSM" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/fire{ + pixel_y = 10 + }, +/obj/item/storage/firstaid/fire{ + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"rSQ" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"rTe" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/structure/table/glass, +/obj/item/reagent_containers/food/snacks/grown/banana{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/reagent_containers/syringe/antiviral{ + pixel_y = 8; + pixel_x = -4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology/lab) +"rTi" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + name = "Virology Shutters"; + id_tag = "Virology1" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"rTF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/security/detective) +"rUl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"rUQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"rUS" = ( +/obj/machinery/door_control/bolt_control/north{ + id = "pub_room" + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"rVa" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/permabrig) +"rVu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark/nitrogen{ + temperature = 80 + }, +/area/station/science/xenobiology) +"rVL" = ( +/obj/machinery/economy/vending/coffee, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/bridge) +"rVP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance{ + name = "Detective Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/forensics, +/turf/simulated/floor/plating, +/area/station/security/detective) +"rWw" = ( +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard2) +"rWL" = ( +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"rWV" = ( +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"rXg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"rXk" = ( +/obj/structure/cable{ + 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/carpet/black, +/area/station/command/office/captain/bedroom) +"rXn" = ( +/obj/structure/closet/crate/freezer/iv_storage, +/obj/effect/decal/warning_stripes/blue/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"rXy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating, +/area/station/maintenance/portsolar) +"rXC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "neutral" + }, +/area/station/security/permabrig) +"rXE" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/abandoned_garden) +"rXK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/structure/table, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/processing) +"rXW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"rXX" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"rXY" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id_tag = "EscapeLockdown"; + name = "Escape Shuttle Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "ShuttleKPP" + }, +/turf/simulated/floor/plating, +/area/station/bridge/checkpoint/south) +"rXZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/nightshifted/south, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel, +/area/station/maintenance/abandoned_garden) +"rYh" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"rYn" = ( +/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, +/turf/simulated/floor/carpet, +/area/station/command/bridge) +"rYu" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/britcup{ + pixel_y = 2 + }, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"rYw" = ( +/obj/structure/rack, +/obj/item/storage/lockbox/mindshield, +/obj/item/storage/box/trackimp, +/obj/item/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/effect/decal/warning_stripes/northwest, +/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ + dir = 8 + }, +/obj/machinery/status_display/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"rYP" = ( +/obj/structure/bookcase, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"rYV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/general_air_control/large_tank_control{ + autolink_sensors = list("co2_sensor"="Tank"); + dir = 4; + inlet_injector_autolink_id = "co2_in"; + name = "Carbon Dioxide Supply Control"; + outlet_vent_autolink_id = "co2_out" + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"rZo" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Gas to Filter"; + on = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"rZy" = ( +/obj/machinery/door/window/classic/normal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"rZD" = ( +/obj/machinery/camera{ + c_tag = "Rec Room Aft"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"rZF" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "Kitchen Dinner Windows"; + name = "Kitchen Shutters" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Kitchen Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/service/kitchen) +"rZH" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants{ + pixel_y = 12 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"rZS" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 6; + pixel_x = 6 + }, +/obj/item/phone{ + pixel_x = -14; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 6; + pixel_x = -6; + initialized = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"rZY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"sab" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"san" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"sau" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel/dark/nitrogen{ + temperature = 80 + }, +/area/station/science/xenobiology) +"sav" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/tech_storage) +"saC" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"saJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"saO" = ( +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"saX" = ( +/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, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"sbe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fore2) +"sbf" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/primary/central/ne) +"sbS" = ( +/obj/structure/closet/l3closet, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/medbay) +"sbW" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Singularity"; + name = "Singularity Blast Doors" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"scb" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"scc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/engineering/hardsuitstorage) +"scl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"scH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"scI" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/expedition) +"scJ" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"scR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"scU" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/science/research) +"sda" = ( +/obj/machinery/dna_scannernew, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"sdc" = ( +/obj/effect/decal/warning_stripes/red/hollow, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/main) +"sdl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"sdm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/reagent_containers/iv_bag{ + pixel_y = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"sdI" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/controlroom) +"sea" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"seh" = ( +/obj/effect/mapping_helpers/airlock/polarized{ + id = "Cloning Room" + }, +/obj/machinery/door/airlock/medical/glass, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cloning) +"seK" = ( +/obj/machinery/door/firedoor/closed, +/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/plating, +/area/station/maintenance/virology_maint) +"seN" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"sfb" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"sfh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"sfl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"sfD" = ( +/obj/machinery/doppler_array{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"sfI" = ( +/turf/simulated/wall, +/area/station/medical/virology) +"sgA" = ( +/obj/machinery/recharge_station, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"sgF" = ( +/obj/machinery/space_heater, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"sgM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"sgO" = ( +/obj/effect/landmark/start/barber, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"sgP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/virology_maint) +"sgX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"sgZ" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"shb" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"shr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"shs" = ( +/obj/machinery/economy/vending/assist, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/camera{ + c_tag = "Primary Tool Storage"; + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools) +"shB" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"shI" = ( +/obj/machinery/alarm/directional/north, +/obj/machinery/light/small/nightshifted/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/interrogation/observation) +"shS" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/ai_monitored/storage/eva) +"siM" = ( +/turf/simulated/wall/r_wall, +/area/station/security/storage) +"siO" = ( +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/morgue, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"siP" = ( +/obj/machinery/door/airlock/external{ + id_tag = "engines_door_int"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button/south{ + autolink_id = "engines_btn_int"; + name = "interior access button"; + req_access_txt = "10;13" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"siY" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"sjM" = ( +/turf/simulated/wall, +/area/station/security/prisonlockers) +"sjT" = ( +/obj/item/flag/clown, +/obj/machinery/power/apc/engineering/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/service/clown) +"sjV" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/research) +"skh" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/suit_storage_unit/atmos, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"sko" = ( +/obj/structure/chair/sofa/right, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"skK" = ( +/obj/machinery/door/airlock/external{ + id_tag = "med_outer_door"; + locked = 1 + }, +/obj/machinery/access_button/east{ + autolink_id = "med_outer_button"; + name = "interior access button" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/simulated/floor/engine, +/area/station/maintenance/starboard2) +"skW" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/visitingroom) +"slk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/break_room) +"sls" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id_tag = "experimentor"; + name = "Experimentor Blast Door" + }, +/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" + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"slE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"slV" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"smh" = ( +/obj/structure/table/reinforced, +/obj/item/taperecorder, +/obj/item/tape/random{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/explab) +"sml" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/main) +"smr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"smE" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"smO" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit/maintenance) +"smQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/shard, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"smY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) +"smZ" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "neutral" + }, +/area/station/security/permabrig) +"snj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"sno" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/oak, +/area/station/command/meeting_room) +"snC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"sol" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"son" = ( +/obj/machinery/door/airlock/security/glass, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/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/plasteel/dark, +/area/station/security/permabrig) +"soV" = ( +/obj/item/storage/bag/chemistry, +/obj/item/reagent_containers/food/pill/random_drugs, +/obj/item/reagent_containers/food/pill/random_drugs, +/obj/item/reagent_containers/food/pill/random_drugs, +/obj/item/reagent_containers/food/pill/random_drugs, +/obj/item/reagent_containers/food/pill/random_drugs, +/obj/effect/landmark/damageturf, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"soW" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"soY" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/storage) +"spc" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/toxin{ + pixel_y = 10 + }, +/obj/item/storage/firstaid/toxin{ + pixel_y = 6 + }, +/obj/item/storage/firstaid/toxin{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"spf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"sph" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"spk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"spp" = ( +/obj/structure/sink/directional/north, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/apmaint) +"spq" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"spF" = ( +/obj/machinery/icemachine, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light_switch/south, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"spG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"spS" = ( +/obj/item/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/atmos) +"spW" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"sqb" = ( +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"sqk" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"sqA" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/sop_service, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"sqD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/power/rad_collector, +/obj/structure/window/plasmareinforced{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"sqF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"sqZ" = ( +/obj/effect/landmark/spawner/xeno, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/library) +"srs" = ( +/obj/machinery/door/airlock/external{ + id_tag = "atmostanks_door_int"; + locked = 1; + name = "Atmos External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/access_button/west{ + autolink_id = "atmostanks_btn_int"; + name = "interior access button"; + req_access_txt = "32" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"srJ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/mob/living/simple_animal/cow/betsy, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"srQ" = ( +/obj/effect/turf_decal{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel/white, +/area/station/science/storage) +"srZ" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology/lab) +"ssg" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"sso" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/space, +/area/space/nearstation) +"ssw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel, +/area/station/service/theatre) +"ssy" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"ssL" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/apmaint) +"ssM" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"ssR" = ( +/obj/structure/statue/delta/e, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/hallway/secondary/bridge) +"ssV" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyerPort" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"sts" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"stu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay2) +"stv" = ( +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"stC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/sorting) +"stG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"stW" = ( +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"suy" = ( +/obj/machinery/light/directional/west, +/obj/item/kirbyplants, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"suC" = ( +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "stationai_btn_ext"; + ext_door_link_id = "stationai_door_ext"; + int_button_link_id = "stationai_btn_int"; + int_door_link_id = "stationai_door_int"; + pixel_y = -57; + req_access_txt = "10;13"; + vent_link_id = "stationai_vent" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "stationai_vent"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"suE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"suI" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/carpet, +/area/station/service/bar/atrium) +"suO" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/decal/warning_stripes/red, +/obj/machinery/recharger/wallcharger{ + pixel_x = -27 + }, +/obj/item/clothing/mask/balaclava, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/storage) +"suU" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"suY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"sve" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/station/command/bridge) +"svf" = ( +/obj/structure/rack, +/obj/item/storage/box/teargas, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/warden) +"swf" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"swm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"swy" = ( +/obj/structure/table, +/obj/item/storage/box/evidence, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/evidence) +"swF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"swI" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"swM" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"swR" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"sxb" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "VirRest" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + name = "Virology Shutters"; + id_tag = "Virology1" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology) +"sxf" = ( +/obj/structure/janitorialcart, +/turf/simulated/floor/plasteel{ + icon_state = "purple" + }, +/area/station/service/janitor) +"sxm" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"sxp" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/effect/decal/warning_stripes/south, +/obj/structure/table/reinforced, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/gps/engineering, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"sxq" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit/maintenance) +"sxB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"sxU" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/glass{ + amount = 20 + }, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/key/janitor, +/obj/machinery/door_control/shutter/north{ + id = "janitorshutters"; + name = "Janitor Shutters Control"; + req_access_txt = "26" + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "purple" + }, +/area/station/service/janitor) +"syc" = ( +/obj/machinery/power/emitter{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"syi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/miningdock) +"syk" = ( +/obj/machinery/camera{ + c_tag = "Brig Hall South-East"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"syO" = ( +/obj/structure/closet/secure_closet/research_reagents, +/turf/simulated/floor/engine, +/area/station/science/explab) +"syT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"szb" = ( +/obj/structure/table, +/obj/item/clothing/accessory/armband/science, +/obj/item/stack/packageWrap, +/obj/item/book/manual/wiki/sop_science, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/maintenance/apmaint) +"szd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"szf" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"szx" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start/security_officer, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/brig) +"szy" = ( +/obj/machinery/bodyscanner{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"szQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"szZ" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"sAk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"sAo" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/service/kitchen) +"sAs" = ( +/obj/machinery/smartfridge, +/obj/machinery/door/window/classic/normal{ + dir = 4; + name = "Kitchen Desk" + }, +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Hydroponics Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "Hydroponics Shutters"; + name = "Hydroponics Shutters" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "Kitchen Windows"; + name = "Kitchen Privacy Shutters" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/service/hydroponics) +"sAv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft) +"sAG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"sAN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/processing) +"sAP" = ( +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"sBg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-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/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"sBm" = ( +/obj/structure/chair/comfy/teal, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"sBp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"sBw" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave{ + pixel_y = 5 + }, +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"sBx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/structure/table, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"sBE" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"sBN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"sBV" = ( +/obj/machinery/light/directional/south, +/obj/machinery/computer/scan_consolenew{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"sBX" = ( +/obj/machinery/computer/prisoner{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"sBZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"sCp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"sCq" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"sCD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/toxins/mixing) +"sCZ" = ( +/obj/machinery/alarm/directional/north, +/obj/machinery/kitchen_machine/grill, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"sDh" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"sDj" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"sDq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"sDF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/iv_bag/blood/random, +/obj/item/reagent_containers/iv_bag/blood/random, +/obj/item/reagent_containers/iv_bag/blood/random, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"sDK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "neutral" + }, +/area/station/maintenance/aft) +"sDL" = ( +/obj/item/chair/wood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"sDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology/lab) +"sEB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/light/small/directional/north, +/obj/item/clipboard, +/obj/item/folder/blue, +/obj/machinery/camera{ + c_tag = "AI Transit Tube Access"; + network = list("SS13","Engineering") + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"sEI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/command/office/rd) +"sFo" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/alarm/directional/north, +/obj/item/radio/intercom/directional/east, +/obj/effect/landmark/start/psychiatrist, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"sFp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell Block A South"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"sFB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"sFK" = ( +/turf/simulated/floor/plasteel, +/area/station/science/research) +"sGa" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"sGz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"sGD" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"sGM" = ( +/obj/machinery/door/poddoor/shutters{ + density = 0; + dir = 8; + icon_state = "open"; + id_tag = "meetroomshutters"; + name = "Meeting Room Shutters"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/meeting_room) +"sHa" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/space, +/area/space/nearstation) +"sHd" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/maintenance/fsmaint) +"sHf" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/machinery/newscaster/directional/east, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"sHI" = ( +/obj/machinery/economy/vending/cola, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"sHJ" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"sHY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/station/science/rnd) +"sIa" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/security/interrogation/observation) +"sIg" = ( +/obj/machinery/economy/vending/cola, +/obj/structure/window/reinforced, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"sIj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/processing) +"sIu" = ( +/turf/simulated/wall, +/area/station/maintenance/old_kitchen) +"sIA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/starboard) +"sJk" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/driver_button{ + id_tag = "toxinsdriver"; + pixel_x = -6; + pixel_y = 24; + range = 18 + }, +/obj/machinery/light_switch/north{ + pixel_x = 7 + }, +/mob/living/simple_animal/pet/cat/spacecat/Musya, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"sJD" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/apmaint) +"sJI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"sJL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/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/plasteel, +/area/station/security/brig) +"sJM" = ( +/obj/structure/table/glass, +/obj/item/defibrillator/loaded{ + layer = 4; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"sJZ" = ( +/obj/structure/table_frame/wood, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/starboard) +"sKr" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/service/bar/atrium) +"sKy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"sKG" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"sKM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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 = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/plating, +/area/station/maintenance/fore) +"sKX" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/brig) +"sLp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/break_room) +"sLI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/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 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/warden) +"sMh" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/processing) +"sMj" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"sMz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"sME" = ( +/obj/docking_port/mobile/pod{ + dir = 4; + id = "pod3"; + name = "escape pod 3" + }, +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock"; + name = "Escape Pod Hatch" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_3) +"sMF" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"sMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"sMV" = ( +/obj/machinery/light/directional/east, +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"sMY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel/freezer, +/area/station/medical/virology/lab) +"sNr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/warden) +"sNI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/permabrig) +"sNN" = ( +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"sOj" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/white, +/area/station/science/toxins/mixing) +"sOx" = ( +/obj/effect/decal/cleanable/dirt, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"sOB" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"sOU" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"sPc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"sPt" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/aitransit) +"sPz" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/sign/vacuum{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"sPI" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "VirRest" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology) +"sPP" = ( +/obj/structure/sign/poster/official/random/south, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"sPU" = ( +/obj/machinery/door/poddoor{ + id_tag = "justice_blast"; + name = "Justice Blast Door" + }, +/obj/structure/grille{ + layer = 2.69 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"sPW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"sQa" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"sQe" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/station/security/processing) +"sQj" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/south, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"sQr" = ( +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"sQs" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/warden, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/warden) +"sQA" = ( +/mob/living/simple_animal/parrot/Poly, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/command/office/ce) +"sQB" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/nw) +"sQX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"sQZ" = ( +/obj/effect/decal/warning_stripes/west, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"sRE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"sRJ" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"sRU" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/station/maintenance/library) +"sSr" = ( +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"sSw" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/warden) +"sSz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"sSH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"sSY" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/virology_maint) +"sTp" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 8 + }, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/glass/bottle/facid, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/security/execution) +"sUk" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"sUn" = ( +/obj/machinery/economy/vending/cola, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"sUt" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"sUM" = ( +/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 = 10 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"sVl" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "fpsolar_vent"; + dir = 4 + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "fpsolar_btn_ext"; + ext_door_link_id = "fpsolar_door_ext"; + int_button_link_id = "fpsolar_btn_int"; + int_door_link_id = "fpsolar_door_int"; + pixel_y = 25; + req_access_txt = "32"; + vent_link_id = "fpsolar_vent" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"sVu" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Gambling Den" + }, +/obj/structure/barricade/wooden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/abandonedbar) +"sVv" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"sVG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/public/sleep) +"sVQ" = ( +/obj/machinery/requests_console{ + department = "Virology"; + departmentType = 3; + name = "Virology Requests Console"; + pixel_y = 30 + }, +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"sWJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/control) +"sWZ" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/warning_stripes/northeast, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"sXA" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/damaged_window, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "detprivacy"; + name = "Detective Privacy Shutters Control" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"sXB" = ( +/obj/structure/table/wood, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"sYj" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"sYl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"sYC" = ( +/obj/structure/closet/secure_closet/hos, +/obj/item/clothing/accessory/holster, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/station/command/office/hos) +"sYI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"sYQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"sYX" = ( +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) +"sZb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/permabrig) +"sZp" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/port) +"sZw" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fsmaint) +"sZE" = ( +/obj/structure/closet/cabinet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/starboard) +"tad" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "CMO's Junction"; + sort_type_txt = "10" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + 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/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"tam" = ( +/obj/structure/chair/sofa/left{ + color = "#A30FAF"; + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"tar" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"taB" = ( +/obj/machinery/economy/vending/coffee, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"taH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/constructable_frame/machine_frame, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/circuitboard/pacman, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"taT" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"tbb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/cherry, +/area/station/service/hydroponics) +"tbo" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"tbp" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"tbK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/maintenance/starboard2) +"tbM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast west"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/bridge) +"tci" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/engineering/hardsuitstorage) +"tcQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"tcZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"tdi" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/orange, +/area/station/supply/qm) +"tdj" = ( +/obj/machinery/camera{ + c_tag = "Vault"; + dir = 4 + }, +/mob/living/simple_animal/mouse/brown/Tom, +/turf/simulated/floor/plasteel/dark, +/area/station/command/vault) +"tdo" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "greencorner" + }, +/area/station/hallway/secondary/exit) +"tdv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"tdA" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"tdF" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"teg" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/virology_maint) +"tep" = ( +/obj/effect/decal/warning_stripes/south, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"teK" = ( +/obj/structure/rack, +/obj/random/tool, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"teT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) +"tfg" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"tfw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"tfD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"tfE" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"tfZ" = ( +/obj/structure/chair/stool/bar{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"tgk" = ( +/obj/structure/table/reinforced, +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/item/razor{ + pixel_y = 5 + }, +/obj/machinery/camera{ + c_tag = "Barber Shop"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"tgn" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/beach/away/water/deep/dense{ + density = 0; + water_overlay_image = null + }, +/area/station/hallway/secondary/exit) +"tgq" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"tgD" = ( +/obj/machinery/hydroponics/soil, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"thm" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"ths" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) +"thU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"thX" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "vault" + }, +/area/station/security/interrogation) +"tic" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"tiA" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"tiC" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "N2 to Pure" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"tiN" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"tja" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/bridge/checkpoint/south) +"tjq" = ( +/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/plasteel/dark, +/area/station/security/permabrig) +"tjB" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/apmaint) +"tjM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel, +/area/station/science/research) +"tjY" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"tkc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"tkj" = ( +/obj/structure/table/wood, +/obj/machinery/button/windowtint{ + pixel_x = -5; + id = "Magistrate" + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"tkz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/economy/vending/atmosdrobe, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/engineering/atmos) +"tkO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"tkY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"tld" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/virology) +"tlf" = ( +/obj/effect/decal/warning_stripes/east, +/obj/item/radio/intercom/directional/east, +/obj/machinery/iv_drip, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology/lab) +"tlg" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"tll" = ( +/obj/structure/table/reinforced, +/obj/item/trash/plate, +/obj/machinery/door/window/classic/normal{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"tls" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "atmostanks_vent" + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "atmostanks_btn_ext"; + ext_door_link_id = "atmostanks_door_ext"; + int_button_link_id = "atmostanks_btn_int"; + int_door_link_id = "atmostanks_door_int"; + pixel_x = 57; + req_access_txt = "32"; + vent_link_id = "atmostanks_vent" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/gravitygenerator) +"tlB" = ( +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"tlP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"tlR" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/primary/central/nw) +"tlS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"tlU" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/service/hydroponics) +"tmh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"tmr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "neutral" + }, +/area/station/security/permabrig) +"tmx" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/electrical) +"tmY" = ( +/obj/item/emptysandbag, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"tnj" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"tnr" = ( +/mob/living/simple_animal/pet/dog/fox/fennec/fenya, +/obj/structure/bed/dogbed/pet, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"tnu" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + autolink_id = "n2o_in"; + dir = 4; + icon_state = "on"; + on = 1; + pixel_y = 1 + }, +/turf/simulated/floor/engine/n20, +/area/station/engineering/atmos) +"tnB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/dark, +/area/station/service/library) +"tnN" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"tnO" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6; + color = "lightblue" + }, +/obj/structure/morgue, +/obj/effect/landmark/spawner/rev, +/obj/machinery/camera{ + c_tag = "Medbay Morgue West"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"tox" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"toB" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"toG" = ( +/obj/machinery/door/airlock/hydroponics, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/abandoned_garden) +"toK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"toO" = ( +/obj/machinery/camera{ + c_tag = "Medbay Waiting Room"; + network = list("Medbay","SS13"); + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"toQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"toU" = ( +/obj/item/storage/box/donkpockets, +/mob/living/simple_animal/mouse/gray, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"tpc" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "greenblue" + }, +/area/station/maintenance/abandoned_garden) +"tpg" = ( +/obj/machinery/door/poddoor{ + id_tag = "justice_blast"; + name = "Justice Blast Door" + }, +/obj/structure/grille{ + layer = 2.69 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"tpn" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/tech_storage) +"tpv" = ( +/obj/machinery/light_switch/north, +/turf/simulated/floor/wood/oak, +/area/station/command/office/hop) +"tpP" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"tqd" = ( +/obj/machinery/door/airlock/security/glass, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"tqg" = ( +/obj/structure/cable{ + 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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"tqm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"tqr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"tqE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/virology_maint) +"tqO" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"tqS" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave{ + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"trf" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"trn" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"tro" = ( +/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, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port) +"trv" = ( +/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/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/legal/lawoffice) +"trC" = ( +/obj/machinery/gateway/centerstation, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/service/expedition) +"trG" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plating, +/area/station/maintenance/starboard2) +"trS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/old_detective) +"trX" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"tsc" = ( +/obj/machinery/hologram/holopad{ + pixel_x = 16; + pixel_y = 16 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"tsd" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/processing) +"tsl" = ( +/obj/effect/decal/warning_stripes/red/hollow, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/main) +"tsr" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/decal/warning_stripes/red, +/obj/machinery/recharger/wallcharger{ + pixel_x = -27 + }, +/obj/item/clothing/mask/balaclava, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/storage) +"tsP" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"tsQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/station/maintenance/starboard2) +"tsR" = ( +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"ttb" = ( +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"tti" = ( +/obj/item/chair/wood{ + dir = 4; + pixel_y = 5; + pixel_x = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"ttm" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"ttx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"ttD" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"ttS" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + name = "Virology Shutters"; + id_tag = "Virology1" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"ttX" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/sorting) +"tuq" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"tuF" = ( +/obj/effect/spawner/random_barrier/possibly_welded_airlock, +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"tuP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/structure/sign/engineering{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"tuQ" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 6 + }, +/obj/item/paper/firingrange, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/range) +"tuT" = ( +/obj/structure/bed/mattress/dirty, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"tvu" = ( +/obj/structure/sign/vacuum/external, +/turf/simulated/wall, +/area/station/supply/miningdock) +"tvx" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet/crate/freezer, +/obj/item/seeds/wheat, +/obj/item/seeds/wheat, +/obj/item/seeds/wheat, +/obj/item/seeds/wheat/rice, +/obj/item/seeds/wheat/rice, +/obj/item/seeds/wheat/rice, +/obj/item/seeds/tomato, +/obj/item/seeds/tomato, +/obj/item/seeds/tomato, +/obj/item/seeds/berry, +/obj/item/seeds/berry, +/obj/item/seeds/berry, +/obj/item/seeds/apple, +/obj/item/seeds/apple, +/obj/item/seeds/apple, +/turf/simulated/floor/plasteel, +/area/station/service/kitchen) +"tvI" = ( +/obj/machinery/camera{ + c_tag = "Dorm Hallway Starboard" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"twD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "E.X.P.E.R.I-MENTOR Lab" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/tox, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"txi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/storage) +"txt" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"txG" = ( +/obj/machinery/economy/vending/tool, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"txR" = ( +/obj/machinery/camera{ + c_tag = "Experimention Lab"; + network = list("Experimentator","Research","SS13") + }, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"txW" = ( +/obj/effect/decal/warning_stripes/blue, +/obj/effect/decal/warning_stripes/northeast, +/obj/machinery/shower{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"tyb" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/floodlight, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"tyw" = ( +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"tyD" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/machinery/light_switch/south, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"tyI" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"tyW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/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/plasteel/dark, +/area/station/security/execution) +"tzb" = ( +/obj/structure/closet/crate/freezer/iv_storage, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/secondary) +"tzp" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/closet/radiation, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"tzq" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"tAa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"tAb" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/bridge/checkpoint/south) +"tAl" = ( +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"tAn" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"tAt" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"tAH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/station/command/office/blueshield) +"tAT" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/structure/sign/poster/official/random/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"tAW" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"tBk" = ( +/obj/machinery/hydroponics/constructable{ + desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays."; + name = "Prison hydroponics tray"; + using_irrigation = 1 + }, +/obj/item/seeds/tobacco, +/obj/machinery/camera{ + c_tag = "Prison General North"; + network = list("Prison","SS13"); + dir = 4 + }, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"tBu" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"tBD" = ( +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"tCb" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"tCF" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cryo) +"tCG" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/engineering/hardsuitstorage) +"tCL" = ( +/obj/structure/dresser, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology) +"tCX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/reflector/box{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"tCY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"tDs" = ( +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/brig) +"tDw" = ( +/turf/simulated/wall, +/area/station/medical/reception) +"tDD" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"tDR" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"tEe" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/cable{ + d2 = 4; + 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" + }, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) +"tEi" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/visitingroom) +"tEs" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"tEu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plating, +/area/station/maintenance/fore) +"tEw" = ( +/obj/structure/showcase{ + density = 0; + dir = 4; + icon = 'icons/mob/robots.dmi'; + icon_state = "robot_old"; + name = "Cyborg Statue"; + pixel_x = -9; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/ai) +"tEx" = ( +/obj/effect/decal/warning_stripes/west, +/obj/effect/landmark/spawner/rev, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology/lab) +"tEA" = ( +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"tEC" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"tEH" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/landmark/start/warden, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/warden) +"tFf" = ( +/obj/structure/chair/sofa/left, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"tFi" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall/r_wall, +/area/station/maintenance/starboard2) +"tFq" = ( +/obj/structure/cable{ + 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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/control) +"tFt" = ( +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/service/expedition) +"tFP" = ( +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "Interrogation" + }, +/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/plasteel/dark, +/area/station/security/interrogation/observation) +"tFR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"tGh" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/table, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"tGN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"tGY" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/turf/simulated/floor/engine, +/area/station/science/explab) +"tHh" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) +"tHn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"tHO" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/virology_maint) +"tHZ" = ( +/obj/structure/table/wood, +/obj/item/kitchen/utensil/fork, +/obj/item/kitchen/utensil/spoon, +/turf/simulated/floor/carpet/orange, +/area/station/service/bar/atrium) +"tIf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "greenblue" + }, +/area/station/service/hydroponics) +"tIo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plating, +/area/station/maintenance/starboard2) +"tIr" = ( +/obj/machinery/economy/vending/hatdispenser, +/turf/simulated/floor/plasteel/dark, +/area/station/public/locker) +"tIF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/plating, +/area/station/maintenance/fore) +"tIO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/command/qm/glass, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/supply/qm, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "qm" + }, +/obj/effect/mapping_helpers/airlock/autoname, +/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/plasteel, +/area/station/supply/qm) +"tJa" = ( +/obj/machinery/alarm/directional/west, +/obj/structure/bed/dogbed/runtime, +/mob/living/simple_animal/pet/cat/Runtime, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"tJc" = ( +/obj/item/kirbyplants, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"tJd" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall, +/area/station/medical/reception) +"tJj" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/machinery/door/poddoor{ + id_tag = "maintrobotics"; + name = "Decrepit Blast Door" + }, +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/west, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"tJk" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"tJO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"tJR" = ( +/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/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"tLi" = ( +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/starboard) +"tLw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"tLI" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/food/snacks/breadslice, +/obj/item/reagent_containers/food/snacks/breadslice, +/obj/item/reagent_containers/food/snacks/breadslice, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/onion, +/obj/item/reagent_containers/food/snacks/grown/onion, +/obj/item/storage/box/donkpockets, +/obj/item/storage/fancy/egg_box, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/rice, +/turf/simulated/floor/plasteel/white, +/area/station/security/permabrig) +"tMF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10; + initialize_directions = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"tMG" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"tNd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"tNh" = ( +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "EscapeLockdown"; + name = "Escape Shuttle Lockdown" + }, +/obj/machinery/door/window/reinforced/reversed{ + dir = 4; + name = "Security Checkpoint" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/checkpoint/south) +"tNm" = ( +/obj/structure/dresser, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"tNn" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"tNT" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/maintenance/electrical) +"tNU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"tOd" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/sop_legal{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/security_space_law/black, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"tOf" = ( +/obj/machinery/papershredder, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/qm) +"tOt" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"tOP" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"tOS" = ( +/obj/item/chair/stool, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"tOT" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"tPh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/lobby) +"tPu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"tPx" = ( +/obj/machinery/power/solar_control{ + dir = 4; + name = "Aft Starboard Solar Control" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"tPX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"tQs" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/hallway/primary/starboard) +"tQD" = ( +/obj/structure/cable{ + 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/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"tQK" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/power/emitter{ + dir = 8 + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"tQS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/brig) +"tRa" = ( +/obj/machinery/economy/vending/cola, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"tRi" = ( +/obj/machinery/door/airlock/external{ + id_tag = "assolar_door_ext"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/access_button/west{ + autolink_id = "assolar_btn_ext"; + name = "exterior access button"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"tRF" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/welding, +/obj/item/stack/cable_coil, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/maintenance/apmaint) +"tRH" = ( +/obj/machinery/suit_storage_unit/security/hos, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/wood, +/area/station/command/office/hos) +"tSn" = ( +/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, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"tSt" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 5 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/break_room) +"tSM" = ( +/obj/machinery/sparker{ + id = "testigniter"; + name = "Test Igniter"; + pixel_x = 25 + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"tST" = ( +/obj/machinery/atmospherics/unary/thermomachine/freezer/on{ + name = "Temperature control unit" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"tTe" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay2) +"tTk" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/turf/simulated/floor/plating, +/area/station/science/toxins/mixing) +"tTp" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"tTt" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/qm) +"tTJ" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/visitingroom) +"tTZ" = ( +/obj/machinery/door/airlock/external{ + id_tag = "laborcamp_home"; + locked = 1; + name = "Labor Camp Airlock" + }, +/obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"tUs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"tUw" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"tUS" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/sop_science, +/obj/item/book/manual/wiki/experimentor{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/light_switch/east, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"tUU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"tUW" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/spawner/xeno, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"tUZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood/oak, +/area/station/public/vacant_office) +"tVj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/brig) +"tVH" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"tVV" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast north"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"tVX" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + name = "Virology Shutters"; + id_tag = "Virology1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"tWj" = ( +/obj/effect/spawner/random_spawners/wall_rusted_probably, +/turf/simulated/wall, +/area/station/maintenance/apmaint) +"tWq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"tWx" = ( +/obj/machinery/economy/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard2) +"tWG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/can, +/obj/item/wirecutters, +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"tWH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/public/vacant_office) +"tWL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"tXb" = ( +/obj/machinery/alarm/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/decal/warning_stripes/northwest, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"tXj" = ( +/obj/machinery/cryopod/right, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"tXq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"tXu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/warden) +"tXA" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"tXH" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"tXZ" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/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/plasteel{ + dir = 10; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"tYa" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Detective"; + sort_type_txt = "24" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/starboard) +"tYs" = ( +/obj/structure/closet/secure_closet{ + anchored = 1; + name = "Evidence Storage"; + req_access_txt = "4" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/door/window/reinforced/reversed{ + dir = 8; + name = "Evidence" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/evidence) +"tYw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/reflector/box{ + dir = 8 + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"tYB" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 4 + }, +/obj/machinery/atmospherics/portable/canister/air{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"tYC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"tYD" = ( +/obj/effect/spawner/random_spawners/oil_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"tZt" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9; + color = "lightblue" + }, +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"tZu" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"tZv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"tZJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"tZR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"uah" = ( +/obj/structure/table/reinforced, +/obj/machinery/door_control/shutter{ + id = "RnDChem"; + name = "Chamber Blast Doors"; + pixel_x = 3; + pixel_y = 5 + }, +/obj/machinery/ignition_switch{ + id = "testigniter"; + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/explab) +"uai" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"uat" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"uaB" = ( +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/east) +"uaH" = ( +/obj/structure/flora/rock/jungle, +/obj/item/clothing/head/soft/rainbow, +/turf/simulated/floor/grass/no_creep, +/area/station/hallway/secondary/exit) +"uaL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fsmaint) +"uaN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/main) +"uaS" = ( +/obj/machinery/economy/vending/cigarette, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/bridge) +"uaT" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"uaU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"uaZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"ubk" = ( +/obj/structure/rack, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/seccarts{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"ubG" = ( +/obj/machinery/computer/security{ + dir = 8; + network = list("SS13","Research Outpost","Mining Outpost") + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"ubW" = ( +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/public/fitness) +"uci" = ( +/obj/machinery/door/airlock/external{ + id_tag = "apmaint2_door_ext"; + locked = 1; + name = "West Maintenance External Access" + }, +/obj/machinery/access_button/north{ + autolink_id = "apmaint2_btn_ext"; + name = "exterior access button" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"ucm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"ucQ" = ( +/obj/machinery/door/airlock/glass{ + name = "Cabin" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"udb" = ( +/obj/structure/falsewall, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"udj" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "bridge blast north"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/spawner/window/reinforced/grilled, +/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{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/bridge) +"udo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/engineering/hardsuitstorage) +"udz" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/carpet/black, +/area/station/legal/courtroom) +"udK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Prison General South"; + network = list("Prison","SS13"); + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/security/permabrig) +"udR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"uej" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"ues" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/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/plasteel/dark, +/area/station/command/bridge) +"uew" = ( +/obj/machinery/door/airlock{ + name = "Toilet"; + id_tag = "DormToilet1" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"ueF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"ueI" = ( +/obj/machinery/atmospherics/portable/canister/nitrogen, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"ufa" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/folder/red, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/old_detective) +"uft" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"ufH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"ufU" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"uge" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/door/window/classic/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/old_detective) +"ugq" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"ugr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology) +"ugI" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"uho" = ( +/obj/structure/cable{ + 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/wood/oak, +/area/station/maintenance/library) +"uhp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/visitingroom) +"uht" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"uhx" = ( +/obj/structure/table/wood, +/obj/item/stamp/clown{ + pixel_x = -5 + }, +/obj/item/toy/figure/crew/clown{ + pixel_x = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/service/clown) +"uhH" = ( +/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/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit/maintenance) +"uhM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random/north, +/turf/simulated/floor/plating, +/area/station/supply/sorting) +"uic" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/break_room) +"uid" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/maintenance/electrical) +"uir" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/north) +"uit" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + autolink_id = "tox_out"; + dir = 4; + external_pressure_bound = 0; + icon_state = "in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + releasing = 0 + }, +/turf/simulated/floor/engine/plasma, +/area/station/engineering/atmos) +"uiL" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"ujc" = ( +/obj/item/radio/security{ + pixel_x = -8 + }, +/obj/item/radio/security{ + pixel_x = -4 + }, +/obj/item/radio/security, +/obj/item/radio/security{ + pixel_x = 4 + }, +/obj/item/radio/security{ + pixel_x = 8 + }, +/obj/structure/rack, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/machinery/alarm/directional/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/storage) +"ujq" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall9e"; + location = "hall9d" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"ujx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"ujF" = ( +/obj/machinery/door/airlock/external{ + id_tag = "fpsolar_door_ext"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/access_button/south{ + autolink_id = "fpsolar_btn_ext"; + name = "exterior access button"; + req_access_txt = "32" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"ujU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"ukb" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"ukk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"uks" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"ukJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"ukT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"uld" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"ulm" = ( +/turf/simulated/wall/r_wall, +/area/station/security/armory/secure) +"ulq" = ( +/obj/effect/landmark/start/security_officer, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/storage) +"uly" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/warning_stripes/northeastcorner, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"ulI" = ( +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/obj/item/clothing/accessory/stethoscope, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"ulP" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/beaker/large, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"uma" = ( +/obj/structure/sign/radiation/rad_area, +/turf/simulated/wall, +/area/station/engineering/control) +"ume" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fsmaint) +"umf" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"umr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/medical/virology/lab) +"umO" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"umY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"une" = ( +/obj/effect/decal/warning_stripes/red/hollow, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"unt" = ( +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"unM" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"unR" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "transitlock"; + name = "Transit Tube Lockdown" + }, +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/engineering/aitransit) +"unT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/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" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"uoa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"uoe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/cryo) +"uov" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore2) +"uoQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"uoR" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "evidence"; + dir = 8 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/evidence) +"uoU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"upc" = ( +/obj/machinery/atmospherics/binary/valve/digital, +/turf/simulated/floor/engine, +/area/station/engineering/engine/supermatter) +"upe" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"upf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/freezer, +/area/station/maintenance/aft) +"upi" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/camera{ + c_tag = "Medbay Surgery North"; + dir = 1 + }, +/obj/machinery/button/windowtint/south{ + id = "Surgery1"; + pixel_x = -8 + }, +/obj/machinery/holosign_switch/south{ + id = "Surgery1"; + pixel_x = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/surgery/primary) +"upl" = ( +/obj/structure/table/reinforced, +/obj/item/poster/random_official, +/obj/item/poster/random_official{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/lighter/random, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"upq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/service/chapel/office) +"upw" = ( +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"upD" = ( +/obj/structure/chair/barber{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/newscaster/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"upI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/decal/warning_stripes/west, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"upO" = ( +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"upX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/hardsuitstorage) +"uqc" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"uqf" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 8; + location = "Atmospherics" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/door/window/classic/reversed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mule_bot, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"uqn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/cyan, +/area/station/command/office/cmo) +"uqx" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"uqF" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/south, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"uro" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"urp" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "greencorner" + }, +/area/station/hallway/secondary/exit) +"urq" = ( +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/cloning) +"usc" = ( +/obj/structure/bed, +/obj/item/bedsheet/mime, +/obj/structure/sign/poster/official/random/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"usF" = ( +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos/control) +"usR" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "rampbottom" + }, +/area/station/public/fitness) +"usY" = ( +/obj/structure/table/glass, +/obj/effect/spawner/lootdrop/officetoys, +/obj/machinery/light/directional/east, +/obj/machinery/ai_status_display/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"utQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"uuc" = ( +/obj/item/flag/nt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"uuE" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"uuY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"uvD" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/fsmaint) +"uvE" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/door_control/bolt_control/west{ + id = "toilet1" + }, +/obj/structure/sign/poster/official/random/north, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel, +/area/station/service/theatre) +"uvM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"uvQ" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"uwf" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "cmo" + }, +/area/station/command/office/cmo) +"uwh" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"uwp" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall/r_wall, +/area/station/engineering/hardsuitstorage) +"uwZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 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/floor/plasteel/dark, +/area/station/security/permabrig) +"uxh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/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/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"uxq" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/bridge) +"uxu" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/landmark/spawner/xeno, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"uxv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"uxJ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/brig) +"uyc" = ( +/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/plasteel, +/area/station/maintenance/port) +"uyi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/mineral/tranquillite, +/area/station/maintenance/starboard2) +"uzb" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) +"uzh" = ( +/obj/machinery/status_display{ + name = "Дисплей статуса" + }, +/turf/simulated/wall, +/area/station/service/kitchen) +"uzO" = ( +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/public/fitness) +"uzU" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"uzX" = ( +/obj/machinery/camera{ + c_tag = "Research Break Room"; + dir = 4; + network = list("Research","SS13") + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"uAs" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/canister/carbon_dioxide, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"uAA" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"uAD" = ( +/obj/machinery/flasher{ + pixel_x = 24; + pixel_y = -24; + id = "Cell 5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"uAU" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/sw) +"uAW" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"uAY" = ( +/obj/machinery/light/directional/south, +/obj/structure/table/reinforced, +/obj/structure/table/reinforced, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/clothing/glasses/meson/engine{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"uBa" = ( +/obj/structure/cable{ + 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{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"uBg" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"uBp" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/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{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/controlroom) +"uBD" = ( +/obj/structure/cable{ + 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/plasteel/white, +/area/station/science/xenobiology) +"uBS" = ( +/obj/machinery/mineral/stacking_unit_console, +/turf/simulated/wall, +/area/station/maintenance/disposal) +"uCt" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/frog/Wednesday, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"uCF" = ( +/obj/structure/cable{ + 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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"uCO" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"uDp" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"uDz" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/maintenance/port) +"uDK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"uDO" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"uEi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central) +"uEw" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"uFe" = ( +/obj/effect/decal/cleanable/dirt, +/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, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"uFf" = ( +/obj/machinery/economy/vending/detdrobe, +/obj/machinery/camera{ + c_tag = "Detective's Office"; + network = list("Research","SS13") + }, +/obj/machinery/status_display/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/station/security/detective) +"uFI" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"uFO" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"uFP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/light/blue, +/area/station/maintenance/old_kitchen) +"uFS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/station/maintenance/apmaint) +"uGc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/maintenance/medmaint) +"uGe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/public/fitness) +"uGp" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/wood/fancy, +/area/station/public/sleep_female) +"uGY" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "caution" + }, +/area/station/public/fitness) +"uHb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"uHo" = ( +/obj/machinery/economy/vending/cigarette, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"uHq" = ( +/obj/machinery/economy/vending/suitdispenser, +/turf/simulated/floor/plasteel/dark, +/area/station/public/locker) +"uHs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"uHJ" = ( +/obj/structure/showcase, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/station/security/warden) +"uHS" = ( +/obj/structure/table_frame, +/obj/effect/decal/cleanable/glass{ + layer = 2.5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"uHX" = ( +/obj/item/kirbyplants, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"uIk" = ( +/obj/machinery/alarm/directional/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore) +"uIn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"uIo" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/station/service/hydroponics) +"uIK" = ( +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/nw) +"uIL" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 4; + pixel_x = -6 + }, +/obj/item/pen/red{ + pixel_y = 6; + pixel_x = -4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"uJs" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/controlroom) +"uJu" = ( +/obj/machinery/atmospherics/portable/scrubber/huge/stationary, +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel/white, +/area/station/security/permabrig) +"uJH" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + autolink_id = "n2o_out"; + dir = 4; + external_pressure_bound = 0; + icon_state = "in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + releasing = 0 + }, +/turf/simulated/floor/engine/n20, +/area/station/engineering/atmos) +"uKe" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/space, +/area/station/maintenance/starboardsolar) +"uKo" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"uKp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"uKq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/security/permabrig) +"uKs" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/reagent_containers/spray/cleaner, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"uKv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"uKC" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"uKF" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"uKK" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"uKR" = ( +/obj/item/reagent_containers/food/snacks/candy/gummybear/green, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "cmo" + }, +/area/station/maintenance/starboard2) +"uKU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/security/permabrig) +"uKV" = ( +/obj/machinery/light/directional/east, +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plasteel/dark, +/area/station/command/meeting_room) +"uLq" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/east, +/obj/effect/decal/warning_stripes/west, +/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/plasteel/white, +/area/station/science/xenobiology) +"uLB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/electrical, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"uLC" = ( +/obj/machinery/kitchen_machine/oven, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/permabrig) +"uLE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/directional/west, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"uMd" = ( +/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, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"uMo" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"uMt" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"uMu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/public/fitness) +"uMC" = ( +/obj/structure/bed/dogbed, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"uMD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"uME" = ( +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"uMM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/microscope{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/security/detective) +"uMO" = ( +/obj/machinery/hydroponics/constructable{ + desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays."; + name = "Prison hydroponics tray"; + using_irrigation = 1 + }, +/obj/item/seeds/carrot, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"uMS" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"uMY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"uNf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"uNk" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"uNv" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"uNy" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/brig) +"uNz" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"uNH" = ( +/obj/machinery/atmospherics/portable/canister/carbon_dioxide, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"uNM" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/cable{ + 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/plasteel/white, +/area/station/science/research) +"uNS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/service/expedition) +"uNZ" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/turbine) +"uOa" = ( +/obj/item/chair/light, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/maintenance/fsmaint) +"uOh" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/zipties, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"uOC" = ( +/obj/machinery/light/directional/north, +/obj/structure/table, +/obj/item/handheld_defibrillator{ + pixel_y = 2; + pixel_x = -8 + }, +/obj/item/handheld_defibrillator{ + pixel_y = 2; + pixel_x = -4 + }, +/obj/item/handheld_defibrillator{ + pixel_y = 2 + }, +/obj/item/handheld_defibrillator{ + pixel_y = 2; + pixel_x = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"uOK" = ( +/obj/machinery/requests_console{ + department = "Morgue"; + departmentType = 5; + name = "Morgue Requests Console"; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"uOM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/processing) +"uOS" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"uOZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mineral/stacking_machine{ + output_dir = 2; + stack_amt = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/maintenance/disposal) +"uPq" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"uPx" = ( +/obj/structure/marker_beacon{ + icon_state = "markerlime-on"; + initialized = 1 + }, +/obj/structure/window/full/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/station/hallway/secondary/exit) +"uPJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"uPP" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"uQi" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"uQx" = ( +/obj/structure/beebox/unwrenched, +/turf/simulated/floor/plasteel, +/area/station/service/hydroponics) +"uQB" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Port to Filter" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"uQJ" = ( +/obj/machinery/door/airlock/external{ + id_tag = "stationai_door_int"; + locked = 1; + name = "Minisat Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button/south{ + autolink_id = "stationai_btn_int"; + name = "interior access button"; + req_access_txt = "10;13" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"uQP" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/orange, +/area/station/service/bar/atrium) +"uQQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"uQW" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/analyzer, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"uRf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"uRg" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/turf/simulated/floor/plasteel/dark, +/area/station/security/brig) +"uRt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"uRC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/ants, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"uRI" = ( +/obj/machinery/economy/vending/snack, +/obj/structure/sign/poster/official/random/south, +/turf/simulated/floor/plasteel/dark, +/area/station/security/brig) +"uSp" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot/sec, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/suit/armor/bulletproof/sec, +/obj/item/clothing/head/helmet/alt, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/reinforced/normal{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/effect/decal/warning_stripes/southwest, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/suit/armor/bulletproof/sec, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/suit/armor/riot/sec, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ + dir = 8 + }, +/obj/machinery/status_display/directional/east, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"uSu" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry) +"uSw" = ( +/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/plasteel{ + icon_state = "bar" + }, +/area/station/service/clown) +"uSM" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, +/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/plating, +/area/station/maintenance/starboard) +"uST" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"uTc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"uTf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/service/barber) +"uTg" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + name = "Virology Shutters"; + id_tag = "Virology1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"uTw" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/medical/virology/lab) +"uTA" = ( +/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/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/processing) +"uTO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/hardsuitstorage) +"uTP" = ( +/obj/machinery/door/window/classic/reversed{ + name = "Primate Pen"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start/geneticist, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/genetics{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"uUc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"uUh" = ( +/obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-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/plating, +/area/station/engineering/controlroom) +"uUo" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"uUt" = ( +/obj/structure/table, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/directional/north, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"uUA" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/maintenance/port2) +"uUC" = ( +/obj/machinery/kitchen_machine/oven, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"uUP" = ( +/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/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"uUX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/toxins/mixing) +"uVh" = ( +/obj/effect/decal/cleanable/ants, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"uVz" = ( +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"uVE" = ( +/obj/structure/showcase{ + density = 0; + dir = 8; + icon = 'icons/mob/robots.dmi'; + icon_state = "robot_old"; + name = "Cyborg Statue"; + pixel_x = 9; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/turret_protected/ai) +"uVM" = ( +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "engines_btn_ext"; + ext_door_link_id = "engines_door_ext"; + int_button_link_id = "engines_btn_int"; + int_door_link_id = "engines_door_int"; + pixel_y = 25; + req_access_txt = "10;13"; + vent_link_id = "engines_vent" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"uVU" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"uWd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/execution) +"uWn" = ( +/obj/structure/sign/greencross{ + icon_state = "lifestar" + }, +/turf/simulated/wall, +/area/station/medical/reception) +"uWA" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start/doctor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"uWB" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/white, +/area/station/science/storage) +"uWI" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/status_display/directional/south, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 3; + name = "Atmospherics Requests Console"; + pixel_x = 30 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/station/engineering/atmos/control) +"uWR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"uXe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/locker) +"uXf" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/processing) +"uXv" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/wood/oak, +/area/station/service/bar/atrium) +"uXC" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/brig) +"uXF" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/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/plasteel, +/area/station/service/hydroponics) +"uXU" = ( +/obj/machinery/door/airlock/external{ + id_tag = "med_int_door"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/access_button/east{ + autolink_id = "med_int_button"; + name = "interior access button" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/simulated/floor/engine, +/area/station/maintenance/starboard2) +"uXV" = ( +/obj/machinery/airlock_controller/air_cycler{ + ext_door_link_id = "vir_outer_door"; + int_button_link_id = "vir_int_button"; + int_door_link_id = "vir_int_door"; + req_access_txt = "13"; + vent_link_id = "vir_vent"; + pixel_x = 25; + ext_button_link_id = "vir_outer_button" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "vir_vent"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"uYg" = ( +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"uYi" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"uYk" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"uYD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/wood/fancy/black, +/obj/item/folder/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/courtroom) +"uYX" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + autolink_id = "n2_in"; + dir = 8; + icon_state = "on"; + on = 1; + volume_rate = 200 + }, +/turf/simulated/floor/engine/n2, +/area/station/engineering/atmos) +"uZe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/supply/sorting) +"uZj" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"uZr" = ( +/obj/machinery/door/firedoor/closed, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"uZz" = ( +/obj/effect/landmark/start/janitor, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"vas" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/classic/normal{ + name = "Cryo Tank Storage" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"vaF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/main) +"vaT" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/security/permabrig) +"vaU" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + cell_type = 25000; + dir = 4; + name = "Courtroom"; + pixel_x = 24; + shock_proof = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"vaZ" = ( +/obj/structure/grille, +/obj/structure/window/plasmareinforced{ + dir = 1 + }, +/obj/structure/window/plasmareinforced, +/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/meter{ + layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/station/science/toxins/mixing) +"vbj" = ( +/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, +/turf/simulated/floor/plasteel/dark, +/area/station/turret_protected/ai_upload) +"vbA" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"vbB" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "caution" + }, +/area/station/engineering/atmos/control) +"vbK" = ( +/obj/structure/closet/bombclosetsecurity, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"vbQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"vcm" = ( +/obj/structure/cable{ + 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/sortjunction{ + name = "Engineering Junction"; + sort_type_txt = "4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/decal/warning_stripes/north, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"vcp" = ( +/obj/structure/table/wood, +/obj/item/phone, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"vcE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/flasher_button{ + id = "prison4"; + pixel_x = 24; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"vcM" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/multi, +/turf/simulated/floor/carpet/blue, +/area/station/legal/courtroom) +"vcS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"vdh" = ( +/obj/machinery/computer/drone_control{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"vdk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel/grimy, +/area/station/service/chapel) +"vdl" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/turf/simulated/floor/plating, +/area/station/medical/reception) +"vdF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sink/kitchen/north, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"vdM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"vdP" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard) +"vei" = ( +/obj/machinery/economy/atm/east, +/obj/machinery/camera{ + c_tag = "Central Ring Hallway East"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) +"vey" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"veB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/permabrig) +"veF" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"veK" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"vfg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"vfh" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/unary/passive_vent{ + dir = 1 + }, +/turf/space, +/area/space/nearstation) +"vfK" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"vfV" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/engineering/atmos/control) +"vgr" = ( +/obj/machinery/door/airlock/medical, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/morgue, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"vgt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"vgU" = ( +/obj/structure/flora/grass/jungle, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"vhs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"vhD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/engine, +/area/station/science/explab) +"vhS" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"vii" = ( +/obj/machinery/door/airlock/public/glass{ + id_tag = "ExitPrivate"; + name = "Public Access" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "ExitPrivate" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/purple, +/area/station/hallway/secondary/exit) +"vio" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"vix" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/recharger/wallcharger{ + pixel_x = 35 + }, +/obj/effect/decal/warning_stripes/red, +/obj/item/clothing/mask/balaclava, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/storage) +"viW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/public/storage/tools/auxiliary) +"viY" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"vjc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"vjf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/interrogation) +"vjg" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"vjM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/photocopier, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"vjQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/station/science/break_room) +"vjX" = ( +/obj/effect/spawner/random_barrier/possibly_welded_airlock, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"vkr" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/detective) +"vkv" = ( +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/aitransit) +"vkw" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/landmark/start/atmospheric, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/control) +"vky" = ( +/obj/effect/turf_decal{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/explab) +"vkA" = ( +/obj/structure/chair/comfy/teal{ + dir = 8 + }, +/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/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"vle" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/storage) +"vlj" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/brig) +"vlv" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"vlD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/visitingroom) +"vlR" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 6; + pixel_y = 10 + }, +/turf/simulated/floor/carpet/purple, +/area/station/hallway/secondary/exit) +"vlS" = ( +/obj/machinery/atmospherics/trinary/mixer{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"vma" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel/freezer, +/area/station/medical/virology/lab) +"vmb" = ( +/obj/effect/spawner/window/reinforced/tinted/grilled, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"vmm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"vmw" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"vmC" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"vmL" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/starboard) +"vmO" = ( +/obj/machinery/ignition_switch{ + pixel_y = 24; + pixel_x = -8; + id = "disp" + }, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"vmT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"vnb" = ( +/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/plasteel{ + icon_state = "darkred" + }, +/area/station/security/permabrig) +"vnh" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"vnp" = ( +/obj/structure/closet/radiation, +/obj/machinery/camera{ + c_tag = "Medbay Suit Storage"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/storage/secondary) +"vnV" = ( +/obj/effect/decal/warning_stripes/red/hollow, +/obj/effect/decal/warning_stripes/east, +/obj/machinery/suit_storage_unit/security, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"voc" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen/multi{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/bottle/reagent/formaldehyde{ + pixel_y = 2; + pixel_x = -6 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"vom" = ( +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "air_sensor"; + output = 127 + }, +/turf/simulated/floor/engine/air, +/area/station/engineering/atmos) +"vpq" = ( +/obj/effect/decal/cleanable/dirt, +/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 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"vpA" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/decal/warning_stripes/red, +/obj/item/clothing/mask/balaclava, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera{ + c_tag = "Brig Security Equipment Lockers"; + dir = 9 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/storage) +"vpQ" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"vpS" = ( +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"vpT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"vpU" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"vqr" = ( +/obj/structure/table, +/obj/machinery/light/directional/east, +/obj/machinery/alarm/directional/east, +/obj/item/paper{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"vqJ" = ( +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/command/bridge) +"vqN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"vqT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "chemdesk"; + name = "Chemistry Desk Shutters" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/turf/simulated/floor/plating, +/area/station/medical/chemistry) +"vrk" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/processing) +"vrp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"vrw" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA" + }, +/turf/simulated/wall/r_wall, +/area/station/security/permabrig) +"vrH" = ( +/obj/structure/flora/junglebush, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/grass/jungle, +/area/station/maintenance/fsmaint) +"vrJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/wood/oak, +/area/station/service/theatre) +"vrM" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/warden) +"vrQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel/freezer, +/area/station/public/toilet) +"vsc" = ( +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"vse" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/medmaint) +"vsi" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/range) +"vsl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/flasher{ + id = "prison3"; + pixel_y = 24; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/security/permabrig) +"vsq" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"vsW" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"vsY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/storage) +"vtq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/station/service/janitor) +"vtv" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"vtw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"vvb" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prisonlockers) +"vve" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/starboard) +"vvh" = ( +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"vvF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/electricshock{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/station/security/execution) +"vvS" = ( +/obj/structure/table/wood, +/obj/item/picket_sign, +/obj/item/reagent_containers/food/condiment/saltshaker, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"vwk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"vwA" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"vxa" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"vxb" = ( +/obj/machinery/flasher/portable, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"vxh" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"vxl" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"vxn" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/obj/effect/spawner/random_spawners/fungus_probably, +/turf/simulated/wall, +/area/station/maintenance/electrical) +"vxH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"vxK" = ( +/obj/structure/chair/sofa/pew/left, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/service/chapel) +"vyi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) +"vyl" = ( +/obj/machinery/door_control/shutter/north{ + id = "experimentor"; + name = "Experimentor Control" + }, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/wrench, +/obj/item/weldingtool/research, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"vyK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"vyM" = ( +/obj/item/storage/toolbox/emergency/old, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"vyN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/engineering/tech_storage) +"vyZ" = ( +/obj/structure/bed, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"vzd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"vzf" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/storage/box/monkeycubes, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"vzg" = ( +/obj/structure/closet/secure_closet/brig, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/prisonlockers) +"vzo" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "fssolar_vent"; + dir = 8 + }, +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "fssolar_btn_ext"; + ext_door_link_id = "fssolar_door_ext"; + int_button_link_id = "fssolar_btn_int"; + int_door_link_id = "fssolar_door_int"; + pixel_y = 25; + req_access_txt = "13"; + vent_link_id = "fssolar_vent" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarstarboard) +"vzp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"vzz" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/bluegrid, +/area/station/telecomms/chamber) +"vzB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/classic/normal{ + dir = 1; + name = "Kitchen Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "kitchenhall"; + name = "Kitchen Shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/service/kitchen) +"vzG" = ( +/obj/structure/sign/radiation/rad_area, +/turf/simulated/wall, +/area/station/engineering/gravitygenerator) +"vzU" = ( +/obj/structure/closet/walllocker/emerglocker/north{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"vAb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"vAj" = ( +/obj/machinery/flasher_button{ + pixel_y = 24; + pixel_x = -24; + id = "prison2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"vAM" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"vBg" = ( +/turf/simulated/wall/r_wall, +/area/station/security/warden) +"vBO" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "burn_sensor" + }, +/obj/effect/decal/remains/mouse/Pinkie, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"vBU" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/science/robotics/showroom) +"vBV" = ( +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"vCt" = ( +/obj/structure/table/tray, +/obj/item/storage/firstaid/surgery{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"vCE" = ( +/obj/machinery/economy/vending/snack, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/station/supply/office) +"vCU" = ( +/obj/machinery/door/airlock/external{ + id_tag = "vir_outer_door"; + locked = 1 + }, +/obj/machinery/access_button/east{ + autolink_id = "vir_outer_button"; + name = "interior access button" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"vCV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/random/tool, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"vCZ" = ( +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"vDg" = ( +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/telecomms/chamber) +"vDl" = ( +/obj/item/stack/cable_coil/random, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"vDo" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"vDp" = ( +/obj/machinery/papershredder, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/command/office/cmo) +"vDT" = ( +/obj/machinery/atmospherics/portable/canister/nitrogen, +/obj/machinery/light/directional/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/sign/poster/contraband/atmosia_independence{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"vDX" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/secure_closet/hydroponics, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"vDZ" = ( +/obj/structure/closet/wardrobe/coroner, +/obj/item/storage/box/bodybags{ + pixel_y = 2 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 2 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 2 + }, +/obj/item/storage/box/gloves{ + pixel_y = -6 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"vEy" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"vEE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/ants, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"vEG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"vEN" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/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/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) +"vEQ" = ( +/obj/machinery/space_heater, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos/control) +"vET" = ( +/obj/structure/table/wood, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel/grimy, +/area/station/public/vacant_office) +"vEV" = ( +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/public/vacant_office) +"vFy" = ( +/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/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"vFB" = ( +/obj/machinery/hologram/holopad{ + pixel_x = 16 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/cyan, +/area/station/command/office/cmo) +"vFK" = ( +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"vGb" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/deathsposal{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/processing) +"vGg" = ( +/obj/machinery/economy/vending/coffee, +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/wood/oak, +/area/station/command/office/ntrep) +"vGH" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy, +/area/station/public/sleep_female) +"vHf" = ( +/obj/structure/window/reinforced, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/visitingroom) +"vHx" = ( +/obj/effect/decal/warning_stripes/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"vHB" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/pump, +/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/plasteel, +/area/station/engineering/controlroom) +"vHD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Turbine Generator Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/turbine) +"vHE" = ( +/obj/machinery/mass_driver{ + dir = 8; + id_tag = "toxinsdriver" + }, +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"vHV" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"vHZ" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"vId" = ( +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/beach/sand, +/area/station/maintenance/fsmaint) +"vIF" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1; + color = "lightblue" + }, +/obj/structure/morgue, +/obj/effect/landmark/spawner/rev, +/obj/structure/sign/poster/official/random/north, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"vIR" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + autolink_id = "o2_in"; + dir = 8; + icon_state = "on"; + on = 1 + }, +/turf/simulated/floor/engine/o2, +/area/station/engineering/atmos) +"vJb" = ( +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"vJg" = ( +/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" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"vJi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/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/plasteel, +/area/station/security/brig) +"vJn" = ( +/obj/effect/decal/cleanable/dirt, +/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, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "neutral" + }, +/area/station/maintenance/apmaint) +"vJs" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/research) +"vJt" = ( +/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/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"vJu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_animal/mouse/gray, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"vJw" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel, +/area/station/maintenance/apmaint) +"vJJ" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"vJN" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/dispenser, +/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/plasteel, +/area/station/engineering/controlroom) +"vJP" = ( +/obj/machinery/door/airlock/external{ + id_tag = "escape_door_int"; + locked = 1; + name = "Escape External Access" + }, +/obj/effect/decal/warning_stripes/south, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/access_button/east{ + autolink_id = "escape_btn_int"; + name = "interior access button"; + req_access_txt = "10;13" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) +"vKr" = ( +/obj/item/chair/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"vKs" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/maintenance/electrical) +"vKB" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/station/science/research) +"vKK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"vLh" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/station/supply/qm) +"vLp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"vLF" = ( +/obj/machinery/alarm/directional/north, +/obj/structure/sign/poster/official/random/east, +/obj/structure/chair/comfy/brown, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"vLS" = ( +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/table/reinforced, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/gps/engineering, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"vLX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"vMg" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"vMo" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"vMM" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/machinery/atmospherics/unary/portables_connector{ + layer = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/maintenance/electrical) +"vMO" = ( +/obj/structure/disposalpipe/sortjunction/reversed{ + dir = 2; + name = "Warden's Office"; + sort_type_txt = "8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) +"vMT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small/nightshifted/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/interrogation/observation) +"vMW" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"vNh" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"vNm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary tool storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/storage/tools) +"vNq" = ( +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/plating, +/area/station/maintenance/starboard2) +"vNu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/clonepod/biomass, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/cloning) +"vNF" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"vOo" = ( +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/controlroom) +"vOA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel/freezer, +/area/station/maintenance/aft) +"vOI" = ( +/obj/machinery/atmospherics/trinary/mixer, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"vOK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/fore2) +"vPa" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/engineering/atmos/control) +"vPi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"vPm" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "blue" + }, +/area/station/bridge/checkpoint/south) +"vPO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/sink/directional/north, +/turf/simulated/floor/plasteel, +/area/station/service/theatre) +"vPY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/range) +"vQg" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/security/visitingroom) +"vQh" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"vQv" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/station/hallway/secondary/exit) +"vQw" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small/directional/north, +/obj/item/stack/sheet/plasteel, +/obj/item/wrench, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"vQN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/reinforced/normal{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/security/armory{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "Warden"; + name = "Warden Privacy Shutters" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/warden) +"vQR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/ne) +"vRa" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/maintenance/starboard) +"vRj" = ( +/obj/machinery/door/airlock/glass{ + autoclose = 0; + heat_proof = 1; + id_tag = "turbine_door_ext"; + locked = 1; + name = "Turbine Exterior Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"vRk" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"vSF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/engine, +/area/station/maintenance/starboard2) +"vTf" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/science/server) +"vTi" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/processing) +"vTq" = ( +/obj/machinery/alarm/directional/south, +/obj/machinery/camera{ + c_tag = "Brig Visit Room South"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/visitingroom) +"vTs" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/station/security/permabrig) +"vTv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + id_tag = "pub_room"; + name = "Public Meeting Room" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"vTJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"vTK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"vUg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel/dark, +/area/station/security/brig) +"vUj" = ( +/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, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"vUm" = ( +/obj/structure/barricade/sandbags, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"vUn" = ( +/obj/machinery/photocopier, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"vUu" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/pod_2) +"vUE" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"vUG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"vUM" = ( +/obj/structure/cable{ + 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/wood/oak, +/area/station/command/office/ntrep) +"vUX" = ( +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/fitness) +"vVp" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/green/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology) +"vVB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry) +"vVF" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + 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 = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/paramedic) +"vVH" = ( +/obj/effect/decal/cleanable/dirt, +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"vVL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/comfy/teal{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/maintenance/starboard) +"vVY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/station/security/processing) +"vVZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/command/bridge) +"vWm" = ( +/obj/machinery/ai_status_display/south, +/obj/structure/table/reinforced, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/painter, +/obj/item/painter{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/painter{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"vWv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"vWA" = ( +/obj/structure/chair/e_chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/security/execution) +"vWB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/robotics) +"vWK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"vWU" = ( +/obj/machinery/door/airlock/virology/glass, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "VirRest" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/virology, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology) +"vXf" = ( +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "n2o_sensor" + }, +/turf/simulated/floor/engine/n20, +/area/station/engineering/atmos) +"vXl" = ( +/obj/effect/mapping_helpers/airlock/access/any/command/magistrate, +/obj/machinery/door/airlock/command, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"vXG" = ( +/obj/machinery/door/airlock/science, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/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" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/genetics, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/genetics) +"vXI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"vXM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/port2) +"vYg" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/maintenance/old_detective) +"vYm" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/maintenance/starboard2) +"vYt" = ( +/obj/machinery/atmospherics/air_sensor{ + autolink_id = "co2_sensor" + }, +/turf/simulated/floor/engine/co2, +/area/station/engineering/atmos) +"vYE" = ( +/obj/structure/disposalpipe/junction/reversed, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"vYI" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/range) +"vYL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/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 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"vYM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"vYR" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"vZE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"vZO" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Science Chemistry" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"waa" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/plasteel, +/area/station/hallway/primary/fore) +"wah" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/cyan, +/area/station/command/office/cmo) +"wax" = ( +/obj/machinery/light/small/nightshifted/south, +/turf/simulated/floor/plating, +/area/station/maintenance/abandoned_garden) +"waQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/portable/canister/nitrogen, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"waT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/greengrid, +/area/station/command/vault) +"wbd" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/security/detective) +"wbf" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology) +"wbk" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/wood/fancy/oak, +/area/station/public/sleep_male) +"wbt" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + name = "Virology Shutters"; + id_tag = "Virology1" + }, +/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, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"wbW" = ( +/obj/structure/chair/sofa/corner{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/sign/poster/official/random/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/storage) +"wbY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/station/science/robotics/showroom) +"wbZ" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"wcy" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"wcI" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"wdu" = ( +/turf/simulated/wall, +/area/station/engineering/aitransit) +"wdz" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) +"wdH" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 8; + name = "bench of contemplation" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"wdQ" = ( +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/brig) +"wdX" = ( +/obj/machinery/computer/mech_bay_power_console, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/station/maintenance/electrical) +"web" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/maintenance/fsmaint) +"wew" = ( +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"weE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) +"weH" = ( +/obj/machinery/fishtank/tank, +/turf/simulated/floor/beach/sand, +/area/station/maintenance/fsmaint) +"weO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/explab) +"weX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/abandoned_garden) +"wfa" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/science/toxins/mixing) +"wfC" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"wfP" = ( +/obj/machinery/status_display/directional/west, +/obj/machinery/computer/security/engineering{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/engineering/atmos/control) +"wfT" = ( +/obj/structure/closet/crate/secure/engineering, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/clothing/gloves/color/yellow/fake, +/obj/item/clothing/gloves/color/yellow/fake, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/virology_maint) +"wfX" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"wgg" = ( +/obj/effect/decal/warning_stripes/southeast, +/obj/machinery/economy/vending/security, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"wgx" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/library) +"wgE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/hardsuitstorage) +"wgF" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"wgS" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_y = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/classic/normal{ + dir = 1; + name = "Medbay Reception" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"wgY" = ( +/obj/machinery/camera{ + c_tag = "Supermatter Entrance"; + network = list("SS13","Engineering") + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"whM" = ( +/obj/structure/safe/floor, +/obj/item/clothing/mask/cigarette/pipe, +/obj/item/clothing/accessory/holster, +/obj/item/clothing/suit/jacket/leather/overcoat, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/clothing/head/fedora/brownfedora, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"whX" = ( +/turf/simulated/wall/r_wall, +/area/station/medical/virology/lab) +"wid" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"wig" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/virology_maint) +"wij" = ( +/turf/simulated/wall/r_wall, +/area/station/security/processing) +"wis" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/folder, +/obj/item/pen, +/turf/simulated/floor/plasteel, +/area/station/security/visitingroom) +"wiJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"wiK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"wiL" = ( +/obj/structure/disposalpipe/segment, +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/storage) +"wiM" = ( +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/brig) +"wiR" = ( +/obj/machinery/economy/vending/medidrobe, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"wjk" = ( +/obj/structure/closet/secure_closet{ + anchored = 1; + name = "Evidence Storage"; + req_access_txt = "4" + }, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/security/evidence) +"wjm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"wjw" = ( +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/surgery/primary) +"wkq" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"wkD" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos/control) +"wkF" = ( +/obj/machinery/photocopier, +/obj/machinery/light_switch/north, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/wood, +/area/station/command/office/hos) +"wkK" = ( +/turf/simulated/wall, +/area/station/hallway/secondary/exit/maintenance) +"wkN" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/brig) +"wkO" = ( +/obj/effect/landmark/start/mime, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"wkT" = ( +/obj/machinery/atmospherics/portable/scrubber, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"wlm" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) +"wlt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"wlS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"wlY" = ( +/obj/machinery/door/airlock/external{ + id_tag = "trade_dock"; + locked = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) +"wmc" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"wmp" = ( +/obj/machinery/atmospherics/trinary/mixer, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"wmx" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/disposal{ + name = "Deathposal" + }, +/obj/structure/sign/vacuum{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"wmB" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B" + }, +/obj/machinery/door/firedoor, +/obj/item/soap, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/virology, +/turf/simulated/floor/plasteel{ + icon_state = "Dark" + }, +/area/station/medical/virology/lab) +"wny" = ( +/obj/machinery/light/directional/south, +/obj/machinery/door_control/shutter/south{ + id = "kitchenhall"; + name = "Kitchen Hallway Shutters Control"; + pixel_x = -5 + }, +/obj/machinery/door_control/shutter/south{ + id = "Kitchen Windows"; + name = "Kitchen Privacy Shutters Control"; + pixel_x = 5 + }, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"wnI" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"wnZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"woa" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/science/genetics) +"wok" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/maintenance/turbine) +"wor" = ( +/obj/effect/decal/cleanable/ants, +/turf/simulated/floor/light/blue, +/area/station/maintenance/old_kitchen) +"wou" = ( +/obj/machinery/door/airlock/external{ + id_tag = "engines_door_ext"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/access_button/north{ + autolink_id = "engines_btn_ext"; + name = "exterior access button"; + req_access_txt = "10;13" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"woQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/visitingroom) +"woT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/mob/living/simple_animal/pet/dog/pug/Frank, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"wpc" = ( +/mob/living/simple_animal/pet/slugcat/monk, +/obj/structure/bed/dogbed/pet, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"wpg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"wpz" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/control) +"wqp" = ( +/obj/structure/cable, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"wqG" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"wqN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/wire_splicing/thirty, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"wqU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"wrr" = ( +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "apmaint2_btn_ext"; + ext_door_link_id = "apmaint2_door_ext"; + int_button_link_id = "apmaint2_btn_int"; + int_door_link_id = "apmaint2_door_int"; + pixel_y = 25; + vent_link_id = "apmaint2_vent" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "apmaint2_vent"; + dir = 4 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"wrE" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm/directional/south, +/obj/item/hand_labeler, +/obj/item/stack/packageWrap, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/ce) +"wrR" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/brig) +"wsy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"wtd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"wtk" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"wtE" = ( +/obj/machinery/cryopod/right, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreenfull" + }, +/area/station/public/sleep) +"wtM" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/library) +"wtP" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/storage) +"wtV" = ( +/turf/simulated/floor/plasteel{ + icon_state = "greencorner" + }, +/area/station/medical/virology/lab) +"wua" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/carpet/arcade, +/area/station/maintenance/starboard) +"wug" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"wul" = ( +/turf/simulated/floor/beach/sand, +/area/station/maintenance/fsmaint) +"wuE" = ( +/obj/machinery/economy/vending/snack, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"wuK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"wuO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/lobby) +"wuT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/main) +"wuX" = ( +/obj/item/flag/sec, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/security/range) +"wvn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"wvo" = ( +/obj/item/clothing/under/costume/soviet, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"wvx" = ( +/obj/machinery/door/window/reinforced/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/item/wrench, +/obj/machinery/camera{ + c_tag = "Brig Prison Hall"; + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"wvy" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CMO" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/command/office/cmo) +"wvz" = ( +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/permabrig) +"wvX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"wwk" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall/r_wall, +/area/station/maintenance/starboard2) +"www" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Detective" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/security/detective) +"wwx" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/security/lobby) +"wwC" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"wwE" = ( +/obj/machinery/camera{ + c_tag = "Supermatter West"; + dir = 4; + network = list("Engineering","SS13"); + pixel_y = -22 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/unary/thermomachine/freezer{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"wwR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"wwX" = ( +/obj/structure/closet/lasertag/red, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/public/fitness) +"wxe" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/aitransit) +"wxg" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/computer/security/engineering, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"wyf" = ( +/obj/machinery/hydroponics/constructable{ + desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays."; + name = "Prison hydroponics tray"; + using_irrigation = 1 + }, +/obj/item/seeds/chili, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"wym" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/nw) +"wyz" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel{ + icon_state = "blue" + }, +/area/station/bridge/checkpoint/south) +"wyC" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/green/hollow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"wyG" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start/engineer, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/control) +"wyX" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CMO" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/office/cmo) +"wzi" = ( +/obj/machinery/door/airlock/external{ + id_tag = "fpsolar_door_int"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/access_button/north{ + autolink_id = "fpsolar_btn_int"; + name = "interior access button"; + req_access_txt = "32" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"wzJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"wzK" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/control) +"wzN" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"wzU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/storage) +"wAd" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/brig) +"wAU" = ( +/obj/effect/mapping_helpers/airlock/polarized{ + id = "HoS" + }, +/obj/machinery/door/airlock/command/hos/glass{ + id_tag = "hosofficedoor"; + name = "Head of Security" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/hos, +/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{ + d1 = 1; + d2 = 8; + icon_state = "1-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 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/hos) +"wAX" = ( +/obj/machinery/economy/vending/coffee, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"wBz" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes/north, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"wBK" = ( +/turf/simulated/wall/r_wall, +/area/station/security/prison/cell_block/A) +"wBU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"wCj" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"wCF" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/healthanalyzer{ + pixel_y = 10 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/hud/health, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "greenfull" + }, +/area/station/medical/virology/lab) +"wCJ" = ( +/obj/item/camera_film, +/obj/machinery/light_construct/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/maintenance/old_detective) +"wCZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/processing) +"wDd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"wDq" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/landmark/start/chief_medical_officer, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/command/office/cmo) +"wDr" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"wDz" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"wDU" = ( +/obj/machinery/chem_dispenser, +/obj/item/reagent_containers/glass/beaker/large, +/obj/structure/reagent_dispensers/fueltank/chem/west, +/turf/simulated/floor/engine, +/area/station/science/explab) +"wEA" = ( +/obj/machinery/economy/vending/coffee, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry) +"wFa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"wFd" = ( +/obj/structure/window/full/reinforced, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass/no_creep, +/area/station/hallway/secondary/exit) +"wFg" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"wFh" = ( +/obj/structure/table, +/obj/machinery/alarm/directional/west, +/obj/machinery/light/directional/west, +/obj/item/reagent_containers/syringe/charcoal{ + pixel_y = 10; + pixel_x = -6 + }, +/obj/item/reagent_containers/syringe/antiviral{ + pixel_y = 6; + pixel_x = -6 + }, +/obj/item/reagent_containers/syringe/insulin{ + pixel_y = 2; + pixel_x = -6 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_y = -2; + pixel_x = -6 + }, +/obj/item/reagent_containers/food/pill/patch/styptic{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/pill/patch/styptic{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/pill/patch/silver_sulf{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/reagent_containers/food/pill/patch/silver_sulf{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/sleeper) +"wFT" = ( +/obj/structure/chair/comfy/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"wGb" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/break_room) +"wGf" = ( +/obj/structure/sign/poster/official/random/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"wGg" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "caution" + }, +/area/station/engineering/atmos/control) +"wGh" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"wGi" = ( +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/service/chapel/office) +"wGn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white, +/area/station/security/permabrig) +"wGq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"wGz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/ne) +"wGL" = ( +/obj/machinery/newscaster/security_unit/west, +/turf/simulated/floor/plasteel/dark, +/area/station/command/bridge) +"wHc" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/wood/fancy/oak, +/area/station/legal/courtroom) +"wHt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"wHy" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "hos_secure_doors" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"wHB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"wHF" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-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/plating, +/area/station/science/robotics/showroom) +"wHH" = ( +/obj/machinery/computer/arcade/battle{ + dir = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"wIb" = ( +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/structure/closet/crate, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/grass/jungle, +/area/station/maintenance/fsmaint) +"wIc" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"wIw" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"wIE" = ( +/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" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"wIR" = ( +/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/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"wIS" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"wIZ" = ( +/obj/machinery/kitchen_machine/grill, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"wJr" = ( +/turf/simulated/wall/r_wall, +/area/station/science/break_room) +"wJU" = ( +/obj/effect/decal/warning_stripes/northeastcorner, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"wKf" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/warden) +"wKh" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/permabrig) +"wKt" = ( +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/apmaint) +"wKu" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap{ + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = 6 + }, +/turf/simulated/floor/plasteel/white, +/area/station/service/kitchen) +"wLe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "cmo" + }, +/area/station/maintenance/starboard2) +"wLp" = ( +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"wLq" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"wLR" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"wMc" = ( +/obj/structure/chair/comfy/black, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"wMt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"wMZ" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/visitingroom) +"wNp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"wNv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Expedition Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/expedition, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"wNW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"wOg" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/maintenance/old_kitchen) +"wOz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/station/command/office/hos) +"wOC" = ( +/obj/effect/landmark/start/shaft_miner, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"wOL" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"wOT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"wPa" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/security/detective) +"wPb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/old_kitchen) +"wPe" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/machinery/chem_heater, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"wPu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"wPH" = ( +/obj/machinery/firealarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"wPI" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/station/supply/sorting) +"wPJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/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" + }, +/obj/machinery/flasher{ + id = "prison3"; + pixel_y = -24; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/security/permabrig) +"wQp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/sign/poster/official/random/south, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"wQE" = ( +/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" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/controlroom) +"wQG" = ( +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/command/bridge) +"wQQ" = ( +/obj/structure/closet/wardrobe/white, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"wRa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/evidence) +"wRc" = ( +/obj/machinery/chem_heater, +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/engine, +/area/station/science/explab) +"wRl" = ( +/obj/machinery/light_construct/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/maintenance/starboard2) +"wRE" = ( +/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/plasteel/dark, +/area/station/security/range) +"wRN" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + autolink_id = "air_in"; + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/science/toxins/mixing) +"wRP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"wRU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) +"wRZ" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"wSa" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "qm" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/supply/qm) +"wSg" = ( +/obj/structure/reagent_dispensers/beerkeg/nuke, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/maintenance/starboard2) +"wSl" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"wSw" = ( +/obj/machinery/economy/vending/cola, +/turf/simulated/floor/plasteel/dark, +/area/station/hallway/primary/central/west) +"wSx" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"wSy" = ( +/obj/structure/sign/nosmoking_1, +/turf/simulated/wall, +/area/station/medical/surgery/secondary) +"wSO" = ( +/obj/structure/sign/vacuum/external{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"wSY" = ( +/obj/structure/rack, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/item/clothing/accessory/holster{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/accessory/holster{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/accessory/holster{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/accessory/holster{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/clothing/accessory/holster, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/station/security/storage) +"wTc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/public/fitness) +"wTf" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"wTo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera{ + c_tag = "Brig Cell 5"; + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"wTq" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"wTx" = ( +/obj/effect/mapping_helpers/airlock/polarized{ + id = "CMO_Bedroom" + }, +/obj/machinery/door/airlock/command/cmo/glass, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/medical/cmo, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/command/office/cmo) +"wTI" = ( +/turf/simulated/floor/plasteel{ + icon_state = "yellow" + }, +/area/station/maintenance/electrical) +"wTL" = ( +/obj/machinery/economy/vending/shoedispenser, +/turf/simulated/floor/plasteel/dark, +/area/station/public/locker) +"wUk" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/public/fitness) +"wUm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/chair/sofa/right, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/moth, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"wUr" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"wUA" = ( +/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 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"wUM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/starboard2) +"wUP" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"wUX" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "BrigRight" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/station/security/brig) +"wVi" = ( +/obj/machinery/economy/vending/cart, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/station/hallway/primary/fore) +"wVI" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/machinery/door/firedoor, +/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" + }, +/turf/simulated/floor/plasteel, +/area/station/security/storage) +"wVM" = ( +/obj/machinery/access_button{ + autolink_id = "enginen_btn_int"; + name = "interior access button"; + pixel_x = -20; + pixel_y = -20; + req_access_txt = "10;13" + }, +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/engineering/control) +"wVR" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot/sec, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/suit/armor/bulletproof/sec, +/obj/item/clothing/head/helmet/alt, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/effect/decal/warning_stripes/west, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/suit/armor/bulletproof/sec, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/suit/armor/riot/sec, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"wVT" = ( +/obj/item/storage/belt/chef, +/obj/item/clothing/head/chefhat, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"wVW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + 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/station/maintenance/fore2) +"wWd" = ( +/turf/simulated/floor/carpet, +/area/station/security/permabrig) +"wWi" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs/cable/random, +/obj/item/storage/pill_bottle/random_drug_bottle, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"wWl" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos) +"wWH" = ( +/obj/machinery/economy/vending/artvend, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"wWI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/aft) +"wWQ" = ( +/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/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/maintenance/starboard2) +"wWV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit/maintenance) +"wWX" = ( +/obj/structure/transit_tube, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/aitransit) +"wWZ" = ( +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/wood/oak, +/area/station/command/office/captain) +"wXc" = ( +/obj/machinery/door/airlock, +/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/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel, +/area/station/public/toilet) +"wXe" = ( +/turf/space, +/area/space/nearstation) +"wXk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) +"wXn" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) +"wXz" = ( +/obj/structure/table/wood, +/obj/item/megaphone, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"wXE" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"wXF" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/warning_stripes/yellow, +/obj/structure/sign/security{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/security/lobby) +"wXM" = ( +/obj/effect/decal/warning_stripes/northwest, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/control) +"wYu" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/prison/cell_block/A) +"wYw" = ( +/obj/machinery/door/airlock/glass{ + name = "Barber Shop" + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/station/service/barber) +"wYD" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"wYL" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 5"; + name = "Cell 5 Locker" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"wYP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + 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 = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/maintenance/starboard) +"wYQ" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"wYW" = ( +/obj/item/flag/sec, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/station/security/storage) +"wZe" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"wZj" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/rag, +/obj/machinery/door/window/classic/normal{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"wZl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes/east, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) +"wZB" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"wZI" = ( +/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/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"wZR" = ( +/obj/effect/decal/warning_stripes/red/partial, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/security/range) +"xaa" = ( +/obj/effect/decal/warning_stripes/northeast, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"xag" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plating, +/area/station/science/toxins/launch) +"xat" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"xaO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"xaQ" = ( +/obj/structure/chair/sofa/pew{ + dir = 4 + }, +/obj/effect/decal/cleanable/dust, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"xaR" = ( +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/apmaint) +"xaX" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard2) +"xbC" = ( +/obj/structure/closet/wardrobe/virology_white, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"xbW" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "green" + }, +/area/station/medical/virology/lab) +"xcg" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/food/snacks/meat/human, +/obj/item/reagent_containers/food/snacks/meat/human, +/obj/item/reagent_containers/food/snacks/meat/human, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"xcj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/warden) +"xcz" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "Warden"; + name = "Warden Privacy Shutters" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/warden) +"xcD" = ( +/obj/item/chair/wood, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"xcP" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/stairs/left, +/area/station/security/prison/cell_block/A) +"xdd" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/library) +"xdE" = ( +/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, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"xdH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"xdX" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "evidence" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/evidence) +"xdY" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/cloning) +"xej" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"xeI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"xeO" = ( +/obj/machinery/camera{ + c_tag = "Brig Hall South-West"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"xff" = ( +/obj/machinery/flasher{ + pixel_x = -24; + pixel_y = -24; + id = "Cell 1" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"xfy" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"xgf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/research) +"xgs" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"xgA" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "redcorner" + }, +/area/station/security/lobby) +"xgF" = ( +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos) +"xgH" = ( +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) +"xgW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/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" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/permabrig) +"xha" = ( +/obj/item/chair/stool/bar, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"xhj" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"xhr" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/decal/warning_stripes/east, +/turf/simulated/floor/plating, +/area/station/maintenance/starboardsolar) +"xhz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/medical/break_room) +"xhC" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/disposalpipe/segment, +/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" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/main) +"xhF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/public/fitness) +"xhN" = ( +/obj/structure/disposalpipe/junction/reversed{ + dir = 1 + }, +/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" + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/storage) +"xhS" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "lightblue" + }, +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/landmark/spawner/rev, +/obj/machinery/light/small/directional/south, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 6; + pixel_x = 8; + initialized = 1; + volume = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"xif" = ( +/obj/structure/railing/corner, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) +"xiD" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/atmospherics/portable/canister/toxins, +/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/plasteel, +/area/station/engineering/controlroom) +"xjh" = ( +/obj/machinery/door_control/bolt_control/north{ + id = "maintcabin1" + }, +/obj/structure/closet/crate/secure/bin, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/starboard) +"xjj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/station/command/office/hop) +"xjx" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "Magistrate" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/legal/magistrate) +"xjV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/station/service/library) +"xkw" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/obj/item/lighter/zippo{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/storage) +"xkE" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"xkJ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "burn chamber to port" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"xkM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/science, +/obj/effect/mapping_helpers/airlock/access/any/medical/genetics, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/science/genetics) +"xkX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/expedition) +"xkZ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"xlc" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/station/medical/virology/lab) +"xli" = ( +/obj/machinery/suit_storage_unit/mime, +/obj/machinery/door_control/shutter/west{ + id = "Mime"; + name = "Mimes Privacy Shutters Control" + }, +/turf/simulated/floor/mineral/tranquillite, +/area/station/service/mime) +"xlp" = ( +/mob/living/simple_animal/bot/medbot, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"xlu" = ( +/obj/machinery/door/window/classic/normal, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"xlZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "Security Blast Door" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/security/visitingroom) +"xmc" = ( +/obj/structure/sign/chemistry, +/turf/simulated/wall/r_wall, +/area/station/medical/chemistry) +"xmd" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/structure/chair/sofa{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/station/security/permabrig) +"xme" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/research) +"xmk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/fore) +"xmq" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/science/xenobiology) +"xmJ" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"xmN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel{ + icon_state = "brown" + }, +/area/station/supply/miningdock) +"xnf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"xng" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/station/supply/miningdock) +"xnh" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/hallway/secondary/exit) +"xnm" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"xno" = ( +/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/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay2) +"xnq" = ( +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/abandonedbar) +"xnx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/station/public/sleep) +"xnK" = ( +/obj/machinery/door_timer/cell_2{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"xnQ" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"xoe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/paramedic) +"xot" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/central/nw) +"xoF" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"xpq" = ( +/obj/machinery/economy/vending/snack, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/station/public/fitness) +"xpC" = ( +/obj/structure/table/glass, +/obj/item/storage/box/masks{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/storage/box/gloves{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/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 = -8; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"xpD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/closed, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"xpI" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/structure/sign/poster/official/random/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit/maintenance) +"xpL" = ( +/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" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/maintenance/electrical) +"xqb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/security/brig) +"xqd" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"xql" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"xqw" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/psychiatrist, +/turf/simulated/floor/carpet, +/area/station/medical/psych) +"xqA" = ( +/obj/effect/decal/cleanable/dirt, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/aft) +"xqC" = ( +/obj/machinery/autolathe, +/obj/effect/mapping_helpers/machinery/destroyed, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "yellow" + }, +/area/station/maintenance/electrical) +"xqG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"xqR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/turbine) +"xre" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"xrg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/fitness) +"xrW" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) +"xsg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/warden) +"xsu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology) +"xsz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple" + }, +/area/station/science/toxins/mixing) +"xsE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/classic/normal{ + name = "Virology Work Zone" + }, +/obj/structure/disposalpipe/segment, +/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" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/virology, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/virology, +/turf/simulated/floor/plasteel, +/area/station/medical/virology/lab) +"xsR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/brig) +"xtj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/damageturf, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"xtv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/break_room) +"xtw" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1; + color = "lightblue" + }, +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"xtx" = ( +/obj/effect/decal/warning_stripes/west, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/xenobiology) +"xtI" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/command/customs) +"xtS" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"xtU" = ( +/obj/structure/closet/secure_closet/brig, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/prisonlockers) +"xtZ" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/library) +"xui" = ( +/obj/machinery/economy/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard2) +"xum" = ( +/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/plasteel{ + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry) +"xuu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) +"xuX" = ( +/obj/structure/bookcase, +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/magistrate) +"xvf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/warden) +"xvo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar/atrium) +"xvq" = ( +/obj/machinery/camera{ + c_tag = "Medbay Morgue East"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/morgue) +"xvI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"xwx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/permabrig) +"xwz" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/plasteel{ + icon_state = "caution" + }, +/area/station/public/fitness) +"xwF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) +"xwQ" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) +"xwU" = ( +/obj/structure/flora/ausbushes/ppflowers, +/mob/living/simple_animal/chicken/Wife, +/turf/simulated/floor/grass, +/area/station/service/hydroponics) +"xxc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"xxn" = ( +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"xxp" = ( +/obj/machinery/hologram/holopad, +/obj/effect/decal/warning_stripes/green/hollow, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology/lab) +"xxQ" = ( +/obj/structure/chair/office/dark, +/turf/simulated/floor/carpet/red, +/area/station/legal/lawoffice) +"xxW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) +"xyD" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"xyV" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"xze" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_3) +"xzn" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"xzr" = ( +/obj/effect/landmark/damageturf, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"xzH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/east) +"xzO" = ( +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"xAB" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"xAF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet/black, +/area/station/command/office/hos) +"xAW" = ( +/turf/simulated/floor/carpet/royalblack, +/area/station/legal/courtroom) +"xBs" = ( +/mob/living/simple_animal/pet/cat/white/Penny, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) +"xBx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"xBA" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/brig) +"xBI" = ( +/obj/machinery/alarm/directional/north, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/station/maintenance/electrical) +"xBJ" = ( +/obj/structure/railing{ + dir = 10; + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/kirbyplants{ + pixel_y = 7 + }, +/obj/structure/railing/corner{ + dir = 5; + pixel_x = -2; + pixel_y = -28 + }, +/turf/simulated/floor/grass, +/area/station/science/research) +"xBO" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + autolink_id = "waste_out"; + dir = 4; + external_pressure_bound = 0; + icon_state = "in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + releasing = 0 + }, +/turf/simulated/floor/engine/vacuum, +/area/station/engineering/atmos) +"xBP" = ( +/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/plating, +/area/station/hallway/secondary/exit/maintenance) +"xBX" = ( +/obj/machinery/atmospherics/portable/canister, +/obj/machinery/atmospherics/unary/portables_connector{ + layer = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/station/maintenance/electrical) +"xBZ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/processing) +"xCf" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"xCn" = ( +/obj/structure/cable{ + 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 = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/fore) +"xCp" = ( +/obj/effect/decal/warning_stripes/southwest, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"xCv" = ( +/obj/structure/sign/poster/official/random/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"xCC" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/turf/simulated/wall/mineral/titanium, +/area/shuttle/pod_2) +"xDo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/service/chapel) +"xDs" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "hos_room" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "hos_secure_doors" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/office/hos) +"xDw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood/cherry, +/area/station/service/hydroponics) +"xDT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/port) +"xEd" = ( +/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" + }, +/obj/machinery/door/window/classic/normal{ + dir = 1; + name = "Kitchen Desk" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/service/kitchen) +"xEl" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/grass/no_creep, +/area/station/hallway/secondary/exit) +"xEB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "red" + }, +/area/station/security/range) +"xEC" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/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 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/security/brig) +"xER" = ( +/obj/effect/decal/cleanable/dirt, +/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, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/fore) +"xEW" = ( +/obj/item/flag/med, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"xFq" = ( +/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" + }, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"xFt" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/spray/waterflower, +/obj/item/reagent_containers/spray/waterflower{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redbluefull" + }, +/area/station/maintenance/fore) +"xFE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"xFF" = ( +/obj/structure/disposalpipe/junction/y{ + dir = 1 + }, +/obj/structure/cable{ + 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 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"xGf" = ( +/obj/structure/closet/wardrobe/white, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"xGj" = ( +/obj/machinery/button/windowtint/east{ + id = "Psych" + }, +/obj/structure/bed/dogbed, +/mob/living/simple_animal/pet/dog/brittany/Psycho, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"xGw" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/maintenance/fsmaint) +"xGA" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/station/maintenance/electrical) +"xGG" = ( +/obj/machinery/flasher{ + pixel_x = -24; + pixel_y = -24; + id = "Cell 2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"xGI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/plasteel{ + icon_state = "yellowfull" + }, +/area/station/maintenance/electrical) +"xGO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/rnd) +"xGP" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"xHE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/reception) +"xHN" = ( +/obj/effect/decal/cleanable/dust, +/obj/structure/cable{ + 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 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"xId" = ( +/obj/machinery/iv_drip, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/medical/surgery/secondary) +"xIe" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/brig) +"xIf" = ( +/obj/vehicle/secway, +/obj/machinery/door_control/shutter/west{ + id = "ArmoryLock"; + name = "Armory Lockdown"; + pixel_y = -8; + req_one_access_txt = "3" + }, +/obj/machinery/door_control/shutter/west{ + id = "Warden"; + name = "Warden Privacy Shutters Control"; + req_one_access_txt = "3"; + pixel_y = 8 + }, +/obj/machinery/button/windowtint/west{ + id = "WardenD" + }, +/obj/machinery/door_control/shutter/west{ + id = "Secure Armory"; + name = "Secure Armory Shutter Control"; + pixel_y = -8; + req_one_access_txt = "3"; + pixel_x = -36 + }, +/obj/machinery/camera{ + c_tag = "Brig Warden's Office"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/station/security/warden) +"xIh" = ( +/obj/machinery/door/poddoor/preopen{ + id_tag = "Prison Gate"; + name = "Prison Lockdown Blast Doors" + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "perma_door_ext"; + locked = 1; + name = "Prison Wing" + }, +/obj/machinery/access_button/west{ + autolink_id = "perma_btn_ext"; + name = "Prison Wing Access Button"; + req_one_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/security/brig) +"xIj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/light/blue, +/area/station/maintenance/old_kitchen) +"xIG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"xIM" = ( +/obj/structure/table/reinforced, +/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/recharger, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"xIQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/maintenance/starboard2) +"xJh" = ( +/obj/machinery/smartfridge/secure/chemistry, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Chemistry Requests Console"; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"xJi" = ( +/obj/machinery/computer/card/minor/hos{ + dir = 8 + }, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"xJD" = ( +/obj/machinery/newscaster/directional/west, +/turf/simulated/floor/engine, +/area/station/science/explab) +"xJH" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"xJL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/medbay) +"xJT" = ( +/obj/structure/window/reinforced, +/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" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/bridge) +"xJU" = ( +/obj/structure/table/reinforced, +/obj/item/mmi, +/obj/item/clothing/suit/straight_jacket{ + pixel_y = 4; + pixel_x = 4 + }, +/obj/item/clothing/mask/muzzle, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/station/security/interrogation) +"xKs" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/obj/structure/disposalpipe/junction/reversed{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"xKt" = ( +/obj/structure/flora/ausbushes, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"xKv" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) +"xKC" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Research Toxins Launch"; + dir = 9; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel, +/area/station/science/toxins/launch) +"xKE" = ( +/obj/machinery/light/small/directional/north, +/obj/item/chair/stool, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/maintenance/fsmaint) +"xKL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"xKV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/security/detective) +"xKX" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/wrench, +/obj/item/clothing/glasses/welding, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/station/science/rnd) +"xLa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"xLg" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology) +"xLj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "small"; + pixel_x = -8; + pixel_y = -6 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"xLK" = ( +/obj/structure/cable, +/obj/item/mounted/frame/apc_frame, +/turf/simulated/floor/wood/fancy/birch, +/area/station/maintenance/starboard) +"xMg" = ( +/obj/structure/cable{ + 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/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/north) +"xMj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port) +"xMo" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"xNa" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"xNl" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"xNs" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/mob/living/simple_animal/mouse/rat, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"xNC" = ( +/obj/machinery/computer/atmos_alert, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/station/engineering/break_room) +"xNW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/public/fitness) +"xOa" = ( +/obj/structure/cable{ + 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/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"xOd" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) +"xOp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/command/teleporter) +"xOv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port) +"xOQ" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box/full{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/bible, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"xOV" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/secure/safe{ + pixel_y = 30 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"xOZ" = ( +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/station/science/storage) +"xPn" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/station/maintenance/abandonedbar) +"xPq" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "Secure Armory"; + name = "Secure Armory Shutters" + }, +/obj/machinery/door/window/reinforced/normal{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "ArmoryLock"; + name = "Armory Lockdown" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"xPs" = ( +/obj/structure/chair/comfy/teal{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"xPG" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the E.X.P.E.R.I-MENTOR chamber."; + layer = 4; + name = "E.X.P.E.R.I-MENTOR Camera Screen"; + network = list("Experimentator"); + pixel_y = 32 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/white, +/area/station/science/explab) +"xPQ" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel, +/area/station/bridge/checkpoint/south) +"xPW" = ( +/obj/structure/closet/secure_closet/magistrate, +/turf/simulated/floor/wood/oak, +/area/station/legal/magistrate) +"xQj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/old_detective) +"xQr" = ( +/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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) +"xQB" = ( +/obj/structure/table/reinforced, +/obj/item/radio{ + pixel_y = 8 + }, +/obj/structure/reagent_dispensers/peppertank/east, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security Requests Console"; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Departure Lounge Security Checkpoint West" + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "red" + }, +/area/station/security/checkpoint/south) +"xRb" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 6; + pixel_x = 6 + }, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"xRj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/medbay) +"xRw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) +"xRD" = ( +/obj/effect/spawner/random_spawners/cobweb_right_frequent, +/obj/structure/closet/firecloset, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"xRG" = ( +/obj/structure/table/wood/fancy, +/obj/item/kitchen/utensil/fork, +/obj/item/trash/candle{ + pixel_y = 3; + pixel_x = -5 + }, +/obj/item/clothing/gloves/ring/gold{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/old_kitchen) +"xRI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/station/public/toilet) +"xRT" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/office) +"xRX" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/sleeper) +"xSg" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/public/fitness) +"xSx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/transparent/glass, +/area/station/maintenance/virology_maint) +"xSV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"xTh" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) +"xTo" = ( +/obj/structure/chair/sofa/pew/left{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/station/maintenance/starboard2) +"xTw" = ( +/obj/item/reagent_containers/spray/pepper{ + pixel_x = -8 + }, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = -4 + }, +/obj/item/reagent_containers/spray/pepper, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = 4 + }, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = 8 + }, +/obj/structure/rack, +/obj/effect/decal/warning_stripes/red/hollow, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/station/security/storage) +"xTE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/public/fitness) +"xTI" = ( +/obj/structure/table/reinforced, +/obj/machinery/defibrillator_mount/loaded, +/obj/machinery/light/directional/south, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay Requests Console"; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"xTK" = ( +/obj/machinery/light/directional/north, +/obj/effect/decal/warning_stripes/south, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/table/reinforced, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/gps/engineering, +/turf/simulated/floor/plasteel, +/area/station/engineering/hardsuitstorage) +"xTV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port) +"xUg" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"xUh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"xUm" = ( +/obj/item/kirbyplants, +/obj/machinery/camera{ + c_tag = "Medbay Psychiatrist"; + network = list("Medical","SS13","Security") + }, +/turf/simulated/floor/wood/oak, +/area/station/medical/psych) +"xUO" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/exit) +"xUX" = ( +/obj/item/kirbyplants, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"xVf" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) +"xVk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/electrical) +"xVm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/science/genetics) +"xVq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/prison/cell_block/A) +"xVQ" = ( +/obj/machinery/economy/vending/secdrobe, +/obj/effect/decal/warning_stripes/red/hollow, +/obj/structure/sign/poster/official/random/south, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/station/security/storage) +"xVX" = ( +/obj/structure/table/wood, +/obj/item/camera, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"xVZ" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/fitness) +"xWk" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/service/hydroponics) +"xWz" = ( +/obj/effect/decal/cleanable/dust, +/turf/simulated/floor/wood/oak, +/area/station/maintenance/starboard) +"xWE" = ( +/obj/structure/sink/kitchen/north, +/turf/simulated/floor/plasteel{ + icon_state = "redfull" + }, +/area/station/service/kitchen) +"xWG" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/station/security/interrogation/observation) +"xWK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/library) +"xWO" = ( +/obj/structure/bed, +/obj/machinery/status_display/directional/east, +/obj/effect/landmark/start/chief_medical_officer, +/obj/item/bedsheet/cmo, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/command/office/cmo) +"xWY" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "Bar"; + name = "Bar Privacy Shutters" + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/bar) +"xXc" = ( +/obj/effect/spawner/random_spawners/blood_maybe, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) +"xXh" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/station/medical/virology/lab) +"xXt" = ( +/obj/machinery/chem_dispenser, +/obj/structure/reagent_dispensers/fueltank/chem/east, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/engine, +/area/station/science/explab) +"xXJ" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology) +"xYi" = ( +/obj/structure/table/wood, +/obj/structure/disposalpipe/segment, +/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" + }, +/obj/item/taperecorder{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/main) +"xYj" = ( +/obj/effect/decal/cleanable/dirt, +/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, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/port) +"xYp" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology/lab) +"xYE" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/white/hollow, +/obj/effect/landmark/start/head_of_security, +/obj/machinery/light/directional/east, +/obj/machinery/economy/vending/wallmed/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "darkredfull" + }, +/area/station/security/main) +"xYR" = ( +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/bridge) +"xYS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) +"xYX" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + autolink_id = "tox_in"; + dir = 4; + icon_state = "on"; + on = 1; + pixel_y = 1 + }, +/turf/simulated/floor/engine/plasma, +/area/station/engineering/atmos) +"xZj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/station/public/fitness) +"xZn" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/item/storage/box/donkpockets{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/miningdock) +"xZU" = ( +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"yaq" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/lighter/zippo/hos{ + pixel_x = 6 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/carpet/black, +/area/station/command/office/hos) +"yar" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/engineering/control) +"ybB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/xenobiology) +"ybF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + 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/plasteel/dark, +/area/station/command/bridge) +"ybM" = ( +/obj/structure/reagent_dispensers/peppertank/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/storage) +"ybO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/brig) +"ybV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/station/security/storage) +"ycb" = ( +/obj/effect/decal/warning_stripes/north, +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper/precision{ + pixel_y = 4; + pixel_x = 12 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgreen"; + dir = 1 + }, +/area/station/medical/virology/lab) +"ycf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/armory/secure) +"ycB" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/station/service/hydroponics) +"ycC" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/grass, +/area/station/security/permabrig) +"ycK" = ( +/obj/effect/spawner/lootdrop/trash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/maintenance/starboard2) +"ycZ" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/maintenance/starboard) +"ydj" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red" + }, +/area/station/security/brig) +"ydk" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/security/checkpoint/south) +"ydm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/starboard) +"ydY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) +"yeb" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/decal/warning_stripes/blue, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage/secondary) +"yed" = ( +/turf/simulated/wall, +/area/station/service/bar/atrium) +"yeh" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/abandonedbar) +"yeA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "caution" + }, +/area/station/maintenance/turbine) +"yeD" = ( +/obj/machinery/door/airlock/highsecurity{ + heat_proof = 1 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"yff" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/east, +/obj/structure/sign/poster/official/random/east, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/medbay2) +"yfs" = ( +/obj/machinery/door/airlock/multi_tile/security/glass, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel/dark, +/area/station/security/visitingroom) +"yfx" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"yfO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/camera{ + c_tag = "Brig Prison Hall Entry"; + dir = 6; + network = list("Prison","SS13") + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/station/security/permabrig) +"yfP" = ( +/turf/simulated/wall, +/area/station/public/sleep_male) +"ygd" = ( +/obj/effect/decal/warning_stripes/east, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) +"ygp" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"ygI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/reinforced/normal, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "Secure Armory"; + name = "Secure Armory Shutters" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general, +/obj/machinery/door/poddoor/preopen{ + id_tag = "ArmoryLock"; + name = "Armory Lockdown" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/brig) +"ygL" = ( +/obj/structure/disposalpipe/junction/reversed, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/maintenance/old_kitchen) +"ygX" = ( +/obj/structure/table/reinforced, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/light/small/directional/north, +/obj/item/wrench, +/obj/item/crowbar, +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/item/stack/sheet/metal{ + amount = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) +"ygY" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"yhb" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/engineering/atmos/control) +"yhe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) +"yhh" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/wood/oak, +/area/station/command/office/hop) +"yhF" = ( +/obj/machinery/door/window/classic/reversed{ + name = "Coroner" + }, +/obj/structure/sign/poster/official/random/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/morgue, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"yhT" = ( +/obj/machinery/status_display/directional/north, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"yia" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/security/prisonlockers) +"yib" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/medical/storage) +"yic" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/virology) +"yif" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Brig Head of Security's Office"; + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/station/command/office/hos) +"yil" = ( +/obj/item/kirbyplants, +/obj/machinery/firealarm/directional/east, +/obj/machinery/door_control/shutter/north{ + id = "transitlock"; + name = "Transit Tube Lockdown Control"; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/station/engineering/aitransit) +"yiO" = ( +/obj/effect/decal/warning_stripes/southwest, +/turf/simulated/floor/plasteel, +/area/station/maintenance/port2) +"yiR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel) +"yjd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/station/hallway/secondary/exit) +"yjr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/service/theatre) +"yjy" = ( +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/west) +"yki" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "red" + }, +/area/station/security/visitingroom) +"ykk" = ( +/obj/structure/chair/office, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/security/interrogation/observation) +"ykw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/public/locker) +"ykJ" = ( +/turf/simulated/floor/plasteel/white, +/area/station/science/break_room) +"ykT" = ( +/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/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/station/security/prison/cell_block/A) +"ykU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/maintenance/fore2) +"ykX" = ( +/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/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/station/security/brig) +"ylr" = ( +/obj/machinery/atmospherics/unary/tank/oxygen{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/engine, +/area/station/maintenance/incinerator) +"ylJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/supply/storage) + +(1,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(2,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(3,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(4,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(5,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(6,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(7,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(8,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(9,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(10,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(11,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(12,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(13,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(14,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(15,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(16,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(17,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(18,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(19,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(20,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(21,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(22,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(23,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bmo +bpm +pVN +bpm +pVN +bpm +bmo +bmo +bmo +bmo +bmo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(24,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bkt +bpn +brp +bRu +brp +bRr +blv +blO +brp +brp +brp +cpb +bLR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(25,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bku +bpo +bLM +bms +bPC +bRs +bTs +bVH +brq +bms +bnR +bpo +brr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(26,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +bpm +bmo +bmo +bmo +bmo +bmo +bmo +bmo +bmo +bmo +bmo +bmo +bPR +bpo +brr +bNM +bNM +bNM +bTt +bNM +bNM +bNM +bkt +bpo +bLR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(27,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bku +bpn +brp +brp +brp +brp +bwM +brp +brp +brp +brp +brp +brp +brp +bJQ +brs +bNM +bPG +bRx +bTu +bVJ +ccx +bNM +bkt +lvH +brr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(28,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ops +bpo +brq +bpu +bms +bms +bms +bpu +bms +bms +bpu +bms +bms +bpu +bms +aaa +bNM +bPH +bSr +bTv +bXI +cgI +bNM +bkt +lvH +dSz +pVN +bpm +pVN +bmo +bpm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(29,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bkt +bpo +brr +abj +abj +abj +btd +btd +btd +btd +btd +btd +btd +btd +btd +btd +bNM +bPO +bTc +bTw +bVL +chu +bNM +bku +boe +mRz +mRz +mRz +mRz +brp +cpb +brs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(30,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bku +bpo +brs +abj +abj +btd +btd +btd +bzv +btd +btd +btd +bvz +btd +bzv +btd +bNM +bPP +bUD +hzl +bXI +chE +bNM +aaa +bpu +bms +bms +bpu +bms +bPC +bpo +brs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(31,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ops +bpo +brs +aaa +btd +btd +btd +bxX +bzw +btd +bCT +btd +bzw +bzD +bJR +btd +bNM +bPQ +bXm +bTI +bVN +cmx +bNM +qrT +qrT +qrT +qrT +qrT +abj +bku +bpo +brs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(32,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bku +bpo +brr +abj +btd +btd +bwG +bxY +byg +bBd +bCU +bwG +bBf +bxY +bBf +tEw +bNM +bNM +bNM +bTz +bNM +bNM +bNM +qrT +qrT +qrT +qrT +qrT +qrT +bkt +bpo +brs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(33,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bmo +bnM +bpo +brs +aaa +btd +bvz +bLQ +bxZ +bzy +bIh +bCV +bIh +bIh +bIh +bJS +bwH +bNN +bPI +bVO +bTG +bVO +bPI +bNM +qrT +rSI +vzz +eaH +qrT +qrT +bkt +bpo +bLS +bmo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(34,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bkt +bmp +cqK +bpq +brr +btd +btd +btd +bBg +bye +bzz +bBf +bEF +bBf +bBf +bgN +bJT +bLO +bNM +bPJ +bRz +bTB +bVS +bXH +bNM +caV +caW +fmm +fmm +chX +qrT +bku +bmq +cqK +csk +brs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(35,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bku +bmq +bnO +bpq +brs +btd +btd +byg +bBf +bye +bBf +btd +btd +bIi +naX +bwJ +bhV +bNL +bNM +bSo +bVS +bTE +bVS +bXI +qrT +ccU +caW +ceP +fmm +fBl +qrT +bkt +bmq +cqL +bpq +brs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(36,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bkt +bav +bnP +bvv +bRG +btd +btd +bwF +bwK +byc +bCY +btd +bCX +bEE +btd +bIj +bJU +biX +bNP +bPL +bRB +bTD +bVR +bXJ +bZh +caX +boh +cgu +ccW +chW +qrT +cKl +bBv +bnP +btk +brs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(37,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bku +baE +bcA +bdZ +brs +btd +btd +bvC +bwJ +byd +bBf +btd +btd +bIk +naX +bwJ +bJV +bBf +bNM +bXI +bVS +bTE +bVS +bXI +oMr +caY +ccX +ceP +fmm +vDg +qrT +bkt +brT +bsb +btx +brs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(38,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ops +bmr +cqM +bps +brr +btd +btd +btd +bCW +byd +bzA +bBf +bED +bBf +bBf +bIl +bip +bBf +bNM +bPJ +bRD +bTF +bVS +bXK +bNM +caV +ccX +fmm +fmm +chX +qrT +bku +cpd +cqM +csl +brs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(39,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +oMO +fPS +bJP +brs +aaa +btd +bvz +bLQ +byf +bzB +bIm +bCZ +bIm +bIm +bIm +bJW +bwH +bNR +bPI +bVT +bTG +bVT +bXL +bNM +qrT +bon +ceL +hng +qrT +qrT +bkt +bJP +orz +bpu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(40,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bku +bJP +brr +abj +btd +btd +bwG +byg +bIn +bBd +bCU +bwG +bBf +bIn +bBf +uVE +bNM +bNM +bNM +bTH +bNM +bNM +bNM +qrT +qrT +qrT +qrT +qrT +qrT +bkt +bJP +brr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(41,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bkt +bJP +brs +aaa +btd +btd +btd +byh +bzD +btd +bDa +btd +bGq +bIo +bzw +btd +bNM +bPN +bVj +bTI +bVU +bPN +bNM +qrT +qrT +qrT +qrT +qrT +abj +bku +bJP +bLR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(42,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +lVg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bkt +bJP +brs +abj +abj +btd +btd +btd +bzv +btd +btd +btd +bvz +btd +bzv +btd +bNM +bQC +bXI +bTL +bXI +bXM +bNM +aaa +bpm +bmo +bmo +bpm +bmo +cnY +bJP +brr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(43,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bkt +bJP +brr +abj +abj +abj +btd +btd +btd +btd +btd +btd +btd +btd +btd +btd +bNM +bQD +bjE +bTK +bXI +bXN +bNM +bku +bJO +pDS +pDS +pDS +pDS +chS +cpe +brs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(44,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bkt +bJP +brw +bpm +bmo +bmo +bmo +bpm +bmo +bmo +bpm +bmo +bmo +bpm +bmo +aaa +bNM +bRt +bXI +bTL +bXI +bXO +bNM +bkt +eHx +orz +oMO +bpu +bms +bms +bms +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(45,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bku +bJY +chS +chS +chS +chS +bxM +chS +chS +chS +chS +chS +chS +chS +bJX +brs +bNM +bPN +czz +blG +bmS +bXP +bNM +bkt +bJP +brr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(46,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +bpu +oMO +bms +bms +bms +bms +bms +bms +bms +bms +bms +bpu +fPS +bJP +bLR +bNM +bNM +bNM +bTM +bNM +bNM +bNM +bku +bJP +brs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(47,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bku +bJP +bLS +bmo +bPR +bRJ +bTN +bVV +brw +bmo +bnM +bJP +brs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(48,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bkt +bJY +bLT +bRv +chS +bVW +bTO +bVW +chS +chS +chS +cpe +brs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +acF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(49,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +fPS +bLU +bLM +bPC +bmq +bTS +bpq +brq +oMO +bpu +oMO +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(50,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bku +bLV +brr +bku +bRL +bTQ +bmY +brr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +aaa +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(51,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUJ +aaa +bku +bmq +bTR +bpq +brr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +dyo +dyn +dyo +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(52,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUJ +aaa +bku +bmq +bTS +bpq +brr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +dyn +dyo +dCy +dyo +dyn +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(53,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUJ +abj +bPS +bRM +bTT +bVX +bPS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +dyo +dyo +dBE +dCz +dEc +dyo +dyo +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(54,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUJ +aaa +bPT +bRN +bTU +bVY +bXQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +abj +abj +dyn +dyn +dAY +dBF +dAH +dEv +dFU +dyn +dyn +abj +abj +acF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(55,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUJ +aaa +bPU +bRO +bZw +bVZ +bXR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dyo +dzv +dAH +dAH +mtx +dAH +dAH +dFf +dyo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(56,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUJ +abj +bPV +abj +chw +abj +bPV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +abj +abj +dyn +dyn +dAZ +dBG +dAH +dEw +dFV +dyn +dyn +abj +abj +acF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(57,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUJ +aaa +bPW +bRP +chw +bWa +bXS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +dyo +dyo +dCA +dAH +dEK +dyo +dyo +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(58,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUJ +aaa +bPX +bRQ +cjl +bWb +bXT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +dyn +dyo +dAH +dyo +dyn +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(59,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUJ +aaa +abj +bRR +cnH +bWc +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +dyo +dDP +dyo +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(60,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bVf +bXG +bYl +abj +coi +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +aaa +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(61,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +bUJ +aaa +csr +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(62,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +bUJ +aaa +csr +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +acF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(63,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +bUJ +abj +coi +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(64,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +bUJ +aaa +csr +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(65,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +bUJ +aaa +csr +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(66,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +bUJ +abj +coi +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(67,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +bUJ +aaa +csr +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(68,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +bUJ +aaa +csr +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(69,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +dij +abj +dij +dij +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +bUJ +abj +coi +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(70,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +dij +aGW +dij +dij +aaa +abj +aaa +abj +aaa +dij +dij +abj +dij +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +abj +aaa +bUJ +aaa +csr +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dZV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(71,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +abj +aaa +abj +aaa +ash +asV +atY +aaa +abj +aaa +abj +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +bUJ +aaa +csr +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dmq +dmq +dmq +cHA +cHA +cHA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(72,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +ash +asV +atY +aaa +ash +ata +atY +aaa +ash +asV +atY +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUJ +abj +coi +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cRD +cRD +cRD +xCC +cHA +cXX +cXX +cHA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +acF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(73,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +ash +ata +atY +aaa +ash +ata +atY +aaa +ash +ata +atY +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +bUJ +aaa +csr +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cUP +cUQ +vUu +cIu +elb +drn +drn +cHA +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(74,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +ash +ata +atY +abj +ash +ata +atY +abj +ash +ata +atY +abj +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +acF +acF +abj +abj +abj +acF +acF +acF +dij +aaa +bUJ +aaa +csr +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cRD +cRD +cRD +xCC +cHA +sPz +cXU +cHA +cHA +cHA +cHA +cHA +cHA +aaa +aaa +abj +acF +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(75,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +ash +ata +atY +aaa +ash +ata +atY +aaa +ash +ata +atY +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +bwN +bwN +bwN +bwN +bwN +bwN +bwN +acF +abj +abj +bUJ +abj +coi +abj +abj +aaa +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +dmq +dmq +cHA +cHA +drn +slE +drn +pAC +dpX +cLA +dtU +cHA +cHA +aaa +abj +acF +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(76,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +dij +dij +aaa +ash +ata +atY +aaa +abj +atb +abj +aaa +ash +ata +atY +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +bwN +bzE +bzE +nYm +bzE +bzE +bwN +acF +dij +aaa +bUJ +aaa +csr +aaa +abj +bXU +cba +cba +cba +bXU +cie +cie +cie +bXU +cie +cie +cie +bXU +cie +cie +cie +bXU +cie +cie +cie +bXU +xtS +cWn +drn +dhG +drn +drn +drn +dhG +drn +cCy +cJK +aaa +abj +acF +cHA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(77,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +abj +abj +abj +abj +atb +abj +abj +abj +atZ +abj +abj +abj +atb +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +bwN +bzE +bBi +bBj +bEG +bGB +bwN +abj +dij +aaa +bUJ +aaa +csr +aaa +abj +bXU +bXU +bXU +bXU +bXU +bXU +bXU +bXU +bXU +bXU +bXU +bXU +bXU +bXU +bXU +bXU +bXU +bXU +bXU +bXU +bXU +iPQ +cWn +drn +cHA +cHA +cHA +cHA +cHA +drn +maf +cJK +aaa +cHA +uci +cHA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(78,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +apF +aEc +aEc +aEc +atc +atZ +atZ +atZ +atZ +atZ +atZ +atZ +atZ +aEb +aEc +aEc +aEc +atc +atZ +atZ +atZ +abj +acF +acF +acF +acF +acF +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +bwN +bzE +bBj +bDc +bBj +bzE +bwN +abj +abj +abj +bUJ +abj +coi +abj +abj +bXU +cba +cba +cba +bXU +cie +cie +cie +bXU +cie +cie +cie +bXU +cie +cie +cie +bXU +cie +cie +cie +bXU +rkv +drn +dhG +cHA +cJP +cLC +rkV +cHA +drn +cTi +cJK +aaa +cHA +wrr +cHA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(79,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +abj +abj +abj +abj +atK +abj +abj +abj +atZ +abj +abj +abj +atK +abj +abj +abj +abj +abj +abj +abj +atK +abj +aLT +aNT +aPk +aNT +acF +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +bwN +bzE +bBi +bBj +bBi +bzE +bwN +abj +dij +aaa +bUJ +aaa +csr +aaa +bXU +bXU +cbb +abj +aaa +cmC +aaa +aaa +aaa +cmL +aaa +aaa +aaa +cmL +aaa +aaa +aaa +cJd +aaa +abj +cbb +bXU +dmq +drn +cXU +cHA +cWl +unt +lxh +cHA +sQr +sZp +cHA +aaa +cHA +fuc +cHA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(80,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +dij +abj +abj +aaa +ash +atL +atY +aaa +abj +atK +abj +aaa +ash +atL +atY +aaa +abj +aaa +abj +abj +aGX +ujF +aGX +acF +leZ +wok +leZ +aWR +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +bwN +bzE +bzE +bzE +bzE +bzE +bwN +abj +abj +aaa +bUJ +aaa +csr +aaa +bXU +bZj +cbb +cdc +aaa +ctY +cJe +cJe +cKj +cJe +cJe +cNn +cJe +cJe +cNZ +cJe +cJe +cOm +aaa +cda +cbb +cDx +bXU +drn +dhG +cHA +cHA +pWT +cHA +cHA +dtU +drn +cJK +cHA +cHA +uht +cHA +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(81,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +ash +atL +atY +aaa +ash +atL +atY +aaa +ash +atL +atY +aaa +dij +aaa +abj +abj +aGX +sVl +aGX +acF +leZ +aPl +leZ +aSx +aTS +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +bwN +bzG +bBl +bDd +bBl +bGs +bwN +abj +bVs +bXG +bYJ +abj +csr +abj +bXU +bZj +cbb +cxG +abj +czw +cwt +clp +cuO +clp +clp +cuO +clp +clp +cuO +clp +cwv +czw +abj +cCg +cbb +cDx +bXU +dhG +drn +cIv +dhG +cLA +cMS +cLA +cQu +cLA +cLA +drn +cWm +cXT +kyU +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(82,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +ash +atL +atY +abj +ash +atL +atY +abj +ash +atL +atY +dKA +dij +abj +abj +aGX +aGX +wzi +aGX +leZ +leZ +aPm +leZ +leZ +aZY +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +bwN +bzH +bBo +bfO +bge +bGu +bwN +abj +bUJ +abj +abj +abj +csr +abj +bXU +bZk +naq +cxG +aaa +czw +cjI +cnZ +abj +abj +cuQ +aaa +acF +abj +abj +dEx +dvU +czw +aaa +cCg +cDt +dCx +bXU +cWn +dhG +bLN +cJO +cNh +cNh +cNh +drn +drs +cJO +cNh +dhG +dhG +cJK +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(83,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +ash +atL +atY +aaa +ash +atL +atY +aaa +ash +atL +atY +aaa +dij +aaa +abj +aGY +aIq +upI +aKY +leZ +aNU +aPn +aQM +aSy +aTU +abj +abj +aaa +abj +abj +abj +aaa +abj +abj +abj +abj +abj +abj +abj +aaa +abj +abj +abj +abj +bwN +bzI +bEI +bDf +bEI +bGv +bwN +qwS +ptq +qwS +qwS +abj +csy +bWd +bXU +bZl +cbb +cxG +abj +cBU +cjJ +abj +aaa +aaa +acF +abj +acF +aaa +aaa +abj +dUE +cPK +abj +cCg +cbb +cDv +bXU +drn +drn +cIw +cIx +cIx +cIx +cIx +cIx +cIx +cIx +cIx +cWn +dtU +cHA +abj +abj +aaa +dbz +dbz +irt +dbz +irt +dbz +dbz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(84,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +ash +atU +atY +aaa +ash +atL +atY +aaa +ash +atU +atY +aaa +abj +aaa +abj +aGY +aIr +aJI +aKZ +leZ +jJU +vRj +huh +leZ +aZY +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +abj +abj +bwN +bzJ +bEK +bDh +bEK +bGw +bwN +sPt +suC +vkv +qwS +bZf +ctI +ctJ +bXU +bZm +cbe +cxG +aaa +czw +cjI +abj +aaa +acF +acF +acF +acF +acF +aaa +abj +dvU +czw +aaa +cCg +cDu +dUG +bXU +drn +cXU +cIx +cKt +cMU +cOy +cOz +cRE +cZq +deZ +cIx +cWo +cXU +cHA +abj +abj +abj +dbz +rlI +dhu +dhv +dWw +yeh +dbz +abj +abj +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(85,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +dij +aaa +abj +aaa +abj +aaa +ash +atU +atY +aaa +abj +aaa +abj +aaa +dij +abj +abj +aGY +aIs +aJM +aLc +leZ +ibb +aPp +aQO +leZ +aTU +aOg +aXa +aYu +aXa +aOg +bdk +beE +bdk +aOg +biK +bkv +biK +aOg +bpv +brx +bpv +aOg +abj +abj +bwN +bzK +bBr +bDg +bEM +fTi +bwN +wdu +uQJ +wdu +qwS +sEB +wxe +wWX +bXU +bXU +bZl +cFL +acF +czw +cjI +coa +acF +acF +cwt +clp +cwv +acF +acF +acF +dvU +czw +acF +cbb +cDv +bXU +bXU +cWn +cXU +cIy +cLx +cOx +mgl +cOA +cTh +cOx +dfd +cIx +cWn +dsr +irt +irt +dbz +irt +dbz +yeh +qCd +duT +dYm +lTi +dbz +irt +dbz +irt +irt +abj +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(86,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +dij +aGW +dij +abj +aaa +abj +aaa +abj +aaa +abj +dij +aGW +dij +dij +abj +aaa +aGY +aGY +aLr +aGY +leZ +jJU +apC +huh +leZ +aZY +aOg +aXb +aYv +aXa +aOg +bdl +beF +bdk +aOg +biL +bkw +biK +aOg +bpw +bpv +bpv +aOg +abj +bwN +bwN +bzL +vzG +bDi +vzG +bzL +bwN +rPh +fGI +eNr +pPZ +rJg +pbJ +jof +bXU +bXU +bZl +cbb +abj +cBU +cjJ +aaa +abj +acF +cjI +cpg +dvU +acF +abj +aaa +dUE +cPK +abj +cbb +cDv +bXU +cEA +sCq +dWk +bLP +cJR +cLD +nLW +cLD +cQx +cLD +cJR +cJM +cWp +cXU +xPn +dae +yeh +dcM +daf +lTi +dhv +duT +dYm +lTi +dmM +dou +dpR +rlI +irt +abj +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(87,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +dij +dij +dij +dij +dij +dij +dij +dij +abj +abj +abj +abj +aaa +leZ +aIt +aMO +aLb +aMA +yeA +aPr +mRb +leZ +aTU +aOg +qtC +vYt +lPg +aOg +uit +jKW +xYX +aOg +uJH +vXf +tnu +aOg +ibK +jGV +xBO +aOg +acF +bwN +byi +bzL +bBt +bDj +bEN +bGy +bco +rMh +uBa +gUS +ftB +sPW +kFr +hgg +bXU +bXU +bZl +dtI +acF +czw +cjI +acF +acF +acF +cqO +cqQ +cwu +acF +acF +dQC +dvU +czw +acF +cbb +cDv +bXU +bXU +tbp +lrv +cIx +oCK +cLE +jzw +cLE +cQy +cLE +djk +fWx +nyt +drn +cLz +yeh +swI +dcX +yeh +dYu +lTi +lTi +lTi +dYt +dnH +swI +dcX +dkr +dbz +abj +abj +abj +abj +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(88,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +abj +aaa +aaa +aaa +aaa +acF +aHa +aIu +aJN +ffZ +aLk +aOd +aPt +aQQ +aSz +baa +aOg +wWl +aVR +lOm +aOg +wWl +aVR +lOm +aOg +wWl +aVR +lOm +aOg +lOm +aVR +wWl +aOg +acF +aVc +tls +srs +riQ +bDk +bEO +bIp +qwS +yil +bAF +hVL +unR +erX +eJM +eJn +bXU +bZn +cdb +cxG +aaa +czw +cjI +abj +aaa +acF +acF +acF +acF +acF +aaa +abj +dvU +czw +aaa +cCg +cDw +dUH +bXU +cFT +ddg +cIx +haY +cLF +cMX +cOC +cMX +cJW +cTj +cIx +cWr +cXX +cLz +dbG +yeh +lTi +iFl +yeh +dhw +diY +dkr +dYt +dYu +dYu +dcX +dqZ +xPn +abj +aaa +aaa +abj +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(89,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +abj +abj +abj +abj +abj +abj +aaa +abj +abj +abj +leZ +aIv +aJO +xqR +tqr +nls +pOF +aQR +leZ +abj +aSM +bbF +aSM +buX +aSM +bbF +aSM +buX +aSM +bbF +aSM +buX +aSM +buX +aSM +bbF +aSM +acF +bwN +byk +bzL +bDe +bDl +bGt +bGz +bGz +bGz +bGz +bGz +bGz +bGz +bGz +bGz +bXU +bZl +cbb +cxG +abj +cBU +cjJ +abj +aaa +aaa +acF +abj +acF +aaa +aaa +abj +dUE +cPK +abj +cCg +cbb +cDv +bXU +jUu +cXU +cIx +cIx +cLG +cIx +cLG +cIx +cLG +cIx +cIx +cWs +dlM +cLz +dag +kUG +fIn +acS +acS +acS +acS +acS +acS +vpU +lTi +dcX +dra +dbz +dbz +dbz +aaa +abj +abj +abj +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(90,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +aaa +aAe +aBV +aAe +aBV +aAe +aBV +aAe +aJy +aBV +leZ +aIw +aJO +aLf +aMG +aOb +aOb +aOb +aOg +aOg +aOg +bmN +aOb +baj +aYO +bmN +aOb +baj +aYO +bmN +aOb +baj +aOg +baj +aOb +bmN +aOg +aOg +bwP +byl +byl +byl +bEJ +byl +bGz +bIq +bKd +bMg +bNZ +bWl +bRV +kPt +fHs +bXU +bZo +naq +cxG +aaa +czw +cjI +cqN +abj +abj +acF +aaa +czi +abj +abj +dQD +dvU +czw +aaa +cCg +cDt +dUI +bXU +reN +cXU +cIx +cJS +cLH +cMY +cOA +cOA +cRF +cTk +cIx +vpq +cXY +irt +dah +lAm +lTi +dcX +dcX +dcX +dfN +dfN +yeh +sph +iFl +lTi +lTi +yeh +yeh +dbz +aaa +abj +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(91,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +abj +abj +aAi +ayG +azR +ayG +aAi +ayG +azR +aIT +aEa +leZ +aIx +aJO +eQe +eIa +aOb +aPH +aPH +aSA +aTW +aVC +aXg +aTW +bak +bbM +aXg +aTW +bak +aVC +aXg +aTW +bak +bnS +bpy +olZ +btg +buo +bvD +bwP +ygX +bzN +bIx +bDm +bET +bGz +bIr +bKe +bMh +bOa +bjz +bjP +sQA +wrE +bXU +bZl +cbb +cxG +abj +czw +cjI +cif +aaa +aaa +acF +aaa +cif +aaa +aaa +cif +dvU +czw +abj +cCg +cbb +cDv +bXU +jUu +cXU +cIx +cJU +cLI +cMZ +cMZ +cMZ +cRG +cLH +cIx +uPq +cXY +irt +dai +uai +lTi +mAs +dcX +swI +yeh +dks +dcX +sph +yeh +dYy +drb +iFl +dtJ +irt +abj +acF +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(92,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +abj +aaa +aAi +aAi +aAi +aAi +aAi +aAi +aAi +aDC +aBV +aHa +aIy +gJL +pNz +mPY +jmi +xqG +aQT +aSB +aTX +aVD +aXh +rYV +bal +bbN +bdn +mZk +bgb +bbN +biN +fMM +bmu +bnT +bpz +brA +bth +bup +bvE +bwQ +byn +bzN +poK +klz +bEQ +bGz +bIs +bKf +bMi +bOb +bUq +bRW +bUi +dYV +bXU +cbc +esw +cgB +aaa +cHt +cjK +cob +cob +cob +cob +cuP +cob +cob +cob +cob +dUF +cPX +aaa +dqQ +hhD +dVy +bXU +nXR +drn +cIB +cJV +cLJ +cNa +cOD +cQz +cRH +cTl +cIx +uPq +dsr +irt +rlI +rJi +dcR +mAs +dfN +dcX +diZ +dfN +yeh +sph +dYt +dYy +drc +yeh +dtK +dbz +aaa +acF +abj +abj +acF +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(93,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +abj +abj +aAi +ayG +ayG +ayG +aAi +ayG +ayG +aIT +aEa +aHa +aIz +aJR +hgs +hxO +aOb +qHc +kaq +pxC +hEc +aVE +aXi +aYy +aYy +aYy +bdo +aYy +aYy +aYy +bdo +bkz +bmv +aUi +bpA +brB +aTZ +ban +bvF +bwP +bzO +bzN +bBy +bDo +bER +bGz +nVq +bKf +bMj +bQd +nWx +bRX +bUj +jXC +bXU +bXU +jkM +bXU +cdc +abj +cif +cda +cgG +cgG +cgG +cpj +cgG +cgG +cgG +cda +cif +abj +cCf +bXU +wou +bXU +bXU +jUu +dhG +cIC +cJW +cLJ +cNe +ldQ +cQA +cRI +fOy +cIx +rQp +dhG +irt +daj +hvs +dmM +mAs +dfN +yeh +dfN +dcX +dcX +sph +lTi +dYy +drd +lTi +hsa +irt +abj +acF +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(94,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +aAi +aDC +aEa +aDC +aEa +aDC +aEa +aDC +aBV +leZ +aIA +aJR +hLA +pih +izz +nPe +aQV +aSD +qYd +aVF +aXj +aYz +bam +bam +bam +ban +ban +aXW +aYt +bkA +bmw +bnU +bpB +brC +bti +buq +bvG +bwP +fBT +bzN +ebH +fGU +bES +bGz +bIu +bKg +bMk +bOd +bMk +bRY +bUk +bWn +bXU +bZp +hLU +bXU +bXU +cgG +cgG +cgG +cgG +cmQ +yar +onQ +yar +csp +cgG +cgG +cgG +cgG +bXU +bXU +uVM +cDz +bXU +qMB +dWg +cHi +rMm +vKs +tmx +cOE +iZl +cRJ +cOG +cUS +fvA +drn +irt +yeh +rJi +dcT +mAs +yeh +yeh +yeh +dcX +dfN +sph +dYu +dYz +drc +yeh +dlK +dbz +aaa +acF +abj +abj +acF +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(95,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +dij +abj +dij +dij +abj +atd +atd +eKj +aCd +eKj +eKj +atd +atd +eKj +eKj +eKj +aCd +atd +leZ +aJS +hgs +jhJ +aOb +kXZ +aQW +aSE +gsz +aVG +aXk +aYA +aYA +bbO +aYA +beJ +bgc +aXk +biO +bkB +bmx +aUi +bpC +brD +btj +bur +bvH +ngU +vQw +hzs +bBz +bDq +bEU +bGz +bIv +bKh +bUl +bOe +bUl +bRZ +bUl +bIq +bXU +fEo +cbi +cdd +ceU +cib +cib +cib +cgG +cmR +cod +cpl +cqR +csq +cgG +cib +cib +cib +dWi +bXU +llJ +jEI +bXU +vpq +dsr +cIx +tJc +sOU +cNe +iss +qGa +cRK +cJW +cIC +lQE +iIM +sVu +oPR +rcF +lZc +pLr +doO +doO +doO +doO +dfN +vRk +iFl +dcX +dre +dbz +dbz +dbz +aaa +abj +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +dij +dij +abj +sso +dij +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(96,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +abj +abj +atd +avx +uQW +ePt +kur +kur +wwE +kuJ +vJN +xiD +rAC +gba +aGd +leZ +aJU +uNZ +aMK +aOg +aPy +aQX +aSD +bMF +aSI +aXl +aVO +ban +bbP +ban +ban +ban +bhj +biP +bkB +bmy +bnV +bpD +brE +ban +bus +bvI +bwP +byl +byl +byl +bDr +byl +bGz +bQi +bKk +bUm +bOf +bQi +bSa +bUm +bGz +bXU +bZr +pwY +bXU +ceV +cic +cjL +cjP +idF +pMU +coe +cpm +cqS +uqF +idF +cic +cjL +cjP +ceV +bXU +siP +bXU +bXU +gZI +dlM +cIx +cJZ +sOU +cNe +ceM +cQD +cRL +cTm +cIx +qGj +dhG +cZl +dnH +dcX +drb +drb +dfP +dra +dja +iFl +lTi +dmQ +irV +dcX +drf +irt +abj +aaa +aaa +abj +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +abj +dij +dij +aaa +aaa +abj +aaa +aaa +dij +dij +sso +dij +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(97,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +abj +atd +pAQ +tEe +mPO +atd +aLs +aFd +axI +aFd +ayT +aCi +aCi +aDe +aFd +aFd +sQZ +aJF +leZ +leZ +vHD +aMJ +aOg +aPz +aQY +aSF +uQB +aVH +aXm +beJ +bao +bbQ +bdp +beJ +bgd +aYA +biQ +bkC +bmz +bnW +bpE +brF +btl +but +bvJ +ngU +uLB +gwB +bBA +fCc +eIk +byl +bIx +bKC +bIx +bGz +qWx +bSb +bIq +bOf +bXY +bZs +wVM +cde +ceW +bWK +cjM +cjQ +clr +cmT +cof +cpn +cog +cDG +clr +sMF +cjM +bWK +cAC +cAD +jTH +cDE +bXU +gZI +cHo +cIx +lCu +iga +cOF +cOF +cOF +cRM +cTn +cIx +ezh +dhG +cLz +dan +xnq +dcW +dcX +dcX +dcX +dcX +dcX +yeh +dcX +dcX +dnH +dcX +dbz +abj +abj +abj +abj +abj +abj +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +aaa +abj +aaa +aaa +dTV +dYL +dVn +aaa +aaa +abj +aaa +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(98,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +atd +atd +qWG +tCX +hGx +axl +avI +awI +axK +ayJ +azU +ayR +aAg +aCV +aEd +ayR +iyC +aJH +aIB +lZR +aLs +aML +aOg +aPH +spS +iiY +oQJ +aVI +aXn +aYD +hTC +bap +hTC +beK +aXq +bhk +biT +bkM +bmA +aOb +bpF +aOb +aOg +aOg +aOg +bwP +cLT +bKr +bKr +ndD +bKr +bGA +bIy +blx +bIy +bGz +bQk +bSc +bUo +bWo +bYc +bZt +cbl +cdf +ceX +wyG +wmc +cjR +cls +cmU +cqU +cpo +ePd +csu +cls +cuS +tuq +nmg +czk +cAE +cCm +cdh +bXU +vPi +cHp +cIx +cKb +cLO +cMY +cOG +cOA +cOG +cJT +cIx +uPq +cXU +cLz +rlI +dbJ +dcX +deG +dcX +yeh +rlI +dkv +dlK +dlK +daf +yeh +rlI +irt +abj +aaa +aaa +abj +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +dTV +dYL +dVn +aaa +dTV +dYM +dVn +aaa +dTV +dYL +dVn +aaa +sso +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(99,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +raB +aaa +eKj +tUw +pJf +rwj +pJf +axl +avI +oql +axJ +aCp +ayV +aCS +aCS +aDh +aFl +aHc +uly +fhC +aID +kAG +aLu +aMM +aOj +aUM +aUM +aSD +qYd +aVJ +aXo +aXo +aOb +aOb +aOb +aXo +aXo +bhl +biR +bkM +bmB +bnX +tkz +brG +btm +buu +aOg +xNC +bQt +bQt +bQt +bKl +bQt +bQp +bQt +bKl +jsE +bGz +bQl +bSd +bUp +bWp +cxE +bZx +cbo +cdh +ceY +cig +cbn +cjS +bXU +sWZ +tXH +hWp +tsR +csv +bXU +huY +cbn +hfn +czl +cAF +cbo +cdh +bXU +tJR +drs +cIx +cIx +cIx +cIC +cOH +cIx +cIw +cIw +cIx +qGj +drn +cfn +cfn +bDp +bDp +bDp +bDp +bDp +bDp +bDp +bDp +bDp +dbM +dbM +bDp +bDp +bDp +bDp +bDp +abj +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sso +aaa +dTV +dYM +dVn +aaa +dTV +dYM +dVn +aaa +dTV +dYM +dVn +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(100,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +raB +aaa +uUh +lWo +nIM +qEN +pJf +axl +avI +iVF +axL +ayL +azT +azT +azT +ayP +aCj +aDf +aFe +aHh +aID +aCk +ocA +tzp +aOg +aPH +aQZ +aSD +qYd +aVI +aOb +aYF +qxs +skh +skh +oHi +aOb +bhk +tBD +bkM +bmC +aYK +bpH +brH +aYK +buv +aOg +wxg +gEt +bIA +bIA +bDu +bEW +bIA +bIA +bKp +bMu +bGz +bQm +bjT +blH +bWq +cxE +bZx +cbn +cdh +ceY +cih +cbn +cjT +bXU +bXU +sbW +cpq +aae +bXU +bXU +cjT +cbn +czr +czl +cAF +cbn +cDD +cEB +wfC +cHq +xDT +cKc +xeI +olk +ozO +xeI +cRN +isQ +glK +bIb +xdE +iMI +ecY +dbK +dcY +ddI +dkw +dhy +djb +dYn +bDp +dmV +dpT +dpW +dso +dsn +dtM +duQ +bDp +abj +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sso +abj +dTV +dYM +dVn +abj +dTV +dYM +dVn +abj +dTV +dYM +dVn +abj +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(101,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +ths +kaO +pJf +uoQ +dFi +auG +avC +fCZ +axM +ayM +aAd +aAd +aAd +raH +aCj +aEf +aFf +aHl +aIE +atd +aLp +atd +aOg +aPC +aRb +aSD +qYd +aVI +aXp +aYG +bdr +bbS +bdr +beM +bgf +bhn +biS +bkM +bmD +bnY +bpI +brI +brI +buw +bvK +qCc +byv +bKr +bBE +bKp +bEX +bGD +bIA +bKp +vdh +bGz +alD +bTV +bWI +bOf +cxF +bZx +cbo +cdh +ceZ +cgM +cij +cjU +cmP +cmO +wXM +fbB +rlB +rvD +ghP +jog +cij +cgM +czm +cAF +cbo +pdl +bXU +egM +dhG +drn +drn +drn +cNh +dhG +cNh +cNh +cNh +cNh +cNh +dtP +drn +vpq +bDp +dcY +dwZ +cAZ +cxM +uMt +dYo +mkp +cwq +dYw +dYA +cPT +deJ +yiO +duR +bDp +abj +abj +acF +acF +aaa +acF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +dTV +dYM +dVn +aaa +dTV +dYM +dVn +aaa +dTV +dYM +dVn +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(102,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +atd +atd +kqp +rwj +pJf +sdI +aLu +qhe +axO +ayM +pyQ +sqD +sqD +ksd +ayM +aFg +wBz +aHh +aIF +atd +wgY +eMw +aOg +aPH +aRc +aSD +qYd +aVI +aOb +sHf +bas +bbT +bds +dOB +aOb +bhk +aZm +bkM +bmE +bnZ +bpJ +brJ +btn +bux +aOg +byl +byl +byl +nEp +uCF +bEX +bGE +bEX +bKp +pWA +bGz +bGz +bWq +bGz +bGz +bXU +cbu +cbn +cqX +cfc +bWK +bWK +bWK +bWK +bWK +nFa +nWg +cqX +bWK +bWK +bWK +bWK +bWK +bWK +cCe +cCo +cDH +qIe +seN +cHr +dtU +dlM +dmq +dmq +dmq +dmq +dmq +dmq +dmq +dmq +dmq +drn +qHY +dbL +dbZ +deJ +dfS +dov +gLk +dky +dbM +dmS +dYx +dYo +wnI +drl +dpS +dtQ +bDp +abj +aaa +acF +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +dij +aaa +dij +dij +aaa +dij +aaa +dTV +dYM +dVn +aaa +abj +dYN +abj +aaa +dTV +dYM +dVn +aaa +abj +dij +dij +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(103,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +eKj +syc +pJf +rwj +pJf +vOo +avE +eiU +axP +ayM +azZ +azZ +azZ +gLW +upc +pcM +aJs +aHl +aIG +aJV +lSE +xCp +gML +aPH +aQZ +aSD +qYd +aVL +aXo +aXo +aOb +aOb +aOb +aXo +aXo +bho +aZm +bkI +bmF +boa +bpK +brK +nzm +odQ +aOg +bwY +bOg +eLd +bBG +bKp +bIA +bGF +bEX +bKp +blp +bOg +bQq +bWK +bWK +bYo +bQr +bhL +cbp +mMt +gTA +mMt +jFV +mMt +jFV +mMt +sWJ +peH +cfb +cgN +cfb +cgN +cfb +cgN +bos +cAG +cCp +cdh +bXU +tuP +dhG +drn +cKf +dmq +cNi +cNi +cIM +cVG +cIM +cIM +cIM +dmq +drn +sOx +bDp +dcd +deI +cxq +cyc +ali +uUA +dlL +mDl +vHx +dYB +oER +dpU +dfW +dYo +bDp +abj +abj +acF +acF +aaa +acF +aaa +aaa +aaa +aaa +aaa +aaa +acF +abj +abj +abj +acF +aaa +aaa +abj +abj +abj +dij +abj +abj +abj +abj +abj +abj +aaa +aaa +dYN +abj +abj +abj +dQB +abj +abj +abj +dYN +abj +aaa +aaa +abj +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(104,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +raB +aaa +uUh +nUR +nIM +oKV +nIM +lqL +fjw +lNO +nUm +ayO +aAa +aBX +aAa +mxm +aAa +aCZ +rZo +aGi +aIH +aJZ +glw +sfh +aOm +aTT +aTT +aSH +cwX +aVI +aXq +bbR +bbR +bbR +bbR +bbR +aXn +bhk +biU +bkJ +bmG +bob +ghu +bob +pfh +hKQ +bvM +bwZ +byx +bzV +bBH +bDx +bEZ +bGG +bIC +nhh +bMt +bNU +bQA +bSh +gMx +cbR +cia +vcm +cbq +cdk +cfe +boA +cjN +boA +boA +coc +tEC +eRH +cqV +cAB +ctG +cuV +cAB +cAB +dWa +cAB +cAB +cDJ +bXU +tkY +dhG +dhG +cKg +dmq +cNj +cOI +cKo +cKo +cKo +cKo +cWy +dmq +cZm +oTP +dbL +dcZ +deI +cZw +dhB +qSv +dYp +bDp +cwq +deI +dpV +drh +dsp +deJ +dso +bDp +abj +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +aaa +aaa +acF +abj +abj +acF +aaa +aaa +dij +abj +aaa +dQB +dQB +dQB +dQB +dQB +dQB +dQB +dQB +dQB +dQB +dQB +dQB +dQB +dQB +dQB +dYR +dYS +dYS +dWc +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(105,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +ths +kaO +pJf +rwj +pJf +uJs +awP +fzx +axR +ayM +aAb +aAb +aAb +duJ +upc +pcM +gwO +wQE +iZL +lZR +stW +hiq +aOk +aPH +aQZ +aSD +aUe +aVN +aXr +aYJ +bau +bau +bau +aXG +aXr +sGz +biV +bkK +bmH +boc +bpM +okF +fzu +byu +aOk +ixA +bOi +eLd +bBI +bDy +bBE +bGH +bHh +bIA +bMu +bOi +bRS +cAB +gbe +cfB +uma +bZA +cbo +cdl +cfd +cgO +cil +qtJ +clu +coh +iCS +vTK +cqZ +css +bQr +byr +cwx +cxK +czs +cAI +cCr +byr +lJP +jSH +cHr +dhG +ddh +dmq +cIM +cNi +cIM +cIM +cIM +cIM +cIM +dmq +dHk +oTP +bDp +cwq +deI +dkz +dkz +oJn +dkB +bDp +dmT +deI +deJ +vXM +dkA +dfW +dYG +bDp +abj +abj +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +acF +abj +abj +abj +acF +aaa +aaa +acF +abj +abj +abj +abj +aaa +dQB +abj +abj +abj +aaa +aaa +dYI +abj +abj +abj +dQB +abj +abj +abj +dYI +abj +aaa +aaa +abj +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(106,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +atd +atd +kqp +rwj +pJf +dFZ +iqR +hwu +axS +ayM +oHg +qEB +qEB +nDt +ayM +ayM +oVs +aHh +eEd +atd +jMo +rbo +aOg +aPG +aRf +aSD +aTZ +aVF +aXs +aUQ +dkD +aOp +aYK +aXN +ijT +mzZ +ban +bkM +bmI +wkD +wkD +cHf +gfN +vfV +wkD +wkD +wkD +wkD +wkD +wkD +bFb +bGI +bIA +bIA +bMv +byl +bQr +bWt +kkD +bWt +bQr +bZA +rBT +cdl +wzK +cgP +cim +cmM +nNM +cmV +cra +juz +cra +cmV +nNM +wLp +edl +kpD +cCd +kpD +eVs +jim +lJP +uFO +drn +drn +drn +dmq +cIH +cOJ +cIM +cIM +cTp +cOJ +cIH +dmq +cWn +qGj +bDp +ddc +deI +dkA +dri +ooN +dYq +mkp +dmU +deJ +dhJ +vXM +dYD +dfW +duS +bDp +abj +abj +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +acF +abj +abj +acF +aaa +aaa +dij +abj +aaa +dYI +aaa +aaa +dij +aaa +dTV +dYO +dVn +aaa +abj +dYI +abj +aaa +dTV +dYO +dVn +aaa +abj +dij +dij +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(107,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +raB +aaa +eKj +tUw +pJf +rwj +dFi +auG +dWj +hZW +axN +ayM +aAd +aAd +aAd +raH +aDc +aEj +aGa +aHl +oan +atd +atd +atd +aOg +aPH +aRg +aSD +aTZ +aVF +bgg +bkL +bgg +ban +ban +tiC +bgg +ban +ban +bkM +mtt +wkD +sgF +vEQ +sBZ +tbo +hfm +iDP +wfP +gcb +vbB +wkD +oon +bGH +bKr +duC +acn +bQs +bOn +bQt +lwE +bWu +clo +bZB +eek +eKy +gnD +iUa +cjO +mqn +nNM +upe +poR +wZl +crb +cst +nNM +cuY +uTO +heu +lIc +tCG +cCt +rkO +lJP +box +tUs +cIG +cKi +dmq +cNk +qkD +trn +cRP +vDo +tAt +cVh +dmq +dlM +sOx +dbM +dkp +deL +fTZ +cyE +djg +cHY +mkp +dmW +deI +dkA +dYC +dfV +drk +duU +bDp +abj +abj +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +aaa +aaa +abj +abj +abj +dij +abj +aaa +dYJ +aaa +aaa +dij +aaa +dTV +dYO +dVn +aaa +dTV +dYO +dVn +aaa +dTV +dYO +dVn +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(108,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +uBp +lWo +vKK +bnK +pJf +axl +che +cJs +axL +ayP +aBf +aBf +aBf +ayL +aDc +aEj +aFi +aHm +oeZ +aJY +aLv +kNF +aOg +aPH +aRh +aSJ +aUf +aVP +aXu +aYL +aXu +pRQ +bbW +beP +bgh +bhp +bhp +bkN +cjC +wkD +gTF +vvh +red +tbo +hkc +reU +wpz +kdI +vPa +wkD +gsw +iud +cSk +byl +bQs +bQs +wCj +bIA +pAv +bWv +bwP +bZC +cfg +cdn +cff +clv +bXU +bXU +nNM +mPT +qbl +qNb +pnM +pnM +nNM +xTK +cwz +oYw +psn +hkj +cCt +uAY +lJP +efk +dmq +dmq +kTo +dmq +slV +cOO +cRQ +cTs +cUV +cWC +slV +dmq +cZn +sOx +bDp +dda +deM +dfX +dso +oTx +dcY +mkp +dmX +deI +dYr +dfV +dhJ +dfW +duV +bDp +abj +abj +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +dij +dij +dij +abj +abj +abj +abj +aaa +dYJ +abj +aaa +dij +abj +dTV +dYO +dVn +abj +dTV +dYO +dVn +abj +dTV +dYO +dVn +abj +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(109,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +ths +tQK +pJf +rwj +pJf +axl +che +uMY +nbG +ayI +azV +aCU +aCU +aEe +aFV +aFV +dEE +hox +tep +oox +aLw +pJP +aOg +aPH +aRi +aSK +aUg +hAZ +aXv +aYM +bax +qbb +bdt +beQ +bgi +jJc +biZ +bkO +bmL +wkD +vDT +gga +qUx +kMH +tFq +rtz +vkw +rsW +naD +wkD +bFd +bGK +bID +byl +taB +bQt +jkP +bSm +xtv +kaP +bwP +bZD +cbv +cdo +ciX +clv +cin +cjV +nNM +cmY +cos +cpz +crf +cIN +nNM +jpy +uTO +oYw +mYk +hkj +cCt +ohQ +lJP +efk +dmq +cII +cKk +cIL +cTv +cOQ +cRR +xtx +cRR +dWl +dWt +dmq +cWn +sOx +bDp +bDp +bDp +bDp +dhE +oTx +dmR +bDp +dox +mDm +fTZ +fTZ +fTZ +dYo +dYH +bDp +abj +abj +aaa +abj +aaa +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +dPp +pkj +dPp +abj +dij +aaa +dTV +dYO +dVn +aaa +dTV +dYO +dVn +aaa +dTV +dYO +dVn +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(110,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +atd +atd +qWG +tYw +wqp +axl +che +pYc +axV +ayR +aAg +ayR +aAg +aDd +aEm +aFj +rfH +mZv +aMM +kzE +nRx +oHK +aOg +aPI +aPH +aSL +aUh +aPH +aXw +aYN +bay +aPH +bdu +beR +bgj +bhr +bja +bkP +bmM +wkD +krP +qDj +krP +lzl +awV +hvv +nKz +ket +mjH +wkD +bFe +bGM +kIs +byl +gVE +bIA +bIA +uro +ffq +bWx +bwP +fQU +cbw +cdp +cfh +clv +cHk +cio +nNM +cmZ +cor +cpz +crg +crg +nNM +sxp +cwz +udo +wgE +hkj +gCT +vNF +lJP +efk +dmq +cIJ +cKm +cNo +cRO +rqn +uBD +cRS +cUX +ttx +dWu +dmq +cWn +vfg +ecY +cLA +drn +bDp +bDp +djc +bDp +bDp +dmY +doz +drg +dso +dYo +dtO +duX +gQW +gHy +shb +gHy +gQW +ixr +gQW +abj +abj +abj +abj +abj +abj +abj +dij +dij +dij +dij +dij +abj +dij +dij +abj +aaa +abj +dPp +ozn +dPp +abj +raB +aaa +dTV +dYP +dVn +aaa +dTV +dYO +dVn +aaa +dTV +dYP +dVn +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(111,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +aaa +atd +pAQ +jqX +mPO +atd +rfT +aCW +bai +ayK +azW +aCW +aCW +aEl +ygd +exZ +aHp +aJD +gBF +auK +qaS +aes +aOl +aOg +aOg +aOg +aUi +aOb +aUi +aYO +bmN +aOb +baj +aYO +bmN +aOb +baj +aOg +bmN +wkD +iYd +pAg +nft +nzL +kSk +mmP +qLD +wGg +uWI +wkD +bFf +bGL +bII +byl +bMA +lxJ +fwJ +nIc +iWI +bWy +bwP +bZE +cbx +cdq +cfi +clv +cip +cYb +clw +aLM +lQC +cpA +crg +csx +nNM +qGy +mBB +tci +iRp +pzF +upX +ppP +lJP +uNf +dmq +cIK +cLQ +cIL +cOL +dWm +cWA +hfh +cWA +dWm +dWv +dmq +dhG +cNh +vfg +ecY +ddh +cHA +dhz +tJj +dhz +dbM +bDp +dbL +bDp +dji +dbM +bDp +bDp +gQW +sJk +sfD +owG +mGS +cBR +gQW +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +aaa +abj +aaa +abj +aaa +dPp +dPp +gLy +dPp +dPp +aaa +aaa +aaa +abj +aaa +dKz +dTV +dYP +dVn +aaa +aaa +abj +aaa +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(112,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +nhn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +aaa +atd +eFV +qdk +axW +hEn +gBo +waQ +pSJ +fpf +qOQ +vHB +aGc +aJG +atd +atd +atd +atd +atd +abj +abj +aSM +baN +aSM +baN +aSM +bbF +aSM +buX +aSM +bbF +aSM +buX +bkQ +aOW +wkD +wkD +wkD +qaQ +iyh +uqf +yhb +apr +usF +wkD +wkD +bFg +bGN +bIK +ePn +bwP +iHf +iHf +iHf +bwP +bwP +bwP +clv +clv +clv +clv +clv +ciq +cjX +nNM +cIP +bsc +bvc +bwu +csz +nNM +vLS +cwz +oYw +dIZ +hkj +gCT +mpS +lJP +efk +dmq +cIL +cIL +cIL +cIL +cOP +cVb +rEf +cVb +cOP +cIL +dmq +dmq +dmq +dmq +oWz +enE +dhG +dhG +buM +uDz +dlM +dmZ +cLA +dpX +drn +dhG +drn +cIS +gQW +sSH +uoa +sqF +gCG +xag +gQW +abj +abj +abj +abj +abj +abj +dij +dij +dij +dij +abj +dij +dij +dij +aaa +abj +aaa +dPq +dPZ +rXy +dRo +dPq +aaa +aaa +dij +dij +aaa +aaa +aaa +abj +aaa +aaa +sso +dij +dij +sso +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(113,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ndW +wlY +ebA +adb +aaa +aaa +abj +abj +abj +abj +aaa +fOs +fOs +abj +abj +abj +abj +atd +atd +atd +atd +dLX +dLX +atd +aCk +iGI +ths +ths +atd +atd +atd +aaa +abj +biW +abj +aaa +abj +aOg +xgF +aVR +xgF +aOg +wWl +aVR +lOm +aOg +wWl +aVR +lOm +aOg +aOW +bcP +bpU +bty +bty +saJ +bvT +bty +byF +bty +bfE +bty +bty +bGO +bWz +bWz +bOh +bWz +bWz +bWz +bUA +bWz +bYe +cHA +cby +cdr +cfk +drn +cLA +cQu +nNM +cnc +cnd +gng +cnb +fDh +nNM +jpy +cwz +oYw +nqj +scc +dAI +psB +lJP +efk +dmq +cIM +cIM +cIM +xmq +cQF +cWA +hfh +cWA +dWp +wOT +cYi +cIM +cIM +dmq +ddh +fOe +rEZ +xYj +okx +adR +adR +ibG +tOT +ryH +adR +riO +mar +drn +gQW +kdm +jqA +xKC +gFm +vHE +gQW +abj +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +aaa +dPq +dQa +dQJ +dRp +dPq +aaa +aaa +aaa +sso +aaa +dij +dij +abj +dij +dij +sso +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(114,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acC +iWM +iWM +acC +aaa +aaa +abj +aaa +aaa +abj +aaa +abj +aaa +abj +aaa +abj +aaa +aaa +abj +aaa +abj +aDZ +aDZ +abj +abj +aFz +aEp +aJz +aEp +aJz +aEp +aJz +aEp +aJz +aOU +abj +abj +aOg +ihK +vom +oeB +aOg +eXU +qWZ +vIR +aOg +ffd +mIh +uYX +aOg +aOo +bcP +bpV +brU +xTV +pBh +qSI +bxf +byG +bAe +bBO +bDC +bDC +bGQ +wtk +wtk +wtk +wtk +wtk +wtk +bUB +shr +bYf +iPE +cdg +iMn +glK +rNU +xDT +jlS +nNM +cnd +cou +cpB +cnb +cuT +nNM +kiB +cwz +udo +oEJ +hkj +cCt +iVI +uwp +opB +dmq +cSi +cKn +cIM +cNq +cQG +cTr +cUU +cWB +dWq +cWE +cIM +cKo +doQ +ddi +ddi +ddi +ddi +ddi +ddi +ddi +ddi +lSu +lSu +lSu +lSu +lSu +gZI +sVv +gQW +gQW +liD +gQW +gQW +gQW +gQW +abj +aaa +aaa +aaa +aaa +aaa +ddy +ddy +ddy +ddy +ddy +ddy +ddy +ddy +ddy +ddy +ddy +dPq +dXH +dRb +dRq +dPq +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(115,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adb +adb +adb +myI +myI +adb +acC +acC +adb +adb +aaa +abj +aaa +apG +apG +apH +apH +apH +apG +apG +awX +awX +awX +awM +awM +awX +awX +awM +awM +awM +awX +awX +awX +awX +awX +awX +aOW +aaa +abj +aOg +aUm +aVT +aUn +aOg +baA +bbZ +baB +aOg +bgl +bht +bgm +aOg +aOW +bcP +xMj +ttb +btA +buK +buK +bxg +byH +bAf +bfG +brV +brV +bGR +brV +brV +brV +brV +bQw +brV +oAE +bYg +bYg +cHA +cHk +dhG +cNh +ctS +dtP +jTE +nNM +cne +cph +cpC +crh +lHr +nNM +eQc +cwz +kAl +qEm +nvh +gCT +vWm +lJP +gJG +dmq +cIM +cIM +cLR +spW +cQI +cQP +iMO +cTz +dWr +cWD +cIM +cIM +cIM +ddi +kQt +wDU +dQd +xJD +bSj +fOB +erA +lSu +lim +rfh +rQj +lSu +gZI +drn +dkI +qQx +sBp +nMR +dkI +abj +abj +abj +aaa +aaa +aaa +aaa +ddy +ddy +hEl +dOO +dOO +naA +xVf +dRL +hwI +dCJ +dbp +dOO +dPq +dPq +dRc +dPq +dPq +ddy +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(116,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +adb +oAP +krr +adZ +adZ +adZ +adZ +amz +aiE +adb +abj +abj +aaa +apG +aqv +aro +aqw +ate +auh +auL +aor +aor +aqF +ayW +ekv +nlN +diK +pCe +piQ +piQ +jeZ +hwF +nlN +aKa +aNe +awX +aOo +abj +abj +aOg +aUn +aVU +aUn +aOg +baB +bca +baB +aOg +bgm +bhu +bgm +aOg +aOo +awX +igB +brW +brW +brW +brX +brW +bxh +bxh +bxh +bxh +bxh +bxh +bxh +bxh +bxh +bxh +bxh +bVC +cjA +cpP +cHA +cHA +cbB +dlM +cfn +dlM +dhG +fCe +nNM +cnf +cov +jzI +csw +dxm +nNM +sHJ +kOW +qTF +laQ +gaB +djv +kpD +lJP +gJG +dmq +cIL +cIL +cIL +cIL +cOT +cQN +fTj +cTy +cOW +cIL +cIL +daD +cIL +ddi +tGY +kNC +vhD +gNd +mRq +dgc +rsK +lSu +uUc +pjk +pjk +lSu +mZS +dhG +dkI +mcg +jkk +kMx +dkI +iBy +aet +aet +aet +hAD +aaa +aaa +ddy +mWO +dbp +fhI +dOO +dcA +ddv +dbp +dOO +dbp +dOO +dPr +deW +dOQ +kep +dbp +dSn +dlc +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(117,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +acC +mxG +uks +uks +uks +uks +uYk +mTu +iWM +acC +aaa +abj +aaa +apG +aqw +arp +arp +arp +aui +apG +aor +awW +axY +azb +ltH +ayC +aVK +qIE +igI +ayX +azb +aCo +aCl +dLy +aLx +awX +aOW +aaa +abj +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOg +aOW +awX +lfQ +brW +aaa +aaa +aaa +aaa +bxh +bAg +bBP +bDE +bFi +bGS +bIN +bKy +bMC +bOq +bxh +stv +oAE +bWH +cHA +bZG +drn +cLA +cfo +drs +drn +ivq +nNM +clw +nNM +nNM +nNM +nNM +nNM +lJP +lJP +lJP +lJP +uwp +uwp +lJP +lJP +opB +dmq +cIM +cIM +cIM +xmq +cQL +cQP +iMO +cTz +dWs +wOT +cYi +cIM +cIM +ddi +syO +dng +dng +dng +hXU +dgc +smh +gep +uUc +pjk +pjk +lSu +mZS +fim +dkI +tnN +htH +fQr +dkI +jUs +aet +aet +aet +hAD +aaa +aaa +ddy +dOO +dbp +iVX +iVX +iVX +xtZ +xtZ +iVX +iVX +dOO +dPs +dOO +dEi +dOO +djA +dSp +dlc +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(118,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +adb +onA +aeb +pJw +jhz +ufU +rJt +mTu +ajf +adb +abj +abj +aaa +apH +aqx +arq +aro +atf +auj +apG +avL +ayC +axZ +ayX +eTV +aBo +aVK +lnW +bkg +awX +vCV +gLL +kzN +avZ +asq +awX +aFz +aJz +aEp +aJz +aEp +aJz +aEp +aJz +aEp +aJz +aEp +aJz +aEp +aJz +aEp +aJz +bRm +awX +xYS +brW +aaa +buL +vyN +bxh +bxh +bAh +bBQ +bDF +bDF +bGT +bDF +bDF +bDF +bOj +bxh +bjU +xnm +bWE +bYi +drn +cHr +drn +drn +drs +cHr +jTE +clx +drn +drn +dhG +dpX +cLA +drn +drn +drn +drn +drn +drn +drn +drn +xoF +gJG +dmq +cSl +cKo +cIM +cNs +cQG +lnL +cRZ +ybB +dWq +cWF +cIM +cKn +dpP +ddi +nmA +gJT +mOW +rxy +mSF +dgc +uah +gep +uUc +oIJ +kWF +lSu +eRw +drn +dkI +icL +kgO +iev +dkI +dkI +dkI +dkI +dkI +jUs +sHa +abj +oJY +dOO +ddv +iVX +sab +jrK +kIP +eiF +rYP +xdd +dOP +dPt +dbw +dbw +dbw +dbw +dbw +dbw +dQS +dbw +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(119,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +adb +adb +acC +adb +adb +qdE +rJt +kJd +adb +adb +aaa +abj +aaa +apG +aqy +arr +fhp +atg +auk +apG +ekv +hwF +hwF +ttm +ezo +aBp +aVK +wWi +aor +awX +awX +awX +azb +wuK +ayC +awX +awX +awX +awX +awX +awM +awM +awM +awX +awM +awM +awM +awX +awM +awM +awM +awX +awX +awX +inc +brW +aaa +vyN +bvW +bxj +vyN +bAi +bBR +bDH +bFj +dUB +bIJ +bKu +bBR +bOr +bxh +bty +oAE +bWH +cHA +bZI +cbE +dhG +dtP +cNh +drn +uyc +xDT +rua +xDT +tUs +tUs +glK +xDT +xKL +hoj +glK +czx +glK +glK +cDR +xDT +eGn +dmq +cIM +cIM +cLR +spW +cNl +cQP +iMO +cTz +cTG +cWD +cIM +cIM +cIM +ddi +syO +dng +dng +dng +vky +mcM +weO +pWh +nXr +rDQ +pjk +lSu +nSl +fim +dkI +lKp +lKp +qIZ +mpi +pUB +cEI +ltb +gpn +vfh +ayG +aaa +oJY +dID +ugI +iVX +hDz +kIP +hbN +wgx +fHD +xdd +dOO +dXo +dQb +dQN +dRm +dRD +dSa +dSA +dTf +dQb +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(120,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +knM +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +abj +aaa +abj +adb +afh +rJt +mTu +gWk +adb +aaa +abj +aaa +apH +aqz +ars +ars +ath +ars +nBi +avM +aor +aya +axY +aAk +asq +aVK +nQL +azb +gZU +oEi +aCl +aCl +rOm +hwF +ifb +vjX +fWP +xER +xER +gsB +izZ +fvB +fvB +hjU +uUP +uUP +vYE +oci +aEt +kRd +hSa +hSa +vMo +tXZ +brX +aaa +jvp +bvX +bOs +byI +bOs +eRb +eRb +eRb +bGP +tpn +sav +sav +kSc +bUr +hEF +bjp +bWG +bYj +bYj +bYj +bYj +bYj +bYj +bYj +cFM +bYj +bYj +bYj +bYj +bYj +bYj +bYj +bYj +bYj +bYj +bYj +bYj +bYj +drn +dhG +xOv +dmq +cIL +cIL +cIL +cIL +cOW +cQO +obW +cTA +cOT +cIL +cIL +cIL +cIL +ddi +tGY +juA +asB +cir +piV +dgc +hxB +lSu +pjk +pjk +pjk +lSu +nSl +pmA +dkI +wkT +wkT +wIR +wfa +dyz +qJA +wbZ +tTk +aet +jMN +aaa +ddy +dID +dOO +iVX +aeT +pCi +hxc +uho +nmk +lTY +dgR +dPv +dQc +dbp +dRr +dRK +dbp +dSF +dUi +dTW +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(121,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +acC +aef +aef +acC +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +adb +afh +rJt +mTu +iWM +adb +aaa +abj +aaa +apH +aqA +art +ars +ati +ath +auM +dLy +awX +awX +awX +awX +aDH +awX +nBv +aor +aor +aor +dee +upl +aor +eVT +atx +awX +mzd +aor +aor +kno +gGM +azb +dSe +baC +bcb +azb +rbI +wRP +jRf +aor +aCo +azb +azb +wgF +brW +aaa +uqc +bvY +bxk +uqc +bAi +bBR +bDJ +bFk +mCN +bIO +bBR +bBR +bOt +bxh +bty +oAE +bWH +bYj +bZJ +cbF +cdx +cfq +cgW +cgX +gqz +clC +cnh +cow +cpH +clC +bYj +bZO +cvh +cwE +cxV +czy +bZK +bYj +dhG +dlM +gJG +dmq +cIM +cIM +cIM +xmq +cOR +cQP +iMO +cTz +dWp +wOT +cYi +cIM +cIM +ddi +kQt +xXt +wRc +psA +kGI +les +gkc +lSu +tSM +erP +pjk +lSu +nSl +rOe +dkI +aYb +plr +nLy +uUX +dyz +ehm +nCY +dkI +aaa +aaa +aaa +ddy +dOO +dEi +iVX +kIP +wgx +qPg +kIP +kIP +iVX +dEi +dPw +dQe +dRj +dRB +dRQ +dBC +dSG +dUl +dTW +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(122,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +aaa +aaa +acC +afb +afb +acC +abj +aaa +aaa +aaa +aaa +abj +acC +acC +acC +acC +acC +acC +aaa +aaa +abj +adb +afh +rJt +mTu +tfE +adb +aaa +abj +aaa +apH +aqB +aru +asl +atj +aum +apG +qlg +awX +ayb +ayX +aor +fQx +awX +awX +awX +axY +ayC +aVK +aVK +ayC +wFg +awX +nRE +mzd +aor +baF +baF +oCt +baF +baF +baF +gwd +baF +beS +baF +baF +baF +baF +baF +aor +jlj +brW +aaa +buL +uqc +bxh +bxh +bAp +bBT +bBT +bBT +bGX +ofl +bBT +bBT +bOu +bxh +bty +oAE +bWH +bYk +bnk +cbG +ckj +cfr +cgX +ciu +gqz +clC +gqz +clC +bvL +clC +bYk +ctH +crn +eWo +cxW +crn +cAT +bYj +czF +drn +efk +dmq +cSq +cKn +cIM +cNt +cQG +cPc +cQK +cQV +dWq +cWG +cIM +cKo +dpZ +ddi +ddi +ddi +ddi +ddi +vZO +ddi +ddi +lSu +lSu +lSu +lSu +lSu +omF +cZt +dkI +qhG +pLU +eNq +sOj +dyz +qJA +ebU +dkI +ivD +ivD +ivD +dkI +gHB +dCJ +iVX +gDw +wtM +qPg +sqZ +eiF +iVX +dhx +dPx +dQf +dRj +dOO +dRZ +dko +dSO +dUS +dQS +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(123,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adb +acC +adb +acC +acC +acC +acC +aef +aef +adb +acC +acC +adb +acC +acC +acC +acC +aik +aiE +nzd +ajf +acC +acC +acC +acC +adb +afh +rJt +mTu +adb +adb +adb +adb +aaa +apH +aqC +arv +laV +atk +iSg +auN +sKM +wDr +cQn +xmk +iHP +lPp +eVA +cwI +aEr +wZI +aOq +aOq +aOq +aOq +aOq +aOq +aOq +aPK +oEi +baF +aMW +aVV +qzR +fnt +baF +aMi +nvd +uXF +hNS +aCL +bjc +vDX +baF +axY +gve +brW +aaa +aaa +aaa +aaa +bxh +bAk +bBU +bDI +bFl +bGY +bIR +bKB +bME +bOw +bxh +bSy +oAE +bWH +ctU +bDU +xWK +xWK +xWK +xWK +sQX +aiz +aJo +uKv +xWK +mWa +xWK +gtO +xWK +phi +cwG +cxX +czA +ctH +bYj +drn +drn +efk +dmq +cIM +cIM +cLR +spW +cQI +cWA +hfh +cWA +cTH +cWD +cIM +cIM +cIM +cKr +hYv +cPn +cPn +jji +ujU +hnH +dih +lSc +cPn +cRd +cZt +hHk +kuI +sFK +dkI +hMD +jeJ +fqr +ecs +dyz +iTn +wbZ +vaZ +wRN +cKu +sMj +dkI +dbp +lbA +iVX +dzb +kIP +qPg +kIP +kIP +xdd +dbp +dPy +dbw +dQP +dRF +dSc +dSb +dSQ +dlJ +dQS +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(124,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acC +acC +acC +afb +tXb +adZ +san +adZ +aeI +adZ +adZ +afJ +adZ +adZ +agd +age +adZ +adZ +adZ +adZ +adZ +adZ +adZ +adZ +adZ +aip +agA +agg +pOi +rJt +mTu +amL +bKz +wSO +adb +aaa +apH +aqz +arw +ars +ars +grn +apG +lny +awX +aor +oiP +kaL +aCl +aVK +eFG +azb +azb +oEi +ayX +exE +azb +ayC +apK +lhN +aPL +oEi +baF +iCY +nDZ +uOS +fEG +baF +bjf +hYD +mEz +dtp +jDE +qXy +vDX +baF +aDG +pac +brW +brW +brW +brX +brW +bxh +bxh +bxh +bxh +bxh +bxh +bxh +bxh +bxh +bxh +bxh +cWa +oAE +bWH +ctU +bZM +crn +crn +crn +crn +htD +crn +crn +crn +crn +bZM +crn +csG +crn +cvj +cwH +cxY +czA +cAU +bYj +drn +drs +efk +dmq +cIL +cIL +cIL +cIL +cOY +cSb +uLq +cSb +cOY +cIL +cIL +cKr +cKr +cKr +gtR +gPh +oOZ +drN +rQZ +tar +mZo +kSr +mdg +mdg +nxO +kzh +jvS +eFJ +kmi +oBZ +sCD +mNC +mpV +iYj +ist +dOz +vaZ +ieu +vBO +hss +dkI +dOO +haA +xdd +rsX +nvl +qPg +kIP +kIP +xdd +dOO +dPz +dQg +dRk +dRE +djZ +dRK +dSW +dTj +dbw +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(125,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +nXF +pUC +rtH +vsW +afh +aea +oYY +uks +aeJ +uks +uks +uks +uks +uks +uks +szQ +uks +uks +uks +uks +cMP +uks +uks +uks +uks +szQ +uks +uks +uks +vVB +oCV +gQF +rUl +gEs +adb +aaa +apG +aqD +arr +ars +arr +auo +apG +tqg +aVK +aVK +aVK +aVK +aVK +aVK +hWh +wRZ +awM +axY +wRZ +aOx +aOx +aOx +aOx +aOx +mTQ +aor +baF +dcO +xwU +nLp +aYQ +jjl +cYG +sMz +nwZ +fuN +xWk +qQN +vDX +baF +bgn +jwL +kUB +kGx +kGx +efj +ign +byJ +ewi +ovC +dCF +rhA +bgL +mPe +dCF +mWM +bOv +xrW +tro +dPd +bWH +bYk +bZN +ctO +cdA +cfs +crn +htD +ckj +clC +ckj +clC +ckj +clC +bYk +ctO +cvk +abw +cxZ +crn +cAV +bYj +drn +dlM +efk +dmq +cIO +cIO +cIO +cIL +cOS +cgZ +ohP +cgZ +cTM +cVm +cWT +dto +cND +mod +dau +pnV +cSt +dsu +cSt +lUm +iWz +cSt +cSt +cSt +cZt +tjM +kuI +sFK +kBZ +xsz +vbA +vOI +lwr +vhS +nBP +xkJ +vaZ +jzV +cRy +qwo +dkI +dOO +dOO +xdd +lRc +fHD +nNZ +kIP +lct +iVX +dik +diD +dQn +dRj +dRF +dkh +dSq +dTg +dOQ +dTW +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(126,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acC +acC +acC +adu +sMV +aeb +ryh +aeb +aeO +aeb +aeb +eCj +aeb +aeb +ltw +agB +aeb +aeb +aeb +aeb +aeb +aeb +aeb +qQS +aeb +agB +aeb +mFy +aeb +reW +amB +amL +ant +anP +adb +aaa +apH +aqE +ary +aso +atn +aup +auL +gxW +aVK +jwG +aEg +pUN +oky +awX +eFG +ayX +aor +aor +aor +aOx +uvE +aOx +bLk +aOx +mTQ +aor +baF +sKG +iXn +rdq +eqq +baF +tyb +tGh +mui +pcm +xWk +buR +mFi +baF +lHI +aor +aor +azb +ayX +aor +aor +ixZ +bOC +bOC +bOC +bOC +bOC +bOC +bOC +bOC +bOC +bOC +bSy +oAE +bWH +bYj +bZO +cbJ +cdB +cft +crn +ciy +ckj +clC +ckj +clC +ckj +clC +bYj +ctN +ctO +cwJ +nLA +ctO +cAW +bYj +dhG +dmy +pIR +dmq +cIO +cKp +rVu +cpZ +cOV +cWI +iMO +cTD +cVf +cWI +cWU +quL +dau +gPh +oOZ +ieA +tam +dFm +dFm +psN +dFm +dFm +dFm +cZt +cZt +cZt +kjP +cZt +dkI +dkI +dkI +dkI +dkI +dkI +dkI +dkI +dkI +dkI +dkI +dkI +dkI +dOO +dOO +xdd +qJb +kIP +kIP +kIP +nOO +iVX +dbp +dPA +dQc +dOO +djl +dko +dkC +dSH +dVo +dTW +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(127,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adb +acC +adb +acC +acC +acC +adb +acC +acC +adb +acC +acC +adb +acC +acC +acC +acC +aio +aiF +aiI +ajy +acC +acC +acC +acC +adb +acC +adb +adb +adb +sgZ +qpo +adb +aaa +apH +apH +apH +apH +apG +apG +apG +lny +aVK +wWH +qZx +uAA +qoM +awX +rHd +aor +xej +teK +teK +aOx +rvI +aOx +aMY +aOx +mlS +lfd +aRm +aYQ +aYQ +eLu +uQx +aYZ +aYZ +aYZ +aYZ +oCt +bhv +bje +baF +baF +baF +baF +baF +baF +baF +baF +aor +ixZ +bOC +bBX +bDP +bFm +shs +ici +bKA +bLZ +bOx +bCe +bTY +cjA +cgC +bYj +bYj +bYj +bYj +cfu +cgY +fbd +brt +ckj +ckj +ckj +ckj +crk +csH +ctK +ctO +izF +cya +ctO +cAX +bYj +cDV +cHA +cGq +dmq +cSC +cKq +lfz +iXW +lnL +ozJ +iEH +qFB +cVg +tWL +cpE +dhS +lFv +hTB +cMm +eFX +qkH +dFm +eLJ +hZs +iRf +fkz +dFm +bjy +qFj +xVf +myR +tYD +dOO +djA +djA +dOO +xVf +rQu +dOO +ieW +dcQ +djA +dOP +dOO +dOO +dID +dOO +iQO +iQO +ceu +qdW +ceu +iVX +sRU +dik +dPB +dbw +dQR +dRs +dRI +dSa +dSI +dTl +dQb +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(128,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +aaa +aaa +aaa +abj +aaa +aaa +aaa +aaa +abj +aaa +aaa +abj +acC +acC +acC +acC +acC +acC +abj +aaa +abj +aaa +aaa +aaa +aaa +adb +ezV +rPs +adb +abj +abj +abj +abj +abj +abj +awM +apK +bqb +uUo +aAI +jkw +iZR +xFt +awX +eFG +aor +aOx +aOx +aOx +aOx +fzq +qBu +ssw +aOx +aMV +aor +baF +aXe +srJ +tbb +iSy +bTf +bcd +bdx +aYZ +gnl +bhw +fOa +kgr +tOP +xyD +rim +gnl +jUS +buQ +baF +nFi +qxd +bOC +bBY +bDK +bFn +bFn +bFn +bFn +bMH +bOy +bDQ +bty +oAE +bWH +bYj +bZP +cbK +bYj +cfv +crn +gwp +ckj +clC +ckj +clC +ckj +clC +bYj +ctL +cvn +cwL +cyb +pHb +cbK +bYj +drn +dlM +gJG +dmq +cIO +cKq +lfz +cWD +cQP +cVf +cVf +cSc +cVf +rxP +cWV +scU +dau +xgf +cPn +dFm +dFm +dFm +npl +iNi +iRf +iRf +dFm +dID +dbp +lMM +lfc +fnz +uFe +tHn +jvO +jvO +hFn +vJn +gWP +jvO +jvO +jJW +jvO +tHn +fqS +ddv +dOO +dEi +dKH +dcA +ddv +dOO +dcA +dOn +dOO +sea +dbw +dQS +dQS +dRJ +dbw +dbw +dbw +dbw +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(129,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +acC +ant +anP +adb +awX +awX +awX +awX +awX +awX +awX +ayC +igp +awX +kVK +rFl +oqq +oky +aVK +iwO +aor +aOx +gAq +mUr +aOx +vPO +pbl +rFg +iqN +knV +aor +baF +fLP +nDZ +xDw +aYQ +xEd +bce +gCv +aYZ +oKl +bhx +hYD +bkT +bkT +bkT +bkT +tIf +bkU +dSC +baF +aor +vtw +bOC +bBZ +bDN +bFo +bHa +bFo +rma +bMI +bOz +bDQ +bjU +xnm +bWE +bYj +jRu +cbL +cdC +ckj +crn +gwp +ckj +clC +ckj +clC +ckj +clC +bYj +bYj +bYj +bYj +bYj +kWx +bYj +bYj +dhG +drn +efk +dmq +cIO +bQx +sau +cIL +wpc +cPe +cTO +cSg +cTO +cVn +cWW +cKr +daw +nAx +vwk +dFm +euI +ueI +eeA +gtA +fkz +fkz +dFm +dOO +dOO +dOO +dOO +ddy +mHK +ddy +tWj +ddy +ddy +ddy +vmb +sqk +ssL +ssL +dOO +tjB +clj +jvO +jvO +exh +saX +jvO +saX +jvO +vVH +oaK +uTc +msm +dEi +dXs +dbp +dSn +dlc +abj +aaa +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(130,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +acC +ant +anP +adb +aor +aoR +aqF +azb +asp +bkR +awX +auP +brZ +aBg +awX +awX +rwU +rwU +rwU +uTf +rwU +gXb +aPW +oFY +aOx +bfa +bfd +ley +aOx +aNe +aor +uIo +lvV +ihN +nDZ +kKj +tvx +jxY +bdx +aYZ +gnl +bhy +nPp +bqi +pwA +bqi +bqi +lrx +pQd +kkR +baF +aor +cNy +rXX +bCa +bDN +bFp +bGZ +bHb +oWx +bMJ +bOA +bIV +bTZ +oAE +bWH +bYj +bZR +cbM +bYj +cfx +crn +gwp +ckj +clD +cnk +cox +cpL +crl +bYj +ctM +cvo +cwM +bYj +jhj +wLR +hcm +wLR +wLR +qtU +dmq +cIO +cIO +cIO +cIL +cPb +cQJ +cSh +cZC +cSh +cVo +cXa +cKr +dqq +xgf +omA +dFm +kPJ +kPJ +srQ +pRI +oWp +kCA +dFm +gNi +ddy +ddy +ddy +ddy +dbp +ipi +huN +mdd +ddy +spp +dbp +dbp +sJD +ssL +dHB +ngP +dPw +dIx +dXD +dIx +dIx +dIx +dIx +dIx +dIx +dIx +dOR +dbp +dbp +dOO +djA +dRL +dlc +abj +abj +abj +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(131,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +acC +ant +jTD +dyU +aAj +apI +lpk +lpk +arN +aXJ +spf +nYw +ktm +aVK +qjP +gSc +rwU +jbU +upD +lSK +jql +ipz +dBq +dBq +aOx +aOx +lfg +aOx +aOx +aOx +aOx +aYZ +lLj +aYZ +aYZ +aYZ +aYZ +bcg +aYZ +aYZ +pYO +ecT +gnl +gnl +gnl +gnl +gnl +gnl +beU +ezp +baF +aor +aor +bBW +bCb +bDN +eHR +lKW +bIS +qkn +eIv +pKl +vNm +keS +dqy +bWJ +bYj +bYj +bYj +bYj +cfy +crn +gwp +ckj +clE +cnl +btc +cnl +crm +bYj +ctN +cvp +cwN +bYj +cZm +dhG +dhG +cDX +dhG +cGs +dmq +dmq +dmq +dmq +dmq +dmq +dmq +ddi +ddi +ddi +ddi +ddi +ddi +dau +xgf +cPn +dFm +eoh +pQl +uWB +gvO +pup +fie +dFm +uFS +kkB +vzU +rDS +ddy +hxP +ipi +ipi +xcD +ddy +hIE +oLR +nQM +qDL +ddy +dIb +dGL +dPw +dIx +dJu +dKd +dJu +dLp +dJu +dMQ +dJu +dIx +dOS +dOS +dOS +dOS +dOS +dIx +dIx +dIx +dIx +dTX +dIx +dIx +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(132,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +acC +ant +anP +adb +aoS +apK +aqH +arz +awX +aVK +aVK +auR +oUp +euA +hle +bGx +rwU +kyg +sgO +sCp +tEA +wYw +dBq +dBq +kaM +gWl +eGT +qzy +dRR +mwK +hpS +aYZ +orj +lIH +ifQ +uzh +nho +bch +fqb +aYZ +cuz +bhA +kHe +tlU +tlU +boi +bee +bzU +beU +ycB +baF +aor +aLA +bOC +bCc +bDN +ggo +bHd +bFo +bFo +bMI +bFr +bDQ +bty +oAE +bWH +bYj +bZS +cbN +bYj +cfz +crn +lxQ +miw +clF +cnm +xjV +itw +vqN +csI +tnB +cvq +cwO +bYj +czF +cBb +cHr +dlM +drn +cGt +ePr +oUJ +tZv +sAk +tZv +sAk +uzX +kyz +kwv +lBY +oLA +odU +ddi +dau +xgf +cMm +dFm +kOs +kOs +eeA +qTb +wOL +pup +dFm +nij +dbp +dOO +oRx +ddy +gwu +dbp +pAy +xaR +tWj +lRf +dOO +fVi +dbp +ddy +dIy +psZ +ivR +dKY +hRF +wGi +hRF +dLq +dfa +hRF +cjf +dIx +dOT +dPD +dQh +dQT +dRt +dIx +dXV +dIx +dTm +dTY +dUJ +dIx +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(133,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +acC +ant +anP +aoo +aoo +aoo +aoo +aoo +aoo +arA +aVK +nQL +njr +awX +pJj +iaP +rwU +tgk +eYr +plj +tNm +ipz +dDJ +dBq +dBq +dBq +fTl +leM +leM +hUV +ldm +rrL +qpZ +hGT +qzG +rgg +sAo +lxC +ezM +aYZ +fEi +bjj +fuN +bmU +bmU +bxx +bmU +byw +buR +dSC +baF +nFi +azb +bOC +feI +bDO +bFq +bHe +biY +bFq +bMK +bPY +bDQ +bty +oAE +bWH +bYj +jRu +cbO +cdC +ckj +crn +gwp +ckk +clG +cnl +coy +cnl +cro +csH +ctH +cya +cwP +bYj +drn +cHr +drn +drn +dhG +efk +cHr +dhG +ddh +drn +pvo +peG +jJj +ddi +pWq +pFW +dgc +fze +lus +dau +msl +cSt +dFm +kOs +xOZ +eCJ +gIz +pup +wOL +dFm +nmj +szb +fMW +tRF +ddy +ddy +dku +dku +dbp +tWj +jdn +oLR +iOp +wIw +ddy +dFW +eiA +evg +dIx +dJw +dKe +dSi +dSi +dMh +dMS +kwN +hqq +hRF +dPE +dQi +fGy +hRF +dRM +fTn +dRM +ozL +dTZ +dUK +dTX +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(134,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +acC +ant +anP +aoo +aoT +apL +aqI +aoT +aoo +arH +dhb +eVT +lmY +aFv +aFv +aFv +aFv +aFv +aFv +rwU +rwU +rwU +aOx +gTc +knP +gEo +lSB +aPS +kAy +aPS +czL +aYZ +hzW +qFf +qpZ +rrL +ize +bcj +wKu +aYZ +keU +cli +cli +bkZ +bmV +boj +bqk +bqk +btD +buS +baF +apK +aor +bOC +bCg +bDS +bFr +bHc +bIT +bFr +bMG +bPZ +bOC +bSy +oAE +bWH +bYj +bZR +cbM +bYj +dde +crn +gwp +cfs +clH +cnn +coz +cpM +crp +bYj +ctP +cvr +cbK +bYj +czG +cBd +dlM +cEa +cJO +efk +drn +cIS +lSu +lSu +lSu +lSu +lSu +ddi +vyl +pFW +atX +bBq +ddi +oOW +hBu +jji +dff +dff +dff +dff +dff +dff +dff +dff +dff +dff +dff +dff +dff +jnp +dbp +dOO +dbp +ddy +fVi +jYi +wKt +oLR +ddy +dFX +dXl +sea +dIx +dIx +dIx +dKK +dKK +dIx +dIx +dIx +dIx +dJx +dJx +dJx +dJx +dJx +dJx +dJx +dIx +dTo +teT +dUL +dTX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(135,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +adb +ant +anP +aoo +imf +apM +aqJ +arB +aoo +atq +aVK +azb +hGO +aFv +pFv +sqb +cLp +xli +aIU +hrB +jnT +qgP +kEO +jZx +idp +aKl +kAy +hEG +lSB +hEG +vrJ +aYZ +lPm +lAM +aqs +rgg +sAo +lxC +bdy +uzh +baF +sAs +bjl +baF +baF +bok +bql +bsd +bgp +buT +baF +awX +tzq +bOC +bCe +bDQ +bDQ +bIV +bIV +bDQ +bDQ +bOC +bQB +bXy +bYB +chb +bYn +bYj +bYj +bYj +bYk +ctU +rJP +bYk +bYj +bYj +bYj +bYj +bYj +bYj +bYj +bYj +bYj +bYj +cHA +cHA +cHA +cHA +cHA +nRz +cHA +cHA +lSu +dRT +cjW +woT +wRU +sls +qto +sgX +nYF +lcl +twD +lFv +uAW +cPn +dff +dgs +die +nUp +dlV +dnk +doJ +dpQ +dqf +dsv +dXk +dvc +dff +tiN +xaR +dOO +pSX +ddy +iOp +nQM +jdn +rJd +ddy +dFY +dcQ +dPw +dOO +dJx +dKf +dKL +dKL +dXx +dPF +dMk +dOq +dOV +qMV +dMk +dQV +dRv +dRN +dSf +dIx +dTp +teT +dUM +dTX +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(136,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cuJ +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +adb +ant +nCK +aoo +aoV +apM +oYb +arC +aoo +uCt +axg +azb +aPL +aFv +usc +kdF +wkO +nqa +khL +yjr +sGa +vxa +aOx +uDK +idp +aKl +dBq +dBq +qxj +hFB +irn +aYZ +lhu +mYX +aqs +aYZ +fok +pti +baM +gJC +lhR +nSQ +blc +spF +aYZ +bol +xfy +xfy +liZ +wdz +wdz +bxl +wdz +any +wdz +bDR +xot +eDP +eDP +bDR +bDR +bOD +liZ +xTh +pzY +oUR +oUR +gXY +oUR +lbc +oUR +oUR +oNR +oUR +fMU +oUR +coE +bwm +bwm +bwm +bwm +cvs +bwm +bwm +bwm +jNy +bza +fZu +bwm +gry +bwm +bvV +lSu +mSQ +rXW +rLK +ezU +eTE +xPG +pLs +bKn +wew +ddi +dau +pnV +cPn +dvg +dgt +dif +nAZ +qEA +dsF +dsF +doL +dvg +drz +dsF +dtY +dff +dwi +dwi +dwi +dwi +dwi +wJr +iqc +iqc +iqc +iqc +iqc +iqc +nTW +dEi +dJx +dKg +dLs +dKL +dMj +dMU +dOW +dMU +dOW +mNz +dMj +dOr +dRv +dJx +dKm +dIx +dTq +upq +dUN +dIx +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(137,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +acC +ant +anP +aoo +vET +apM +oYb +aqY +aoo +atp +aVK +aor +aPL +aFv +ayj +azh +aAs +aBw +aIU +ifv +jnT +mpk +fKW +fSl +idp +aKl +lSB +aPS +kAy +aPS +nkM +aYZ +aYZ +aYZ +aYZ +aYZ +xWE +lxC +bdP +blc +bdP +blc +bdP +blc +bmX +itB +bqn +iBh +sQB +cLk +cLk +cLk +cLk +nwe +cDd +cLk +uIK +cLk +cLk +cLk +nBM +cLk +sQB +lrb +bUL +lrb +lrb +khJ +lrb +yjy +lrb +lrb +bYY +lrb +lrb +lrb +fut +cpN +eKh +eKh +eKh +eKh +eKh +eKh +eKh +fVo +eKh +ptn +eKh +cGy +bwm +ddm +lSu +txR +vpS +pjk +pjk +eTE +eSc +fvH +dgc +dgc +lus +dau +pnV +cPn +dff +dhN +djp +sEI +rSw +dmb +dnp +lBf +drv +drA +dsE +dtZ +dff +dwj +dxs +dyI +dzP +dBd +wJr +dqe +eky +sBE +jLf +gNm +iqc +dHL +dIA +dJx +dKh +uld +dKL +dMk +dMT +dOX +dMT +dOX +xDo +dQk +dQX +jkD +dJx +tNn +dIx +dIx +hxF +dIx +dIx +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(138,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +acC +ant +rBP +aoo +aoX +apM +vEV +arx +aoo +aVK +aVK +axY +rwY +aFt +aFt +gAn +gAn +pqo +aFt +mRk +jnT +dqD +lds +krD +iOx +jHH +hEO +qsu +hEO +poa +mmE +aXB +kdu +qGF +kdn +aYZ +otH +tfD +hVB +lJf +ehY +bdP +blc +bdP +vzB +wZB +nnu +gFt +mDf +eKe +eKe +eKe +byQ +wym +fFM +wym +jZM +uzb +eKe +eKe +jiy +eKe +mDf +nTR +bUM +nvQ +nvQ +bZV +nvQ +eIU +nvQ +bSD +bHi +iyF +gWf +gWf +lBu +kJV +nhk +oXL +ctQ +oXL +cwQ +oXL +oXL +ikd +oXL +oXL +oXL +uAU +swf +ddn +lSu +lQN +pjk +iNa +pjk +eTE +tUS +ogX +esH +xhj +ddi +dau +pnV +cPn +dvg +dhO +djq +hKO +dkS +nBZ +dnq +dua +dvg +drB +dsF +dua +dvg +dwk +obO +dyJ +dzQ +dBe +wJr +oKa +ykJ +uic +ykJ +hOr +iqc +dPw +dID +dJx +dKi +uld +dKL +dMj +miU +obq +miU +obq +mNz +dQk +dLs +dRw +dJx +dSh +dIx +dTr +upq +dUO +dIx +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(139,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +acC +ant +anP +aoo +aoY +ast +aqN +nEe +aoo +atu +ats +ayC +aPL +aFt +jSh +aEB +uhx +aBx +rgj +nJn +jnT +lPB +fKW +aHI +idp +aKl +kAy +hEG +lSB +hEG +mmE +aXB +lDp +dwU +iNt +aYZ +sCZ +lxC +bfm +iom +gCt +bhH +sqA +blc +vzB +xfy +inB +bhX +mfc +hPf +bxi +bxi +bwf +nKf +tbM +bDT +bFu +bHj +bHj +sGM +eyY +bKE +bHj +bSE +bsv +gVF +btH +btH +btH +btH +ctE +chd +bSE +bSE +bSE +bSE +bSE +cxO +cBg +csK +csK +csK +csK +csK +csK +csK +csK +csK +cFp +hVu +coE +cIV +lSu +lSu +lSu +lSu +lSu +ddi +ddi +ddi +ddi +ddi +ddi +dtS +pnV +cPn +dvg +dhP +djr +dkQ +dzS +dnn +doK +dqc +dqf +drC +dsG +dub +dff +dwl +mSw +vTf +dVd +dBf +wJr +pFT +sLp +noW +vjQ +ozw +nJW +hLV +dKZ +dXa +rRm +sxB +dLu +vdk +vdk +vdk +vdk +vdk +lbT +dQl +dQY +dXI +cHR +jGH +dSJ +ltX +upq +dSi +dTX +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(140,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +acC +ant +dWx +ahy +mqF +mqF +tUZ +arE +tWH +nlN +att +hwF +tEu +aFt +eip +azk +gRY +uSw +aLD +lYS +aEx +qKt +aOx +aHJ +idp +aKl +dBq +dBq +aOA +aPU +aRw +aOx +aXB +aWe +aXB +aYZ +baM +pti +kcY +bfe +kSu +mzE +bjq +bdP +vzB +xfy +inB +hQe +mfc +tlR +tlR +tlR +bwf +bFR +gSh +byU +bAr +bHj +bIY +bKF +bMM +bOE +bQE +bSE +bUO +cgF +cnW +cnW +cnW +cnW +cnW +wSw +bSE +ckn +clI +cno +bSE +uHb +cvE +csK +ctR +cvt +cwR +cyd +dzR +cBe +cCC +csK +cEM +gfZ +bIG +cIW +cKw +cMd +cND +cPn +cRd +cSm +cZt +cTU +cMm +cXb +cZt +dZb +pnV +cPn +dvg +dvg +dvg +dkU +dff +dff +dvg +dff +dff +dff +dff +dff +dff +dwm +dxv +dwi +dwi +dwi +wJr +lyD +mEm +kME +oyR +myi +iqc +sJI +dID +dJx +dKk +kZc +yiR +dMk +vxK +lmA +vxK +lmA +dPF +dQk +eHn +dKL +dRO +dSj +dSK +wXk +ktb +dUP +dTX +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(141,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +jWY +aaa +aaa +aaa +aaa +aaa +aaa +ajX +aaa +aaa +aaa +aaa +abj +aaa +acC +akG +tlS +aoo +apa +apR +aqO +arF +aoo +atr +atv +iUW +aPL +aFt +ayo +mzt +sjT +lIQ +rgj +rPF +kcj +frz +kEO +jZx +idp +aKl +lSB +aPS +kAy +aPS +dBq +dDJ +dBq +dBq +dDJ +nzV +baQ +lxC +bfm +iom +mcz +adr +cxf +wny +aYZ +xfy +inB +gFt +dMH +aaa +abj +aaa +bwf +bAs +qJJ +bAs +bAs +bHj +bIZ +bKN +bMN +bKN +nmw +bSE +bSE +bWP +bYp +bZW +bYp +cdD +bYp +bSE +bSE +qYT +clJ +cnp +bSE +uHb +cvE +csK +cBi +cEr +cEr +cEr +cEr +cEr +cDO +csK +cEL +gfZ +bIG +cIW +cKx +cMm +cPu +cPu +cMm +cPn +cTC +cUY +cVs +cXc +cZr +dau +tfg +plm +cPn +dih +cPn +ujU +dkV +cPn +cPn +cPn +drI +cPn +cPn +cPn +dvh +dih +fyp +cPn +dXv +cRd +jEZ +lke +mEm +tSt +ykJ +pNv +iqc +itL +dbp +dJx +dKh +kZc +yiR +dMj +guQ +ohp +guQ +ohp +dOr +dQk +dQX +mbB +dJx +dSk +dSL +dTw +dUh +dYT +dTX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(142,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +abj +abj +abj +acC +ahz +acC +abj +abj +abj +abj +acC +pHg +acC +abj +abj +abj +abj +abj +acC +ant +anP +aoo +apb +apS +ast +arG +aoo +aze +ayd +iUW +aPL +aFt +aFt +aFt +aFt +aFt +aFt +aOx +aOx +eYC +aOx +xif +aIW +aIX +kAy +hEG +lSB +hEG +dBq +dBq +dBq +dBq +dBq +nzV +bcs +bcq +bdL +eaV +wsy +bdP +blc +bdP +bmZ +xfy +inB +gFt +dMH +aaa +abj +aaa +bwf +mTB +gEj +bEk +asz +bHj +bQG +bOG +bMP +bOG +bJa +ciB +caQ +bWQ +bYq +bZX +cbS +cdE +cfC +chf +ciB +ciB +clK +ciB +bSE +fRL +cvE +ctX +cEr +cEr +cyf +cyf +cyf +cCE +cEb +csK +cGY +gfZ +bIG +cJa +dau +ogM +xme +sjV +cMm +cPn +cKI +cUZ +cWz +cYj +cKI +daF +hvJ +uNM +mdg +aiQ +mdg +hMZ +gkb +mdg +mdg +mdg +kfw +mdg +kSr +mdg +iAO +aiQ +ueF +mdg +wNp +fOS +lBi +gxJ +slk +gJW +ykJ +scJ +iqc +nTW +dOO +dJx +dKg +eHn +yiR +dMk +dMW +dMm +dMW +dMm +dPF +dMk +dPF +dRv +dJx +dSi +dSL +dUg +dUR +dYT +dTX +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(143,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +aaa +aaa +abj +aaa +aaa +abj +aaa +acC +afb +acC +acC +acC +acC +acC +acC +afb +acC +aaa +abj +aaa +aaa +aaa +adb +upw +nCK +aoo +apc +apT +ast +aqQ +aoo +azb +hoG +vBV +tGN +oOi +fwQ +oOi +oOi +oOi +oOi +gOP +yed +fZX +aGy +tCb +rza +efP +dDJ +dBq +dBq +dBq +dBq +dBq +dBq +dBq +aXE +aYZ +aYZ +bcr +aYZ +rZF +mlR +rZF +rZF +blj +aYZ +bop +inB +gFt +dMH +aaa +abj +aaa +bwf +bAt +gSh +byU +bFx +bHk +bJb +bKH +bMO +bOF +bKN +ciB +bUQ +bWR +bWR +bWR +bWR +bWR +cfD +chg +ciC +ckp +oMD +bUT +bSE +uHb +suU +csK +cEs +cEr +cyq +nFN +lIX +ikC +cEr +cEQ +cIT +mCv +oSI +sQj +kvQ +cKD +cNF +cPq +kWO +hCA +hCM +dje +dfR +djD +oVj +wXn +nDH +cSt +dfm +dgv +cSt +cSt +lUm +cSt +cSt +dIi +dsu +cSt +cSt +cSt +sSz +dgv +rWL +cSt +dzU +cSt +jEZ +iDw +eas +rzO +hDS +wGb +iqc +uKo +dIE +dJx +dKl +dKL +yiR +dMn +dOr +dMj +dOt +dOZ +kpB +dMj +dOr +dKi +dJx +dSm +dSN +dUf +dUQ +dYU +dIx +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dWf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(144,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adN +adb +adb +adb +adb +acC +acC +adb +acC +acC +ahz +acC +aio +aiH +aiX +ajy +acC +pHg +acC +acC +adb +acC +acC +adb +adb +anp +cWw +aoo +aoo +aoo +aoo +aoo +aoo +ekv +nrz +hwF +qVh +aor +aor +azb +fiI +azb +aor +tIF +eBn +jmD +aGz +qNf +aIY +aOE +xvo +tJO +aOE +xvo +xvo +rqv +aRz +gRS +gRS +gpy +nBa +bcv +nBa +gRS +gRS +gRS +gRS +oEP +yed +xfy +uir +jku +cGk +abj +abj +abj +bwf +sHI +gSh +byU +bFy +bHk +bJc +bKK +bMR +bOI +bQH +ciB +bUR +chi +chi +chi +chi +cnv +chi +chh +ciD +chi +aFs +cnq +coA +eWi +crv +csK +cvx +bxD +cwV +cBj +cBl +rbq +kEV +oyh +sxm +rJD +bIG +cIW +cND +cKT +cNG +cPr +ozX +cPn +cZx +cVd +cZG +cYl +cZx +cKF +dbY +cRg +dfo +dfo +dfp +dfo +nnL +dfo +dfp +dfo +dqp +dql +dql +dwn +vWB +dwn +dql +dql +dql +dql +iqc +njI +iqc +iqc +iqc +iqc +hDF +dPw +ddy +dJx +duw +dKr +dKO +duw +duw +duw +dJx +dJx +dJx +duw +duw +duw +dJx +dSr +dIx +dIx +dIx +dIx +dIx +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(145,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +add +add +add +adL +aeA +acC +afc +adZ +adZ +agg +aip +agA +adZ +adZ +adZ +adZ +adZ +adZ +adZ +adZ +aip +agA +agg +adZ +adZ +amz +amL +ant +uZj +fpv +aoq +hwF +asr +aoq +wug +pXb +awX +adb +tgq +aES +aES +aES +aES +axe +aES +ctu +yed +vLF +iig +jDI +iIj +aKq +hly +hly +hly +hly +suI +rWV +aRA +gRS +rWV +rWV +gRS +bcv +bhK +onD +gRS +bhK +onD +gRS +sKr +xfy +inB +gFt +dMH +aaa +abj +aaa +bwf +wuE +wQG +bDY +bFz +bHk +kaN +bKH +bMQ +bOF +bKN +ciB +tpv +bWT +chi +chi +chi +cdF +chi +chi +chi +bWT +aFs +cnr +bSE +uHb +crw +csK +cEs +cEr +czI +shS +aMp +eup +cEr +cER +cIT +lmt +bIG +cIW +cKA +cKT +cSu +pGk +mwn +cSp +cTQ +cVr +cTR +cTR +cTR +cZv +daH +ddC +dfo +dim +doU +dmf +aeh +doT +doU +dqj +dqp +dsJ +duj +dwq +cNL +dyM +dzV +dCZ +dGn +dql +dGf +dCU +dEi +dES +dCU +dGf +dbp +dHL +dIH +sgA +qOs +mux +rnY +dMo +dRl +sIg +ibQ +dPb +dUp +wAX +dRl +dJH +dSo +iex +dIH +sYX +vJP +jJq +kdg +acF +acF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(146,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ade +adx +adO +aed +aez +aeP +afh +aea +aea +aea +oYY +nyB +nyB +nyB +nyB +rYh +nyB +nyB +nyB +nyB +aNH +uks +uks +uks +uks +amA +gQF +cWx +jWx +aop +aop +aop +aop +aop +aop +aop +aop +auY +fTR +aES +iUX +aBb +nUc +aEO +aES +ctu +prt +aFA +aFA +aFA +aFA +aFA +xWY +jmI +jmI +jmI +aFA +crK +cnC +gRS +rWV +rWV +gRS +bcv +tHZ +bdQ +bgy +bdQ +tHZ +gRS +sKr +emt +xMg +kKB +dMH +aaa +abj +aaa +bwf +aos +bCn +vqJ +gJU +bHl +oYq +bKL +bMS +bOJ +sno +bOH +rXg +uIn +eyp +eyp +cbU +efx +opj +opj +opj +xjj +xjj +yhh +coB +trf +cvE +ctX +cEr +cEr +cyf +cyf +cyf +cCI +cEs +csK +cIU +mRX +cHG +cIZ +cKB +muI +cNH +hJG +dLB +cWL +cTR +cVe +cWM +cYm +cZs +xnf +dca +ddj +dfo +din +doV +dnx +eeP +dnx +doV +dqk +dqm +dsK +dvk +dxD +qAQ +dyN +dzW +puR +dEn +duZ +vJw +dCV +dbC +dbI +dFt +dGg +dbI +dHM +dIG +dJB +dKn +lgQ +dLz +dPM +dPM +dPM +dPM +rCw +fFy +fFy +fFy +fFy +dkq +dSs +dTh +smY +dIH +dIH +dIH +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(147,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +add +add +add +adL +aey +acC +afj +aeb +aeb +agh +agC +aeb +aeb +aeb +aeb +aeb +aeb +aeb +aeb +aeb +agB +alt +aly +aeb +aeb +amB +amL +ant +ait +aop +ape +apV +aqR +arJ +asw +atz +aop +uSu +fTR +hSW +aAw +aAw +uZz +aFy +aES +ffN +aBo +aFA +cBc +iVi +vbQ +aIg +dCT +nVf +aQb +xMo +iUO +itM +roN +aLS +gRS +iFQ +aOG +bcx +ldZ +bTg +mDu +uQP +bTg +blo +yed +xfy +inB +gFt +dMH +aaa +abj +aaa +bwg +bAw +ues +byU +bFB +bHk +aXH +bKN +fgZ +bKN +bKM +ciB +bUU +eir +bYu +caa +ciB +cdH +cfE +chj +ciE +cks +clP +cnt +bSE +wUA +cvE +csK +cvz +cEr +cEr +cBk +cEr +cEr +cEN +csK +cES +ngp +bIG +cIW +cKC +cKT +ncs +xBJ +hwg +cSt +cTT +cVt +daJ +daJ +daJ +daJ +xGO +ddD +dfp +diq +doW +dny +dla +cLv +doW +dqo +dqm +dsL +dvl +dug +dws +dui +dzX +dEX +jTj +dql +dCU +dCW +ilJ +ilJ +ilJ +ilJ +ilJ +ilJ +ilJ +pBY +qao +swR +swR +ntJ +swR +swR +fRl +rvx +qao +swR +ntJ +swR +pYE +dSB +dIH +dXK +xUO +iCs +dIH +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(148,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adN +adb +adb +adb +adb +acC +acC +adb +acC +acC +ahA +acC +aio +aiI +aiI +ajy +acC +ahA +acC +acC +adb +acC +acC +adb +amN +ant +uNk +asn +apf +aqg +aqS +arK +asx +atA +avf +syT +foa +kHz +mfW +vtq +aAB +azq +aES +mhD +nxx +xaO +iIC +xIG +aQb +aFA +bsq +adS +aWj +aQb +iUO +itM +aUI +aWg +rWV +pXW +aTp +bdT +bfk +bfk +bgA +gRS +gRS +gRS +aZa +xfy +inB +bsj +cGk +abj +abj +abj +tVV +bAx +dkc +byU +bFC +bHk +bJg +bKN +bMU +bJe +bHk +ciB +ciB +ciB +ciB +ciB +ciB +ciB +ciB +ciB +ciB +bSE +bSE +bSE +bSE +dKs +cvE +csK +cDs +cvB +cwY +cyg +lIv +cBm +cCK +csK +cET +lmt +bIG +cIW +cMn +cKT +vKB +pPG +ewj +cSt +cTR +cVu +cWY +daJ +daJ +daK +xGO +ddE +dfo +diq +dio +djQ +vio +dmg +dnA +dIL +dqn +dsM +dvl +dws +dvo +dyO +dAa +dtN +dtN +dyP +dBC +dbB +ilJ +dET +dFu +dGh +dGP +dHN +ilJ +cWb +dSs +oGz +ddw +dIH +oGz +ddw +gkk +rvx +dSs +nnZ +dIH +dNa +mrw +dXJ +dIH +dIH +dIH +dIH +dIH +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(149,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +aaa +abj +aaa +aaa +abj +aaa +acC +afb +acC +acC +acC +acC +acC +acC +afb +acC +aaa +abj +aaa +aaa +aaa +adb +ant +xum +aop +apg +apX +aqT +arL +asy +atB +aop +uSu +fTR +aES +sxU +azr +nUq +aHX +aES +wRZ +vJg +aFA +aGD +aHP +aMj +aFA +pER +oTh +jwT +aQb +iUO +itM +aUI +aWh +aUo +oYM +nAf +bdR +bhK +onD +bgB +fJz +onD +gRS +mTw +xfy +inB +gFt +dMH +aaa +eXC +mrg +bwf +aos +gSh +byU +bFD +bHk +bHk +bCG +uKV +bOM +bHk +aaa +abj +aaa +bOZ +cab +cbW +cdI +cfK +vGg +ciF +bYv +aaa +aaa +dER +nBO +cvE +csK +csK +csK +csK +csK +csK +csK +csK +csK +cEU +lmt +bIG +cJa +cKF +cSr +cNJ +cPt +ckI +cSt +cTT +cVv +sHY +sHY +cZB +daL +ckd +ddG +dnF +diq +dip +djQ +dlb +dmg +dip +dqo +dqm +dsL +dvl +dui +dOc +dvp +dam +dFw +dHR +dql +dGf +dBT +ilJ +dEU +dFv +dGl +dGS +hQC +dII +cWH +wlS +ppn +wFd +fjW +cBB +jrY +tLw +pdc +oRA +dNb +dNN +dOw +eBK +dSs +eSD +hlo +dWA +dVb +dIO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(150,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +abj +abj +acC +ahA +acC +abj +aaa +aaa +abj +acC +ahA +acC +abj +abj +abj +abj +abj +acC +ant +xum +aop +aop +aqi +xtI +arQ +asn +aop +aop +uSu +fTR +aES +aES +azs +fPm +qAZ +aES +axY +vJg +aFA +aGE +kgB +aMk +aFA +fZU +fbk +ooQ +aQb +iUO +itM +aUI +aWh +rWV +pXW +aVQ +bdR +bdQ +tHZ +bhN +tHZ +bdQ +lEV +yed +xfy +inB +gFt +dMH +aaa +iHY +bxm +byR +wGL +gSh +byU +bFy +bHn +bOT +bOT +bOT +bOT +bOT +bOT +bOT +aaa +bOZ +rxb +cbY +cdK +cfH +cfH +cfL +ckt +abj +abj +gqa +xYR +wFa +csN +abj +abj +oeY +cyh +czJ +cBn +cCL +vBU +cEL +lmt +bIG +cJa +cKF +vWv +pML +vJs +cMm +cSt +cTF +cVw +cWQ +cYn +daJ +daJ +daJ +ddF +dfo +diq +djR +djQ +vio +dmg +doX +dqo +dxB +dtN +dvl +dws +dOD +dav +dav +dyR +dzY +dql +dCU +dHL +ilJ +dEV +dVx +tAb +pOK +wyz +dIJ +kNj +dSs +dQp +cBB +puG +oGz +dRG +gkk +jkz +dSs +dQp +dRH +dRG +yjd +dlp +vii +dTC +dUm +vlR +dIO +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(151,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aaa +agE +agD +agE +ahB +agE +agF +agF +agF +agF +agE +ahB +agE +agE +aaa +aaa +aaa +aaa +adb +ann +anQ +aou +api +aqU +aqU +asA +asY +asY +awh +uSu +gaQ +aoA +aES +aCP +aAD +sxf +aES +aor +vJg +aFA +aGF +lUo +aMl +aFA +saO +oBi +lJu +aQb +iUO +itM +aUI +aWh +snj +lJl +jGf +bdR +uQP +bTg +gRS +uQP +bTg +gRS +sKr +xfy +inB +gFt +dMH +aaa +iHY +bxn +byS +byU +gSh +byU +bFy +bHo +bOT +bKP +bMW +bOO +bQK +bSH +bOT +abj +bOZ +cad +cbX +cdJ +cfH +chl +ciH +bYv +dER +dER +dER +cpX +cvE +euc +uxq +csN +cxa +cyi +cyj +iJd +cCM +qih +cEL +lmt +bIG +cIW +cKG +cMm +cPu +cPu +cMm +cSt +cTT +cVx +cWR +cYq +ddr +daM +dcc +ddH +dfo +dis +djS +cDI +oRg +djS +djS +drE +dqp +duf +dvr +dyO +dXr +dvq +dav +dyS +dzZ +dql +dGf +dBT +ilJ +dEW +dFx +tja +vPm +dHQ +ilJ +dST +oRA +jfO +oGz +tgn +cqg +dNP +wHt +oLJ +wlS +rEs +dNN +lWQ +ppE +dSs +eSD +dTG +dUn +vQv +dIO +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(152,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aee +agD +agE +agT +ahC +ahV +ail +ail +ail +ail +ahV +ahC +akw +agE +aaa +aaa +aaa +aaa +acC +anl +nMm +tSn +hDf +tSn +tSn +sAG +tSn +tSn +hDf +tSn +dNE +ebi +nrR +azt +aAE +aIQ +aES +aYP +pic +hvS +qCk +aHR +aJb +raD +aZZ +aNj +aQb +dMp +mit +oWQ +riJ +oFv +rWV +aZc +baT +mkW +bdO +gRS +lsG +gRS +uXv +blk +sKr +xfy +inB +gFt +dMH +aaa +mqH +bxo +bWF +pgg +bCq +bEd +bFF +bHp +bOT +bDL +bMX +bOP +bMY +bSI +bOT +aaa +bOZ +cae +cbZ +sUM +vUM +chm +iUV +cku +iyc +iyc +bac +fIB +fwX +csO +hSL +cvE +cxc +hHd +acX +wbY +oZb +gyY +vyi +weE +bIG +cIW +cKH +cMn +cKF +cSt +cRg +cSv +cTR +xKX +cWS +cYr +cTR +cVz +dbU +cVz +dfo +dit +iaD +dnz +dnz +dnz +dnz +drF +dqp +cTP +dwo +cTP +cTP +dql +dBO +dFy +dQq +dql +dfu +dVj +ilJ +ilJ +dFa +nNA +rXY +ilJ +ilJ +dXC +dSs +ddw +cBB +dIH +ddw +oGz +gkk +rvx +dSs +dNa +dIH +dRH +gkk +rqh +dIH +dIH +dIH +dIH +dXn +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(153,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aee +agk +agF +agU +ahC +ahC +ahC +ahC +ahC +ahC +ahC +ahC +akx +agE +agE +agF +agE +aaa +acC +ant +rJt +aow +apj +aqa +aqV +arO +aqV +auH +apk +avc +lmo +axh +ayv +aES +aES +aES +aES +awX +ckl +aFA +aFA +aFA +aFA +aFA +aFA +mXk +aOH +aFA +aFA +yed +yed +yed +fBv +nUC +yed +yed +yed +kDv +yed +kDv +yed +yed +bna +xfy +inB +bhX +cGk +abj +bwf +bxp +byU +rQH +bCr +bEe +bFG +bHq +bOT +bMX +bMX +fBC +bMX +bMX +bOT +aaa +bOZ +dne +oMy +hwf +drp +bYv +ckt +bYv +ckv +ckv +ckv +rcs +bVz +csP +cub +cvE +bkb +cBo +czM +cBp +cCN +cxa +cEL +lmt +cHH +cJb +cKI +cIW +cPw +cPw +cIW +cKI +cTR +cVz +cTR +cVz +cTQ +daN +dce +ddJ +dfo +dfo +dfo +dnB +doR +doR +dpc +dfo +dqp +drK +dce +dce +ddJ +dql +dql +dql +dbg +dql +dBH +dCX +ilJ +kqQ +dWL +hTr +dWL +xPQ +dIK +kbj +urp +hRa +hRa +dMY +hRa +hRa +tdo +rvx +urp +hRa +dMY +hRa +tdo +urp +ibQ +pWr +dUp +suy +dXn +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(154,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aee +agk +agF +agV +ahC +ahC +aim +aim +aim +aim +ajD +ahC +aky +akY +alv +alH +agF +aaa +acC +ant +rJt +joU +acC +aqb +aqW +aqW +aqW +atC +adb +axF +dKB +ayx +byN +bhO +bhO +bhO +bhO +bhO +nME +phe +aWq +bhO +bsi +aKt +qul +tYC +bhO +bhO +qWV +dEH +bhO +bhO +bhO +aZd +baU +bfp +aWq +bhO +bhO +bhO +bhO +jmX +byN +xfy +inB +bsm +dMH +aaa +bwg +bxq +byV +byU +bCs +bHr +rDN +bHs +bOT +bKS +bMY +gTy +bQL +bSJ +bOT +aaa +bOZ +caf +cca +oLl +cfK +ckt +ckv +ckv +csW +ega +jQg +rcs +crE +csQ +cuc +cvE +cxa +cyl +czO +cBr +cCO +pJv +cEL +lmt +bIG +dEm +cVA +cVA +cVA +cVA +cVA +cVA +cTV +cVA +clA +cVA +cVA +cVA +cVA +cVA +dft +dgC +diu +dnC +doS +dnC +dHT +dgC +doY +drL +cVA +cVA +cVA +cZR +doY +dgC +doY +doY +doY +dDb +dXj +mfJ +mIZ +dGU +mIZ +fOr +pEY +kbj +dUq +dUq +dUq +dNO +dUq +dUq +dUq +rvx +dUq +dUq +dNO +dUq +dUq +dSD +dUq +dNO +dUq +dUZ +dIO +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(155,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +abj +abj +aaa +agE +agD +agD +agW +ahC +ahW +agD +aiG +aiG +aiG +agD +aka +ahC +akZ +alw +alH +agF +aaa +acC +ant +anU +lML +acC +aqc +aqW +arP +aqW +atD +adb +juJ +awm +eQL +bMa +vMg +vMg +vMg +vMg +uFI +guk +vMg +joe +qvT +qvT +aKu +nsL +oir +ima +ima +xCn +aTj +kNg +kNg +pOf +kdH +kNg +bgw +qsm +cUT +kNg +jja +kNg +kNg +pso +jdc +bqt +bsm +dMH +aaa +udj +bxr +pgg +bAy +xJT +bEg +bFH +rYn +bJi +vbj +bMZ +bOQ +bQM +bSK +bOT +nqp +bOZ +cag +ccb +cdN +cfK +ckt +ciL +ckv +fas +fFT +fun +cqb +crF +csR +ihR +cvF +cxa +rUS +czN +cBq +cCP +wHF +pSM +cGA +iQj +dEl +sAv +sAv +sAv +cPy +sAv +sAv +sAv +sAv +pzE +sAv +sAv +sAv +sAv +sAv +dfB +sAv +sAv +sAv +pzE +sAv +sAv +sAv +iys +eKN +eKN +neQ +eKN +dwt +eKN +dBP +mbY +dBP +dBP +dDc +dPu +dEZ +dcj +dWK +dcS +cUv +fiK +ebW +beC +beC +beC +dfG +beC +beC +beC +dQI +dTH +dTH +eFE +dTH +dTH +fFy +dTH +frp +dKo +pMe +dIO +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(156,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aee +agk +agF +agX +ahC +ahC +ail +ail +ail +ail +ajF +ahC +aky +ala +alv +alH +agF +aaa +acC +ant +rJt +wEA +acC +aqd +aqW +aqW +aqW +atE +adb +roR +lxo +ayy +aBU +aEF +aEF +aEF +aRK +cyT +aEF +aFC +uIk +aJc +aKw +aKw +aJc +aRH +aEF +aoZ +non +aEF +aEF +aEF +iNR +aEF +aEF +bgx +aSe +bhY +bhY +myf +bhY +foX +bMb +bov +hMM +bsm +dMH +aaa +pCI +bxs +byV +byU +ein +bEh +sve +bHt +bOT +bKU +bMY +lJk +bQL +bSL +bOT +aaa +bOZ +cah +ccc +cdO +cfL +ckt +ckv +ckv +czY +ssR +isc +rcs +crG +csS +cue +cvG +cxa +cyn +czQ +cBt +cCQ +bkb +cFa +lmt +bWM +dEm +cRh +cRh +cRh +cRh +eqp +cRh +cRh +cYC +cXd +mGG +cYC +cYC +cYC +cYC +dgw +dBj +cmn +cmn +cJY +dmh +dwP +dpa +rIO +dpa +dnc +ghJ +cTW +dwu +cmn +cmn +dQr +dBj +cmn +diw +cRc +mfJ +mIZ +pOK +mIZ +cVc +pEY +dSV +dUq +dUq +dUq +gQL +dUq +dUq +dUq +dSD +dUq +dUq +gQL +dUq +dUq +dSD +dUq +gQL +dUq +mXo +dIO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(157,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aee +agk +agF +agU +ahC +ahC +ahC +ahC +ahC +ahC +ahC +ahC +akz +agE +agE +agF +agE +aaa +acC +ant +rJt +aoA +apk +aqe +asE +arO +asE +atF +apj +avg +kIL +axk +ayz +ayA +aCv +ayA +ayA +ayA +ayA +ayA +ayA +aHT +aEP +aEP +aQp +aEP +ayA +ayA +ayA +ayA +aGK +aJd +aXK +aJd +aGK +aGK +bdU +bfq +bhU +waa +bfq +bdU +bnd +bov +hMM +bsn +cGk +abj +bwf +bxt +byU +bMV +rpN +bEi +bFK +bHu +bOT +bMX +bMX +oWg +bMX +bMX +bOT +aaa +bQI +bQI +bQI +bQI +bQI +bYx +ckx +bYx +clU +ckv +ckv +rcs +crH +csT +euq +cvG +pJv +cBo +czP +cBs +cCR +cxa +sDh +lmt +cHL +uWn +ppu +drR +cPA +ppu +tDw +ppu +drR +cPA +ppu +tDw +tJd +vdl +vdl +vdl +dfv +dfv +lGu +ipW +dfv +dfv +dmi +dta +jJO +gcg +dmi +dmi +duk +hzV +vgr +duk +duk +duk +dBJ +dDa +ilJ +dFb +dWL +hTr +dWL +dHV +dIN +dJG +hbH +lIE +pGr +dVp +dKp +pGr +nMN +dTI +vxl +dTI +dTI +dTI +txt +dTI +xAB +dTI +dUt +dVc +dXn +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(158,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aee +agD +agE +agT +ahC +ahV +aim +aim +aim +aim +ahV +ahC +akA +agE +aaa +aaa +aaa +aaa +acC +akG +joW +eQL +thm +eQL +eQL +fNh +eQL +eQL +thm +eQL +uRf +ayy +ayA +azx +aAK +aAK +aDQ +aCF +aAK +aFD +ayA +aHU +aEP +aMa +aLW +aNl +aOJ +aQe +aRL +ayA +aUN +aWn +aXL +aZg +baV +aGK +bdV +bfr +bgC +krw +bjC +bls +bfq +bov +hMM +spq +dMH +aaa +nCt +bxu +bWF +pgg +bCu +bEj +bFL +bHv +bOT +mak +bMX +bOR +bMY +bSM +bOT +aaa +bQI +cai +ccd +cdP +cfM +chq +ciO +ckw +sdl +sdl +bbE +swM +hQk +csU +gTk +cvG +nnM +hHd +opu +lrN +dZj +vTv +jmG +njp +bWM +ppu +cKM +rQz +mTs +cDh +cRj +cSx +rQz +mTs +cXf +cYD +doM +dHo +kGk +ssg +dfv +dgF +fyg +dkZ +dnJ +dfv +ggQ +jaE +aWQ +jaE +iHy +dmi +oPr +mYS +mUc +tnO +mYS +duk +dEo +iFR +dTy +dTy +pBb +tNh +dFC +dTy +dTy +dTy +ydk +hhp +dUu +jev +dTy +dKQ +dXn +dKQ +dIO +gkL +dLK +gkL +dIO +dKQ +dXn +dKQ +dXn +dXn +dXn +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(159,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +abj +aaa +aaa +agE +agD +agE +ahE +agE +agF +agF +agF +agF +agE +ahE +agE +agE +aaa +aaa +aaa +aaa +adb +ans +lpL +aoB +apv +aqZ +aqZ +asW +asZ +asZ +axi +ayy +hSK +aow +ayA +ayA +ayA +ayA +ayA +ayA +aDL +ayA +ayA +aIh +bqI +aNx +aQl +aCF +aOK +aQf +aRM +aEP +aUO +aWo +oCI +aNm +baW +aJd +bdW +bfu +bgD +wvX +bfu +blt +bfq +bov +hMM +spq +dMH +aaa +kNn +bxv +byX +byU +gSh +byU +bFy +bHw +bOT +bKP +bNa +bOS +bQN +bSN +bOT +abj +bQI +caj +cce +cdQ +kMn +tAH +ciP +bYx +dER +dER +dER +cqe +cvG +euc +hFh +csN +cxa +cyi +cyj +gRO +cCS +qih +cFa +lmt +bWM +eQC +rQz +cSs +cPD +xHE +cSs +cSs +xHE +cPD +cSs +npp +wgS +xkE +qwH +nXa +dgD +dgG +mtM +dlf +dpf +dfv +jqb +nRA +mMR +dad +sBV +dmi +raz +klA +mUc +raz +klA +duk +dDh +dDg +qzw +vjM +xIM +prC +fQf +xmJ +dTy +dSY +afU +dTE +dUv +dVq +dWI +dUq +uPx +dUq +dIO +dIO +dIH +dIO +dIO +dUq +uPx +dUq +dIO +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(160,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +abj +abj +acC +ahF +acC +abj +aaa +aaa +abj +acC +ahF +acC +abj +abj +abj +abj +abj +acC +ant +xum +aoC +aoC +aqu +jZa +asX +asF +aoC +aoC +axm +awq +axm +ayA +azy +aAK +aBG +aAK +aAK +aEI +aAK +ayA +aEM +aEN +aNp +aQl +aKy +aOL +jMi +uZe +aJe +pia +oey +xFF +lSZ +baX +aZs +bdX +kNg +fgI +fPx +bfu +blu +bhU +bov +hMM +spq +dMH +aaa +kNn +bxw +byY +byU +gSh +byU +bFy +cHe +bOT +bOT +bOT +bOT +bOT +bOT +bOT +aaa +bQI +dNR +ccf +cdR +cfO +cfN +cai +ckx +abj +abj +gqa +jDw +prk +csN +abj +abj +oeY +cyp +czT +cBu +cCT +vBU +cFa +frk +hxq +cJh +bKY +fUD +hNd +bsI +rQP +rQP +bsI +xlp +cVF +npp +kyJ +goo +dvj +dcs +ehj +dix +vVF +xoe +nTt +dfv +sda +dYb +mMR +dYb +jpu +dmi +vIF +hda +mUc +dwX +hVT +duk +dDh +fWN +geW +uMD +hEP +qqe +hGs +tyw +lsd +eUF +omI +qOP +kCw +tyw +qSh +dKP +dXn +xnh +dIO +hCj +qIl +xEl +dIO +dKP +dXn +xnh +dIO +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(161,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +aaa +aaa +aaa +acC +afb +acC +acC +acC +acC +acC +acC +afb +acC +aaa +abj +aaa +aaa +aaa +adb +hbv +tJk +aoC +apl +aqh +ara +arR +asG +atG +aoC +avi +wVW +fFF +dZp +swm +aAL +aBH +qEc +aBY +nHt +stC +aEL +aJg +ttX +rpi +aLZ +wPI +wPI +aQh +aRO +aEP +aUU +aJf +nfs +aNm +baY +aJd +bdY +bfu +bcC +bgE +bfu +blu +bhU +bov +hMM +spq +dMH +aaa +lUd +mrg +bwf +bAC +gSh +byU +bFy +bWX +bWX +iDU +fUl +bOU +bWX +aaa +abj +aaa +bQI +cal +ccg +cdS +cfP +chs +ciR +bYx +aaa +aaa +dER +tlB +cvG +csV +csV +csV +csV +csV +csV +csV +csV +csV +cEY +xQr +bWM +cJi +sYl +cSs +cPD +kht +cSs +cSs +kht +cPD +fPF +npp +ilY +xkE +xqd +iVO +dgD +bkW +djV +fcZ +ouu +dfv +rdB +hfx +aSl +xVm +hOG +dmi +hWg +pGJ +uKp +qbL +meJ +duk +dDr +kNu +aUD +xQB +sBX +gtW +kfm +pgH +dTy +gri +hBH +tOt +hBH +odS +dWI +dUq +aiL +dUq +dIO +hCj +cvL +uaH +dIO +dUq +iHv +dUq +dIO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(162,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +aaa +acC +ahF +acC +pWw +tRa +ajd +ajy +acC +ahF +acC +acC +adb +acC +acC +adb +amN +ant +rah +asF +apm +arM +arb +arS +asC +atH +aut +avj +gii +meP +axm +uhM +aAM +aCF +aCF +aCF +aEK +aFJ +ayA +ayA +mJr +aOM +aNy +aKx +aKx +noP +ayA +ayA +aUR +aNm +dUy +aNm +baZ +aGK +bbC +bfu +bfu +mqx +bfu +blw +bdU +bov +hMM +bML +cGk +abj +abj +abj +nCt +bAD +jYB +byU +bFN +bWX +bJj +bLc +bLc +bOV +bWX +bWX +bWX +bWX +bYD +bYD +ciT +bYD +bYD +ciS +ciS +cht +cht +cht +cht +vZE +cvG +csV +fQh +cxe +czW +cyr +czW +cBw +cCV +csV +gaZ +xQr +bWM +rOW +cKP +lQs +aln +hsQ +dqN +vqr +cbr +nCu +cXi +tlg +mjD +uPJ +mUq +ddO +dfv +bXo +xRb +ncG +ddL +dfv +kRr +oCQ +nzw +woa +dYb +xkM +mUc +mUc +nwY +mUc +mUc +pai +dBY +dDj +dTy +dTy +ydk +hId +jev +dTy +dTy +dTy +ydk +hId +ryk +dTy +dTy +dKQ +dXn +dKQ +dIO +dIO +dIO +dIO +dIO +dKQ +dXn +dKQ +dXn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(163,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +acC +aip +afJ +adZ +adZ +adZ +adZ +adZ +aip +adZ +agA +alG +adZ +adZ +amz +amL +ant +anW +aoC +apn +aqj +arc +arT +asH +atI +aoC +avk +aws +axp +ayA +azB +aAN +aBJ +aCD +aBK +aDR +aAK +ayA +aHZ +psF +aKz +jrU +aON +aON +aJh +aRP +ayA +aUS +aNm +aXM +aNm +baY +aJd +bcB +bfu +bea +nGd +bfu +blu +bhU +bov +hMM +spq +dMH +aaa +abj +aaa +pCI +bAE +ues +byU +bFO +bWX +bJk +bKZ +bLc +bLc +bQO +bSO +bUV +bWX +bYy +cam +cch +cdT +bYD +cgQ +cgQ +cky +clW +cmX +cht +vZE +fmE +csV +cul +cCX +cBv +cyt +cBv +cBv +cCW +csV +cEZ +xQr +bWM +kAK +eAS +xmc +dmj +lee +vqT +eAS +efi +ssV +dOC +efi +tDw +jNF +aBD +lEN +dfv +dfv +dfv +dfv +dfv +dfv +qyr +fSN +mpe +mKK +lAk +dmi +qhP +hGe +dME +kzq +aNJ +duk +dBY +qhX +dDh +dEo +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dNS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(164,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acC +aFB +nyB +nyB +rYh +nyB +nyB +nyB +aNH +scb +eQL +eQL +eQL +nIm +amA +gQF +rUl +anX +aoC +aoC +aoC +aoC +aoC +aoC +aoC +awx +aql +auu +qmM +ayA +azC +aAO +aBK +aCE +aDN +aBM +aFI +aGK +aGK +aGK +aGK +aJd +aJd +aJd +aGK +aGK +aGK +aUT +thU +bjZ +aNr +bba +aJd +bcB +bfu +bcC +bgE +bfu +blu +bhU +dXN +rKJ +wHB +dMH +aaa +abj +aaa +bwf +aos +bCy +ybF +fvE +bHz +pgk +wWZ +bNc +bOX +bQQ +bSQ +kbZ +bWW +jKc +rXk +cci +cdU +bYD +cgQ +cgQ +ckz +uQi +ayt +coq +rrT +cqd +wNv +xkX +qRi +czV +cys +czV +uNS +cCX +cEk +bwL +qHE +cHK +eAS +cKR +cMr +qZV +cPH +dYj +eAS +cNT +fIv +hfo +prN +wFh +cXg +poh +rtF +imN +dfy +vNu +fTz +dsU +dtm +gxD +hfx +pnN +nNu +fpj +dmi +jyv +gBg +bRb +jyv +xhS +duk +dCb +qhX +lQw +jcU +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(165,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acC +aec +akb +aeb +aeb +aeb +aeb +akb +agB +hcr +aeb +mFy +aeb +oAU +amB +amL +ant +anY +axm +apo +apo +ard +aoE +ard +auu +auu +apo +awu +qmM +ayA +azD +aAP +aBL +aCF +aCI +aDR +aFJ +aGK +aIa +aJj +aKB +aMc +aNq +aOO +aQk +aRQ +aJd +aUU +aNm +pOA +aNm +bbb +aJd +bcB +bfu +bfu +mqx +bfu +bly +bfq +bov +hMM +spq +dMH +aaa +abj +aaa +bwf +mbO +emU +bEm +bFy +bWX +bJm +lLM +bLc +oSb +bQP +bSP +bUW +bWX +bYA +cdW +ccj +cdV +bYD +chv +ciS +ckA +pJb +cnA +cht +cqj +cvG +csV +cuX +cCX +cCX +cyu +cCX +ciY +dte +csV +cFa +xQr +bWM +kBi +jhM +cRn +ncT +giz +fFX +eAS +sBm +cVI +qOu +uoU +cYI +daX +evb +cXj +rXn +dgK +pFn +wTq +dAk +vXG +nEn +obK +wiK +uTP +iQv +dmi +raz +klA +bRb +raz +klA +duk +dBX +uaU +lQw +jcU +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(166,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adb +adb +adb +aeM +adb +adb +adb +adb +adb +aUu +adb +axm +axm +awY +axm +axm +anv +anZ +axm +app +aqk +kUF +arU +tZR +qmz +mAC +eqK +awv +pXQ +ayA +azE +aDR +aBM +aCG +aDj +aEH +aFK +aGK +aIb +aJf +caO +aMd +jeu +aOP +aNr +aRR +aNv +mRM +tic +xRT +aNm +bbc +bQb +bcC +bfu +bgG +toB +bfu +wVi +bfq +bov +hMM +cvW +cGk +abj +abj +abj +bwf +ipZ +fNL +byU +bFQ +bWX +bJn +bJf +bLc +oSb +bQR +bSR +bUY +bWX +cbz +cdW +cck +cdW +cfQ +csL +ciS +ckB +clZ +cnB +coF +cqk +crO +csV +cvJ +cvY +cxJ +cyI +dTu +ciY +cDa +csV +cFa +pWc +uEi +dWb +naE +dqs +crT +oAd +dvE +eAS +rpu +wid +cXm +jSX +qdm +jSX +dcm +gzd +rtF +dgK +bvO +dBB +aSR +dtm +eOS +kGe +sSr +vzf +oXd +dmi +mmK +gBg +bRb +jyv +aOI +duk +wWI +uxh +lQw +dEo +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(167,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adb +aeC +aeN +aff +adb +afk +afz +agp +aXy +bKa +akB +alJ +kOq +apo +axm +anz +aoe +axm +apq +aql +axm +axm +axm +aww +axm +axm +axm +axt +ayA +azF +aCH +aCH +aCH +aDQ +aCH +aFL +aGK +aIc +aMe +oZU +aKD +aNs +aJk +vCE +aRS +aJd +aUW +aXT +qMO +aZl +bbd +aGK +bcM +bcC +beb +jfR +bjF +ova +bdU +wZB +hMM +spq +dMH +aaa +abj +aaa +bwf +bAt +fNL +byU +bFx +bWX +bJo +bLd +bNf +oSb +bQS +bSS +bUZ +bWX +cfa +fhb +otb +cdX +bYD +chz +ciS +ckC +xOp +cnB +coG +oYC +cvG +csV +csV +cyv +cyv +cyv +cCZ +cBA +cCZ +csV +cFa +xQr +bWM +crx +cEj +dpi +nQF +rAg +dsV +eAS +lRi +wid +grg +xRX +ecz +eFB +eTq +ufH +ufH +seh +iVQ +gYr +xdY +dfy +duk +duk +duk +duk +duk +duk +raz +klA +bRb +raz +klA +duk +dDh +dDk +dDr +jcU +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(168,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adb +aeK +aeQ +aeK +adb +afl +fPv +qoq +jqD +bSk +akB +alX +cnx +amC +axm +axm +axm +axm +deR +aqm +axm +arV +asI +atM +auw +avm +axm +axp +ayA +ayA +aBO +aBO +ayA +aDS +ayA +ayA +aGK +aGK +aJd +aKE +aJd +aGK +aGK +aJd +aJd +aGK +ayD +bcI +oJB +ayD +bbe +bbe +bbi +bin +bbi +dWC +bbi +bbe +bbe +boz +hMM +spq +dMH +aaa +abj +aaa +bwf +mTB +vVZ +bEk +asz +bHx +bJp +bLe +bNg +bPa +bWX +bYD +bYD +bYD +bYD +car +ccm +cdY +bYD +chz +ciU +ckz +aoN +cnD +cht +cre +cvG +uaS +csV +cxl +cuk +cyw +jRl +ciY +tFt +rbT +cFa +xKv +bWM +xmc +cFw +wPe +viY +hOP +xJh +eAS +jOi +wid +grg +cXj +kOD +wid +ekr +xRX +dfz +dgK +tST +dep +rLj +xcg +duk +qES +krc +jvR +lkh +deV +xtw +gBg +bRb +jyv +lse +duk +dBZ +dDm +uuE +jcU +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(169,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adb +aeL +afa +aeL +adb +afm +afC +bya +bya +bSB +akB +auu +esG +amD +sts +pps +sts +uov +jck +aqn +are +arW +asJ +aKd +aux +qWs +axm +qmM +ayD +azG +aAT +aAY +aCJ +aDT +aFp +aLV +aJm +aId +aXV +rPY +aXV +aNt +aQu +aSq +aRU +aZt +aUX +maI +aVg +aZn +bbf +bcD +bed +bfx +bgK +ikX +bjG +blB +bbe +wZB +hMM +spq +dMH +aaa +abj +aaa +bwf +bAs +nza +bAs +bAs +bHx +bJq +bLf +bLf +bLc +bQT +bYD +bVa +bWY +bYE +ccn +hby +cdZ +bYD +chz +ciS +ckD +cnE +cnE +coH +eff +cvG +rVL +csV +cvQ +trC +nFu +cAb +cBD +cDc +mVV +cFa +gfZ +bWM +eAS +cKW +gVw +cLn +wtd +qDW +eAS +lQa +wid +grg +hHy +nsg +wid +ekr +cXj +pex +dgK +dLJ +oYh +urq +lmD +duk +uOK +hDu +vYM +jRL +voc +hWg +bKD +bRb +raz +klA +duk +jDc +pCj +nHK +dEo +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(170,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeL +afd +aeL +afg +afg +afM +afg +afg +afi +akB +alM +qcZ +amE +amP +amP +apo +avd +auv +aqo +are +arX +asK +eQq +asJ +avn +are +qmM +ayD +azH +aFO +aBQ +aCK +aDW +aDW +aGQ +aKb +ieq +epE +ylJ +tZJ +tZJ +gxr +aKK +aRV +aTs +aUY +aBS +aBS +aZo +bbi +bcE +bfZ +beg +bfA +qUc +bjH +blN +bbi +bov +hMM +ado +oWb +sbf +sbf +sbf +bwf +bFR +fNL +byU +bAr +bHx +bJr +bLg +bNh +bPb +bQU +bYD +bVb +bWZ +bYD +cat +cco +cea +bYD +chA +ciS +ckF +cmd +cnG +cht +vZE +cvG +nSv +csV +eXJ +scI +cyy +mhU +iVf +tFt +mVV +cFa +gfZ +bWM +eAS +cKX +cMt +xJH +lbz +los +xmc +pPW +wid +grg +cXj +ggf +wid +ekr +jZR +xTI +dfy +vas +rto +mbz +qhZ +duk +vDZ +kOr +klO +ech +yhF +xvq +vHV +rxZ +lai +tZt +duk +dCb +dDk +ksS +jcU +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(171,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeL +afe +aeL +afg +afn +afN +aED +afg +abj +akB +alN +amd +amF +alN +axm +alN +jtq +alN +axm +axm +arY +apo +eQq +asM +avo +axm +qmM +ayD +azI +aAV +kKH +aJv +aBS +aBS +aGR +aJv +aBS +aBS +vEG +aCN +aCN +aCN +aWz +azL +aTt +kPd +dsH +pnw +qJB +iYD +bek +wOC +wOC +blE +kpK +bfA +bnf +bNB +myy +hMM +bsr +oWb +btI +btI +btJ +bwf +qfr +knY +bEn +bFE +bHx +bHx +bHx +bHx +bHx +bHx +bST +bST +bST +bST +bST +bST +bST +bST +cht +cht +ckG +cht +cht +cht +crQ +csX +csV +csV +csV +csV +csV +csV +csV +csV +csV +cnO +gRx +bSz +hjK +eAS +kXM +viY +uHs +fWM +eAS +hjJ +wid +grg +gzd +tZu +fIv +ekr +cXj +rlK +dfy +dfy +dgK +dfy +dfy +duk +duk +duk +duk +duk +duk +duk +duk +siO +duk +duk +duk +dBY +qhX +dDr +jcU +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(172,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afi +afx +afP +aUs +afg +aaa +akB +iCE +sbe +amG +amQ +alk +aoc +oha +apw +aqp +arf +bPq +auu +cEe +jTe +ppN +gAQ +vOK +ayD +azJ +aAV +miH +aCN +aCN +aCN +aCN +aBS +aEQ +aBS +aNw +aBS +aEY +aCN +aWz +azL +aTw +aUZ +aBS +uuY +aZp +aWA +ben +beg +beg +bgS +wGq +bfA +bnh +bel +dlE +ouo +spq +wkq +lVl +lVl +lVl +xat +bEo +fAE +bEo +wGz +bHA +lVl +lVl +lVl +lVl +wkq +xwQ +bVc +iru +rAL +xwQ +qwl +qRG +xwQ +xwQ +ciV +xwQ +xwQ +xwQ +aER +eZo +lDQ +jBa +cun +jBa +cxm +cyz +jBa +mnp +cxm +jBa +jBa +tHh +qxO +dWP +eAS +cMv +ffH +uHs +cRn +dSd +hZm +fIv +cMq +jSX +eSL +jSX +cUe +gzd +tZu +ioI +hap +dpB +dpB +ioK +tAa +dpB +hap +dpB +dpB +dpB +ioI +dpB +gCs +qLk +dAi +cKY +dBY +qhX +lQw +pyb +dEo +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(173,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +afg +afy +pIC +aUt +afg +abj +akB +sUn +gUc +ajM +amR +anA +hXg +aoI +apo +axm +arg +asJ +asM +ykU +auu +avp +are +axv +ayE +azK +pwX +iFA +hPm +hPm +hPm +hPm +hPm +aKL +ipa +rSQ +aBS +aEZ +aCN +aWz +azL +ssy +aVa +aBS +uuY +jNg +bbe +bcH +beh +bfB +bgO +bie +bjJ +blF +bbe +jjp +dog +oXh +pLc +vQR +vQR +btK +vQR +vQR +eOm +vQR +qQG +aRd +vQR +vQR +vQR +vQR +pLc +eJO +bVd +jHk +xzH +jHk +jHk +uaB +jHk +jHk +jHk +jHk +jHk +jHk +kcw +fYD +jnW +jnW +hzo +jnW +jnW +jnW +jnW +qMX +lCE +jnW +cVK +cGD +bIX +liC +kBi +jIf +viY +vzd +raR +muR +nOL +nOL +eKx +vUj +xUh +jMx +oWc +ufH +ufH +uVU +fKG +rAS +fKG +dxJ +hke +dxJ +fKG +sDj +cMp +lCh +tBu +lCh +qqa +mbp +dxJ +dBm +flR +tkc +oRs +sDK +pyb +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(174,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afi +afi +mQK +afi +afi +abj +akB +atS +amf +amG +amS +anC +aod +aoJ +apx +axm +arh +auu +asM +ykU +asK +qWs +axm +osS +ayD +azL +aFO +wNW +aCN +aBS +aCN +aCN +oOe +aBS +aBS +vEG +aBS +aBS +aCN +aWu +qeW +aEW +aEW +aEW +yhe +aUG +bbe +bbe +bbi +bio +bbi +kUe +bbi +bbe +bbe +qlY +wZB +wZB +vnh +cbd +cbd +xOa +bzb +cbd +bCE +cbd +ieX +cbd +cbd +qjT +cbd +bPc +vnh +gmP +jHD +kqF +kqF +kqF +olo +xuu +kqF +kqF +vei +kqF +kqF +kqF +bSz +bIX +bIX +smE +aTv +bIX +bIX +ckm +bIX +kil +kVB +xCv +gou +iAW +gEI +qFy +qSp +dqC +dkY +oyG +dlg +eAS +fLD +fYd +szd +jUH +hPI +wid +ofJ +xRX +ecz +vYR +dmr +iPy +dmr +dmr +dwD +dmr +dmr +iPy +dmr +nHS +vYR +cKV +rQi +cSF +tAl +cKY +gru +dDr +xqA +dDr +jcU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(175,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +afi +vzo +afi +abj +abj +akB +alR +esC +amH +amT +anB +aoh +aoK +apy +aqp +ari +asa +asN +auJ +asJ +avn +axm +qmM +ayD +azM +aFO +lFJ +aCN +aEQ +aCN +aHz +aCN +aEX +aBS +jRG +aCN +aOS +aCN +aWz +aRZ +vwA +afG +kVf +kvx +aSb +aSb +bfw +bei +bfD +bgP +big +bjK +bni +eNt +boK +eNt +oWb +oWb +sbf +sbf +bxA +sbf +sbf +oWb +oWb +eNt +aTE +eNt +bLh +bLh +bLh +bQV +bXC +bYL +ciA +bYH +fby +bYH +eom +lcA +rRP +bYH +bYK +kuY +blP +bYH +fby +bYH +cBh +cCY +ddk +cxn +cxn +cxn +cxn +cYP +cYP +cPO +jrZ +cPO +cYP +rro +rro +rro +rro +rro +rro +gXj +drX +qaC +gXj +gXj +dci +phP +dfr +cXJ +dHS +gPW +dnh +gPW +cXJ +mtQ +mtQ +fiC +jZi +fiC +wSy +mtQ +tNd +tlP +dnN +cKY +cKY +dEo +pyb +ixE +lQw +jcU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(176,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +hDZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afi +naY +afi +abj +abj +akB +hkA +prY +ajL +amS +aoa +aod +aoJ +apz +axm +arj +amG +amG +auO +apo +avq +axm +osS +ayD +azN +aFO +jvu +aBS +aEX +aBS +aIe +aCN +aEQ +aBS +aQn +aCN +aQr +aCN +aKK +poN +rMi +vLh +tOf +bbj +drJ +poN +bfC +ben +bgT +bgT +bgT +bjL +boD +eNt +lDP +eNt +aaa +abj +aaa +sbf +bxA +sbf +aaa +abj +aaa +eNt +bke +eNt +bLi +bNi +bPd +bLh +bSW +qRt +mrW +bYH +fRQ +hNV +cvu +cmf +erb +wHc +uuc +cmf +cvu +hBy +fRQ +bYH +lNj +pZs +cBT +cxn +iRd +iRd +iRd +cYP +jqZ +eqM +nFk +cPQ +qVF +rro +wiR +kFL +diG +daW +rro +jCz +cUd +dch +ntR +gXj +tjY +stu +wwC +cXJ +lwj +izv +hig +tiA +upi +mtQ +cnX +hZk +phN +daP +drM +mtQ +xxn +rQi +wIS +cKY +kjb +upf +dEo +mAz +fgB +dEo +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(177,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +dij +abj +dij +dij +abj +dij +aaa +aaa +aaa +abj +ach +abj +abj +aaa +akB +asJ +ajL +ajN +amU +anC +aof +apP +apA +axm +amQ +asb +asO +atS +auy +avr +axm +axp +ayD +azO +aFO +eBa +aBS +aEY +aBS +aEQ +aCN +aMf +aBS +aNb +aBS +aEX +aBS +aKK +ghx +aTz +qpq +aYg +qZu +aZv +wSa +xZn +xng +syi +iRy +qLB +xmN +kAN +bQa +bQg +eNt +aaa +abj +btL +bwq +bxB +bzc +btL +abj +aaa +eNt +bWr +eNt +bLj +bNj +bPe +bQW +bSX +qRt +bXc +bYH +fMj +hNV +lzp +nfe +nfe +dOl +kIt +kIt +mLg +hBy +cax +bYH +lNj +pZs +cBT +cxn +hKW +qMa +vrQ +cYP +eTh +cPQ +ndT +vAM +hIj +rro +cXr +jjr +lRb +ddZ +rro +hiP +kQQ +elp +npH +cJg +jHO +jyh +wwC +gPW +iOA +mZR +dkk +dlr +gDm +mtQ +eIJ +duB +dmt +dpn +sJM +fiC +cUn +xwF +nZs +cKY +upf +fkW +dsR +mnt +lQw +dEo +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(178,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +dij +abj +dij +dij +dKz +aaa +abj +aaa +aaa +dij +dij +aGW +dij +abj +adg +abj +abj +abj +akB +atS +amG +ajL +amV +axm +aog +aoL +apW +axm +are +axm +amh +amh +are +asd +asd +axx +asd +azP +aFO +aBP +aBS +aEZ +aBS +aEZ +aBS +eHF +dsH +kiv +epE +bex +qZs +aWG +ssM +aTA +tTt +hgc +riA +aZz +tIO +bfN +ben +hyS +bfA +bil +bjN +bsC +eNt +cCG +lnY +abj +btL +btL +tdj +eBR +bwv +btL +btL +abj +eNt +biJ +pBe +viW +bNk +bPf +bQX +sIA +lsO +bXc +bYH +ljq +hNV +coM +iuU +iuU +iZq +ccq +ccq +coM +hBy +dht +bYH +cEW +pZs +cBT +cxn +fgE +gLi +fgE +cYP +qfs +oCX +kcc +jri +hgA +rro +dJM +xxW +vAb +cBF +rro +hAO +qjp +cdt +eId +gXj +tjY +stu +wwC +gPW +eQP +wjw +hAj +dJE +hvl +mtQ +dAL +cAj +gIn +fpq +jHK +fiC +cUn +rQi +rYu +cKY +dEo +dEo +dEo +mAz +lQw +jcU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(179,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +aaa +abj +aaa +aaa +ace +acf +acG +aaa +aaa +abj +aaa +aaa +abj +adg +aaa +abj +abj +akB +axm +amh +amh +axm +axm +axm +aoM +axm +axm +abj +abj +acF +acF +abj +asc +azf +fxe +asd +azL +aAX +aFa +aFa +aFa +aFa +aFa +aKI +aKI +aKI +aKI +aKI +aKI +aKI +aXU +aSb +aTB +pNk +bbk +aYh +aZA +aSb +bgW +ben +bfK +bgT +bil +bjO +bbe +eNt +cCG +qET +aaa +btL +bvd +bwv +eMB +bwv +bAI +btL +aaa +eNt +sZw +eNt +bLl +bNl +bPg +bQW +bSX +qRt +bXc +bYH +cay +hNV +coM +dYK +vcM +iZq +ckL +kmy +coM +hBy +bbl +bYH +gZs +sYI +uXe +cxn +cxn +cAe +cxn +cYP +sFo +cPQ +vJb +xqw +fXb +rro +puv +aub +nxN +jjf +rro +hiP +tCF +nkB +npH +cJg +tjY +nGy +hxL +cXJ +ppp +iAH +frl +dJE +alW +mtQ +fmG +cAj +xId +lsu +szy +mtQ +rrJ +sMH +fDk +cKY +lYg +vOA +dsR +tPX +dDr +jcU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(180,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +ace +acf +acG +aaa +ace +acg +acG +aaa +ace +acf +acG +aaa +abj +adg +abj +abj +abj +akB +abj +acF +acF +abj +axm +aox +aph +apY +axm +abj +asc +asc +asc +uBS +avs +awB +axz +asd +azQ +aBn +aBn +aCO +aDX +aEW +aEW +aDX +aDX +aNk +aDX +aDX +aSw +aQv +aKJ +uaT +aTC +aZC +aWH +aYh +aZB +aSb +bbi +bes +bbi +bbe +bil +bjQ +bxy +eNt +boH +qET +aaa +btL +bve +waT +bxE +bzd +bAJ +btL +aaa +eNt +bWr +qET +bLm +bTd +bPh +bLh +kut +adt +mMh +fjd +fMj +hNV +coM +coM +coM +iZq +coM +coM +coM +hBy +cax +fjd +cqw +pZs +cBT +cxn +hGN +mkG +jfy +cYP +cYP +xUm +hqR +xGj +jgE +rro +rSM +iOD +nxN +nQa +rro +vjg +uoe +gDg +etV +gXj +eiR +stu +wwC +gPW +qhF +iAH +hAj +uVz +vCt +cXJ +fDY +mwo +gIn +lsu +gqn +fiC +cUn +rQi +wIS +cKY +psr +dDr +dEo +jKL +dDh +dEo +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(181,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +ace +acg +acG +aaa +ace +acg +acG +aaa +ace +acg +acG +aaa +abj +adg +aaa +abj +abj +aaa +aaa +aaa +aaa +aaa +axm +aoi +dZP +dZS +axm +abj +asc +asP +uOZ +auz +awF +awC +axA +asd +aAZ +aBa +aBa +aBa +aDY +aFM +aIf +aKJ +aIi +aJE +aJE +aJE +aQs +aQv +aKJ +mrQ +aTD +oZm +aWI +tdi +aSX +bYI +aVX +beq +blC +bbi +bil +bjR +bJs +eNt +cCG +eNt +aaa +btL +bvf +bwv +dIt +bwv +pZI +btL +aaa +eNt +bwA +qET +qET +eNt +qET +eNt +bTb +qRt +bXc +rIU +fMj +hNV +coM +lzp +nfe +ocx +kIt +mLg +coM +hBy +cax +rNL +cqw +wnZ +bsh +wXc +lpo +wlt +wiJ +cAf +cYP +cYP +cYP +cYP +cYP +rro +dgU +jjr +rtE +pdP +rro +gXj +drX +qaC +gXj +gXj +kGM +iHK +wwC +gPW +xpC +czB +jDu +dgM +pIP +cXJ +nnn +qsU +dlW +ddN +iTq +fiC +vcS +tlP +dnN +cKY +cKY +cKY +cKY +vEN +cKY +cKY +abj +abj +abj +aaa +aaa +abj +abj +gpC +diN +diN +gpC +abj +abj +abj +abj +abj +abj +aaa +aaa +abj +abj +abj +abj +abj +abj +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(182,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +ace +acg +acG +abj +ace +acg +acG +abj +ace +acg +acG +abj +abj +adg +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +axm +dZP +dZR +dZU +axm +abj +asc +asQ +auA +awA +avu +awD +pIa +auE +ayD +aFR +aFR +aFR +aGP +aFN +aFR +aFN +aIk +aFR +aFR +aFR +ayD +ayD +beo +aSb +aWD +aVj +aWJ +aYj +aZD +aSb +aWf +ber +blD +tvu +bim +bjS +bMn +eNt +cCG +eNt +abj +btL +btL +bwv +bxG +bwv +btL +btL +abj +eNt +bke +lgg +iLB +lnO +uNz +eNt +bQz +bVB +bVD +jOf +caA +ccr +coM +coM +coM +chF +coM +coM +coM +coL +udz +mVc +pmI +rxe +rKT +cxn +wcI +bmg +cbQ +mqy +lOZ +cGb +aht +lkt +xCf +rro +spc +vmT +evM +lZm +rMW +gYA +tTe +xno +qWr +xyV +tTe +fca +jXH +cXJ +hjN +lQH +idy +ujx +rnI +cXJ +tzb +bqR +ygY +nfl +kZe +mtQ +oOq +tXA +cSA +xOd +cKY +dHZ +cyK +fRI +diC +cKY +cKY +abj +wkK +gpC +gpC +wkK +wkK +gpC +glP +glP +gpC +abj +wkK +bws +bws +bgs +abj +aaa +aaa +abj +abQ +wwk +wwk +abQ +abQ +wwk +abQ +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(183,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +ace +acg +acG +aaa +ace +acg +acG +aaa +ace +acg +acG +aaa +abj +adg +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +axm +dZO +dZQ +dZT +axm +abj +asd +afO +asd +asd +avw +aqG +axB +auE +abj +abj +abj +mtE +aGf +gyp +aFS +hHr +aIj +mtE +abj +abj +eNt +ocr +bwA +aSb +aSb +aSb +aSb +aSb +aSb +aSb +bbi +bes +bbi +bbi +bbe +eNt +eNt +eNt +jfD +eNt +aaa +aaa +btL +btL +btL +btL +btL +aaa +aaa +eNt +bke +bWr +bWr +aeg +bke +aTE +bXD +qRt +inM +bYH +rML +coM +coM +coM +cgL +cml +ckN +coM +coM +coM +cqt +bYH +rPv +pZs +mxB +cxn +mga +pvq +cxn +cxn +cxn +nIw +xHN +pjq +ipQ +rro +uOC +vle +mZY +rJE +iRO +jsK +jsK +dNH +kwO +ekF +ekF +iHK +jhp +cXJ +cXJ +gPW +bze +gPW +cXJ +cXJ +mtQ +fiC +hrU +fiC +mtQ +mtQ +xre +sMH +uMo +dea +cKY +dCj +uMo +vgt +dFc +sbS +cKY +wkK +wkK +lMB +wWV +luE +qDv +gpC +diN +diN +wSx +wkK +wkK +mLm +hPG +aEG +aEG +bws +bws +bgs +abQ +xlu +tbK +eav +rFU +brM +abQ +abQ +abQ +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(184,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aGW +dij +dij +abj +ace +acg +acG +aaa +aaa +adh +aaa +aaa +ace +acg +acG +aaa +abj +adg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +axm +axm +axm +axm +axm +abj +asc +aqG +atV +auB +avw +aqG +axC +asd +aaa +aaa +aaa +aFR +aGP +aFN +aFR +aFN +aIk +aFR +aaZ +aaa +eNt +llR +bWr +bYU +sHd +bqK +lKI +eNt +aaa +aaa +aaa +aWC +aaa +aaa +aaa +eNt +bfL +bwA +cCG +eNt +eNt +aaa +abj +aaZ +abj +aaa +abj +aaa +aaa +bLn +rVP +bLn +bLn +bLn +bLn +bLn +vdP +poO +sfb +kxP +caC +cct +cei +uYD +iYN +kaQ +gcd +cmj +coN +coN +beB +pDk +cqw +pZs +cBP +cxn +mga +iIZ +gVD +pRL +cxn +gYQ +kUY +hOj +jqc +rro +rro +dgS +cSy +hhM +yib +bwS +rIs +uWA +uej +lvD +rIs +stu +nwK +ioI +dpB +dpB +gUx +dpB +dpB +tAa +dpB +dpB +gUx +dpB +hap +ioI +cKO +rQi +uMo +uMo +dro +uMo +uMo +kUQ +lCh +dEa +hJh +xBP +hLe +gLC +lle +gjF +iuj +nNv +hqT +mzk +osV +paM +gpC +kap +puY +rqk +nKm +oAe +wIc +gJS +tFi +rZy +brM +gWi +hzw +gOz +jZz +cla +abQ +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(185,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +abj +aaa +aaa +aaa +ach +aaa +aaa +aaa +acF +aaa +aaa +aaa +ach +abj +abj +abj +adg +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +aaa +aaa +abj +asc +aqG +aus +auC +avw +ayH +axy +asc +aaa +aaa +aaa +aaa +aaa +aFb +aaa +aaa +aaa +aaa +aaa +aaa +eNt +bWr +web +rdb +bwA +hHW +uNz +aZu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eNt +uNz +bNz +cCG +pjK +eNt +eNt +eNt +rDp +rDp +rDp +eNt +abj +abj +bLn +bHI +iXz +jpB +bNn +bPi +bLn +bTb +qRt +bXc +bYH +rpx +vaU +coM +cfX +xAW +koI +xAW +rgo +ckP +coM +rpx +bYH +gZs +sYI +gMM +cxn +mga +xRI +cxn +cxn +cxn +iOe +xHN +mIK +xaQ +oph +mrF +mrF +mrF +mrF +mrF +diJ +eCg +hJq +lHp +ruI +tjY +dUw +jkC +uiL +wYD +tad +rtV +kAf +dCo +hke +dxJ +fKG +xJL +kbw +dxJ +iLl +dxJ +nnK +lOy +pMz +cKY +xRj +rjE +dEs +dFe +dqA +cKY +sxq +qNx +smO +rwn +qNx +uhH +hLe +gLC +wIE +hLe +rzk +lCR +dqP +mTK +ooe +dfQ +hkN +kap +ycK +wwk +abQ +wRl +ffs +jJs +wSg +gWi +lzg +wwk +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(186,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +acp +abv +abv +abv +aci +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +asd +asR +asc +auZ +awE +azS +axD +asc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eNt +xha +bWr +hHW +uOa +bWr +gbO +eNt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eNt +wIb +aKm +fKN +bwA +wzJ +ahh +gxu +bfH +ume +uaL +rDp +aaa +aaa +bLn +ieC +bLp +wbd +bLp +bPj +bLn +bTb +qRt +bXc +hTV +hTV +hTV +hTV +hTV +hQJ +cjh +bYR +hTV +hTV +rmw +llp +bYH +cqw +pZs +cBP +cxn +mga +vsc +uew +epF +cxn +kUW +kUY +lMH +aBE +oEy +gbi +ngW +sFB +xGf +rbM +fNw +tTe +vkA +edY +xPs +tTe +stu +eUH +vYR +dmr +rQi +dmr +dmr +vTJ +dwD +lkK +mEV +wPH +vTJ +dmr +vYR +dmr +qTY +nHS +ntt +cKY +diz +ilP +imx +gBH +nch +cIh +whX +wUr +oeP +nOP +hvE +osV +osV +vLX +gMI +xpI +qpf +gQm +gWi +cYg +nBC +xIQ +xzr +pRP +rqX +xXc +lCy +nLi +xzr +tox +pOp +jmJ +iTK +wwk +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(187,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +abj +aaa +aaa +aaa +acj +aaa +aaa +aaa +acF +aaa +aaa +aaa +acj +abj +abj +abj +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +asd +asS +asc +avv +avv +mOB +axE +asd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eNt +xKE +bwA +rdb +bWr +shB +frN +aZu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aZu +mmC +bNz +cCG +pjK +bHZ +pjK +eNt +bfH +ume +oeH +rDp +aaa +aaa +bLn +uMM +bLo +bLo +fxX +bPk +bLn +bTb +qRt +bXi +hTV +caF +eKO +chJ +cfZ +ctV +chJ +chJ +cmm +hTV +coP +cqu +bYH +baL +cuv +cvX +cxn +cxn +cxo +cxn +cxn +cxn +xWz +aGs +cGb +mqR +ihb +gbi +gTS +mkJ +nUx +neI +kTR +scR +fSX +fEJ +ekF +ekF +iHK +pey +hTW +wyX +hpX +dhe +nSC +wvy +dhe +nSC +nSC +nSC +rQD +nSC +nSC +iMT +ieo +omV +omV +omV +cKY +vse +whX +whX +qZA +txW +whX +whX +gpC +gpC +wkK +gpC +gpC +wkK +wkK +wkK +wkK +prI +iWV +xaX +kgy +rLW +ird +aDy +tmY +ila +abQ +lWq +nkp +bdG +rgY +cqI +chV +wwk +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(188,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +dij +dij +dij +abj +ace +aco +acG +aaa +aaa +adz +aaa +aaa +ace +aco +acG +abj +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +asd +asT +asd +auE +asd +aTE +asd +asd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eNt +eNt +bYa +eNt +jhk +eNt +jhk +eNt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eNt +mmC +bHZ +fKN +jqI +bwA +aKm +aZu +uvD +bOl +fmg +rDp +aaa +aaa +bLn +bHK +bLp +rtm +bLp +bPl +bLn +bTb +gSY +hVa +vXl +qwd +oEK +uxv +qiB +coo +chJ +chJ +oOU +hTV +bYH +bYH +bYH +cwa +qRY +cJc +cnP +dAf +klf +klf +duh +cnP +cFg +fAW +ixf +ixf +pky +gbi +qXD +qRc +wQQ +rbM +yff +vFy +dtz +toO +dtz +qvp +emi +fVX +nSC +pfe +qbN +pYo +tJa +uNv +aHO +bqo +nSC +qDX +xEW +mbC +nSC +mQD +qCv +qYm +bhC +omV +ijG +mtC +whX +dfA +rKO +gbZ +ojt +whX +nNb +dYl +abj +abj +abj +abj +aaa +aaa +abj +wkK +qVD +cYg +kUE +puY +jLt +eyn +mfB +nVz +kfl +wwk +wwk +wwk +wwk +abQ +abQ +abQ +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(189,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +ace +aco +acG +aaa +ace +aco +acG +aaa +ace +aco +acG +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +acF +aaa +acF +abj +eNt +bWr +bwA +eNt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eNt +iXL +wzJ +ahh +bNy +fFE +bNy +eNt +eNt +eNt +eNt +eNt +eNt +aZu +eNt +eNt +bNz +bHZ +cCG +bHZ +pjK +bHZ +bHZ +aZu +aZu +eNt +eNt +abj +abj +bLn +uFf +dDN +dDN +dDN +gKA +rNi +sKy +ydm +mMh +jol +chG +eeW +cem +gQg +chL +cga +ckR +cjb +hTV +coR +cqv +kGm +jtV +cux +toK +cxp +cBP +cBP +cBP +wTL +cnP +jSd +hhF +bLF +ixf +kUY +gbi +gbi +gbi +gbi +gbi +gbi +uSM +gbi +nTE +nLC +iol +nLC +nTE +nSC +lPy +dYX +gto +oMf +uwf +fzn +gwk +wTx +uqn +vFB +wah +nSC +yeb +qCv +fZJ +lBT +omV +keu +xRw +whX +cZI +kZg +dwK +aKF +whX +tVX +btf +whX +whX +whX +abj +aaa +abj +abj +abj +bws +bws +oVN +cqI +vUm +wWQ +ooe +uME +vLp +uXU +vSF +rul +skK +acF +acF +acF +acF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(190,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGW +abj +ace +aco +acG +abj +ace +aco +acG +abj +ace +aco +acG +abj +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aZu +bwA +vXI +eNt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eNt +vmw +bwA +vmw +vmw +vmw +mAy +lYz +sgM +cEv +hKr +ngX +saC +bNH +saC +sgM +ngX +kYX +pqQ +pYb +vrH +pjK +pjK +bHZ +aKm +vgU +eNt +aaa +aaa +bLn +bHM +xKV +bNr +bNr +rTF +bRa +dAg +tYa +bXc +xjx +uMC +eeW +cen +iKe +chM +chG +chJ +cmo +hTV +coR +cqw +crW +crW +nph +cxd +crW +crW +crW +cBP +uHq +cnP +xOV +mTi +hhF +ixf +jNp +ixf +iCy +oKN +dnm +tXq +kOE +tQD +taH +nTE +pfu +oIQ +hrW +qgK +nSC +azw +olT +olT +olT +eag +wDq +dpG +rQD +dJk +dJk +itv +nSC +kWa +aXY +lDc +mgx +omV +jZO +nRQ +whX +cZF +vma +ejn +ojt +whX +dsI +pGz +daZ +hTj +iJq +abj +abj +abj +abj +aaa +aaa +bws +qVD +brM +hGZ +cYg +lhb +mQL +kaS +abQ +abQ +abQ +abQ +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(191,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +ace +aco +acG +aaa +ace +aco +acG +aaa +ace +aco +acG +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +acF +aaa +eNt +bxP +bez +aZu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eNt +lAG +bwA +wZe +wzJ +ahh +cCG +tpP +jhk +vmw +bNy +bwA +wzJ +ahh +bwA +eNt +eNt +rDp +eNt +rDp +eNt +eNt +xGw +bHZ +pjK +sUt +eNt +aaa +aaa +bFV +bHN +sYQ +bLs +bNs +bPo +www +nDu +qRt +tQs +hTV +xuX +qzu +tkj +pzX +chN +dIv +tnr +xPW +hTV +coR +cqw +crW +ctn +nph +crW +crW +cDo +crW +cBP +tIr +cnP +kHw +xVX +hhF +boG +kUY +psD +bvP +fBF +fiJ +nda +jKj +lPi +ovF +nTE +qTE +bxc +vyK +mpz +nSC +hUT +vDp +ewd +lEt +gJg +usY +lvU +dlj +bdv +xWO +jSE +nSC +ogZ +drV +dgE +nAV +omV +rfB +rUQ +whX +whX +sMY +hvw +whX +whX +wFT +pfT +hhf +umr +meB +uTg +abj +abj +aaa +aaa +aaa +aaa +bws +xUX +kap +bKb +rdn +hci +cEq +lQk +qxt +pPl +bgs +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(192,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +ace +acE +acG +aaa +ace +aco +acG +aaa +ace +acE +acG +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +joi +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +eNt +nyK +bwA +aZu +aZu +eNt +eNt +eNt +aZu +rDp +rDp +rDp +aZu +eNt +eNt +eNt +eNt +bwA +vmw +eNt +aZu +aZu +ebf +orL +sBN +aZu +bwA +bwA +oeG +bwA +bwA +eNt +aaa +aaa +aaa +aaa +aaa +eNt +ffz +fPJ +bwA +pjK +eNt +aaa +aaa +vkr +bHO +wPa +bLt +bNt +bPp +lAU +bAN +qRt +tQs +hTV +hTV +hTV +hTV +hTV +hTV +hTV +hTV +hTV +hTV +coR +cqw +crX +cto +cuy +crW +cxr +cyN +crJ +cBP +jez +cnP +csi +csi +cIa +csi +lsz +hhF +uvQ +fnc +ixf +ixf +cMG +jvC +sdm +nTE +bxe +ahl +hrW +jjN +nSC +nSC +nSC +nSC +nSC +nSC +nSC +nSC +nSC +nSC +nSC +nSC +nSC +omV +pjS +vnp +omV +omV +qmw +itt +whX +cIh +ddu +whX +whX +xXh +nHh +miZ +hkE +iFx +dsO +rTi +rvR +abj +aaa +aaa +aaa +aaa +jyJ +jyJ +jyJ +jyJ +fzL +cxQ +eee +iKY +aEG +aEG +bgs +abj +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(193,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +aaa +abj +aaa +aaa +ace +acE +acG +aaa +aaa +abj +aaa +dKz +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +acF +aaa +eNt +uNz +vXI +bWr +ahh +bwA +wjm +ahh +ahh +qxv +eOQ +wdH +bWr +bgU +cPG +bwA +cPG +bWr +bwA +eNt +uNz +bwA +lAG +bWr +fGi +aZu +lAG +lAG +bWr +bwA +jRa +eNt +aaa +aaa +aaa +aaa +aaa +eNt +eNt +bwA +pjK +bHZ +eNt +aaa +aaa +bLn +bHP +dMA +bLx +exe +bPs +bLn +bAN +qRt +caz +bYM +caK +ccC +ceq +cgS +bYM +cqI +cqI +bqj +cnP +cnP +cqx +lgO +ctp +xKs +crW +cxs +cyO +crJ +cBQ +cnP +cnP +guw +rMw +hNq +csi +lLS +qZk +xLa +fhQ +cMF +pBQ +wYP +vey +vVL +nTE +giY +ajK +xhz +nEq +cIx +tNT +cWj +djh +xqC +cIx +vMM +oVS +bsQ +ktr +eHW +vWK +hQV +omV +omV +omV +omV +frf +eRI +iYK +whX +qGo +oZp +fFU +mAW +dyL +xxp +ikw +nIl +cSn +xbW +kDE +juL +aaa +aaa +aaa +aaa +aaa +rXE +mTo +kbP +kgY +brM +spk +vzp +iKY +tWx +dPI +bws +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(194,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +dij +abj +dij +dij +aaa +aaa +abj +aaa +aaa +dij +dij +abj +dij +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaZ +eNt +lKI +bwA +bwA +vmw +wzJ +vmw +bwA +bwA +wzJ +ahh +wzJ +ahh +bwA +bwA +llm +ahh +ahh +bWr +bWr +bWr +bWr +jhk +bWr +bWr +eNt +fHK +oeG +oeG +evx +eNt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ipP +aTE +btT +btT +btT +bsH +bsH +bLn +bLn +bLn +bLn +bLn +bLn +bLn +wXF +jby +bsD +bYM +qiD +xxQ +hlW +jPE +bYM +mKQ +cqI +cqI +cnP +coS +cqy +uKK +ctq +cuA +crW +cxt +cyP +crW +cBT +cDm +cnP +cIb +cGP +cIb +csi +ixf +ixf +myP +ixf +ixf +bvP +gUg +kTs +fPh +nTE +rZS +bqH +hrW +uEw +cIx +cXV +xpL +tEs +cNa +cLG +luJ +cNa +pOh +vlS +uBg +rxC +bSV +mAB +uGc +hrQ +hrQ +raP +pTE +dxg +whX +giE +sDS +wYQ +mnK +nPi +dct +ejp +dnQ +cyH +cVM +bpY +aNB +aaa +aaa +aaa +aaa +rXE +rXE +qEO +qvr +kgY +sYj +fKv +oNY +iKY +wGh +diy +qVD +bws +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(195,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +dij +abj +dij +dij +abj +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acF +aaa +acF +abj +eNt +vmw +jUO +eNt +aZu +eNt +eNt +vmw +eNt +bYa +eNt +vmw +vmw +eNt +aZu +eNt +eNt +eNt +aZu +eNt +eNt +tpP +vmw +szZ +pSO +eNt +pWt +wMt +wzN +now +eNt +aaa +aaa +wBK +wBK +wBK +wBK +wBK +wBK +bny +bny +wDd +lhQ +bny +bny +bLy +bMc +bny +ilZ +bny +bny +bny +bny +tPh +lnZ +bYP +trv +ccD +cer +cgf +bYM +fho +ckX +sQa +cnP +coS +mKd +crW +lQA +crB +cwd +crW +cyQ +crW +cBT +hZL +cvV +cFm +cGQ +ujq +csi +gss +qmT +gqt +mgK +ixf +tLi +mhy +hhF +dBo +nTE +nTE +nTE +kOA +nTE +cIx +mkb +kfP +cRY +iOs +bdK +jjx +uid +nWI +tMF +lBW +lyQ +pKP +itO +oDH +fkE +ahj +xBx +eNn +dFG +dFG +tld +lhF +tld +sfI +sfI +qwI +cYM +plL +dfw +cKN +dCg +whX +aaa +aaa +aaa +aaa +rXE +mCt +eJJ +rXZ +jyJ +wfX +tIo +wGh +bgs +oCs +wUm +ikQ +bws +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(196,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eNt +iRa +bWr +eNt +aaa +aaa +eNt +qOd +bWr +bWr +vId +bWr +ydY +eNt +aaa +aaa +abj +aaa +abj +aaa +eNt +wBK +wBK +wBK +wBK +wBK +wBK +wBK +wBK +wBK +wBK +ojg +wBK +wBK +pQj +lrg +ifS +yfx +aQE +btV +bxJ +wuO +bxK +fEO +nAW +wwx +wwx +riP +gtC +bNx +gJk +jfN +jfN +bVp +lsv +bYN +caM +hOL +ces +chK +bYM +cjm +brM +cmr +cnP +coT +fIf +tkO +cts +ykw +gqN +gqN +cfF +gqN +kgp +kGs +cuw +xNW +nKw +uGe +ceo +boG +mgK +oJQ +xLK +uvQ +pHK +fxV +pgK +fYN +xNa +vRa +fBX +hhF +iKC +cIx +xBI +cMY +pla +gmN +cLG +xBX +omQ +dBp +uCO +wBU +elz +oGX +mAB +naN +gGq +qlZ +dFG +dFG +dFG +wmx +pxJ +gOk +eXH +uIL +sfI +qvq +cYM +fOF +aXO +aXO +fOF +whX +aaa +aaa +aaa +aaa +rXE +kwe +bIf +etw +jyJ +tAT +uWR +vzp +bgs +dpt +fwP +fwG +bws +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(197,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eNt +eNt +eNt +eNt +aaa +aaa +aZu +lAO +wul +bwA +wul +bWr +bWr +aZu +abj +abj +abj +abj +abj +abj +abj +wBK +lsC +pYk +cAO +ipP +kIC +xGG +bhB +ipP +kXm +xff +cAO +wBK +sNN +tdA +pka +tdA +lIp +xgA +xgA +nKs +xgA +dmA +xgA +oiI +xgA +xgA +nKs +xgA +xgA +xgA +xgA +bNI +lsv +aHr +bhf +hDP +cet +cgh +bYM +bqj +brM +cqI +cnP +coT +cqB +csa +coW +cuD +cwf +cxw +cyS +cAm +cYh +lEw +rOz +ekH +xhF +sfl +csi +xjh +gFX +sZE +sJZ +vHZ +boG +mhy +jeE +hhF +hhF +wqU +hhF +hhF +hhF +cIx +uUt +pMg +xGI +wTI +cIx +cIx +orw +fjO +xVk +fjO +uNH +mSZ +nBc +nBc +nBc +nBc +dFG +oCv +aGe +dNt +gpb +hak +xXJ +fuv +tld +qwI +cYM +kga +dgV +dsb +dqE +whX +aaa +aaa +aaa +aaa +rXE +ngc +nHT +lUw +toG +dvH +gYq +vjc +qtv +wpg +kjn +qbB +bws +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(198,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +aaa +eNt +xZU +bWr +vId +hpH +kTw +fLZ +eNt +abj +aaa +aaa +aaa +abj +aaa +aaa +oPj +fSx +xVq +rIx +rpF +gRm +bPF +gRm +nFM +rIx +vYL +rIx +rpF +fBr +jKd +nyq +nyq +nyq +nyq +nyq +nyq +skW +hBe +xlZ +nyq +hKT +ozs +bZF +uxJ +hKT +kJY +xgA +gLa +lsv +bsG +iDa +qdh +fqo +cgi +bYM +cjo +cmr +brM +cnP +cnP +cnP +qBe +cnP +cnP +cnP +yfP +yfP +yfP +yfP +yfP +yfP +eKD +qfd +ucQ +npk +npk +npk +npk +npk +npk +hhF +mhy +hhF +tLi +tLi +tLi +eax +uvQ +hhF +cLG +nBm +cNa +iRN +cNa +iQK +cIx +ryd +ryd +ryd +ryd +cIx +eVf +nBc +kLw +qin +uKs +dFG +owW +mRK +yic +vVp +ugr +yic +fVJ +tld +bih +pfT +wCF +oyt +kzn +ycb +iJq +aaa +aaa +aaa +aaa +rXE +mPZ +jyi +tpc +jyJ +wGh +hJM +vzp +aEG +qbB +oih +qVu +bws +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(199,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +eNt +bWr +weH +weH +eNt +rDp +rDp +eNt +aaa +aaa +aaa +aaa +abj +aaa +aaa +wBK +osD +ooI +jNz +ipP +bEL +toQ +jNz +ipP +hEX +ooI +rwh +wBK +vNh +drq +dAe +tEi +hFj +bvl +nlB +fUV +fob +ceF +vTq +nyq +gme +cjw +szx +cgr +hJo +hKT +hNR +jpn +mSU +bsG +jCU +bka +bka +caH +bYM +veK +brM +brS +bgs +coU +cJn +ctc +cqI +brS +cqI +yfP +bEY +emI +pxP +cDq +yfP +fLx +jTS +rqo +npk +uGp +aHQ +cOp +aGr +npk +eQv +hUh +hhF +ixf +ulI +gmC +qBo +boG +gnn +obk +cNa +cUc +jag +lDq +cGi +kpp +juU +uzU +ohw +qJk +phR +nBc +hqo +iqf +doZ +rzb +qlM +ukk +ftl +lVR +ooD +ioU +xsu +knR +tld +aUx +ljY +xsE +mrn +elg +kDE +wbt +aaa +aaa +aaa +aaa +rXE +fxN +weX +wax +kgY +mMm +kwD +puY +aEG +cmG +jUG +rWw +bws +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(200,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +eNt +xRD +eNt +aZu +eNt +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +wBK +wBK +iAe +rpF +wBK +wBK +qPi +rpF +wBK +wBK +ipy +rpF +wBK +yhT +sFp +nyq +vlD +tTJ +btY +mqG +nyq +gPS +cmD +qEU +fou +gtc +uRg +mOS +bjg +hzJ +xBA +oaR +nEM +fQJ +bsG +bXV +bXW +ryK +cgk +bYM +cjq +brM +brM +cuI +brM +rDi +tsQ +pCq +nmR +cqI +yfP +cyU +pPL +umf +uMd +cEt +gLB +hVj +oHO +jHd +hHx +aHB +cOq +cQe +npk +mAp +cke +boG +ixf +qHx +uHS +jyK +ldC +boG +cLG +nhI +oPo +xdH +cNa +wdX +kpp +uxu +bBn +vYg +udb +whM +nBc +nBc +nBc +nBc +nBc +dFG +sPI +vWU +sPI +sfI +kfU +yic +nzS +sfI +sVQ +vpQ +sDF +cBJ +hZD +jOZ +ihz +aaa +aaa +aaa +aaa +rXE +rXE +qvr +fyS +kgY +aHk +xtj +xSV +aEG +kEX +cqI +bws +bws +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(201,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +eNt +aZu +eNt +abj +abj +abj +aaa +aaa +abj +aaa +aaa +aaa +abj +aaa +aaa +ojg +eqc +vUG +lrg +mxd +xnK +vUG +lrg +yfx +miL +vUG +lrg +xcP +upO +vxH +yfs +hFq +dzu +lHb +uhp +bqM +dsa +inE +qEU +hIQ +qwK +vUg +tVj +pTk +jBk +wAd +wwR +tUU +wQp +bsG +bsG +bsG +bsG +bsG +bsG +muX +muX +muX +bgs +bqj +oQq +bgt +axb +trG +brS +yfP +cyV +sko +nwm +qSo +yfP +vmm +eRa +jym +npk +cLo +cMM +rrk +cQf +npk +hhF +nuF +boG +ixf +lxV +dka +jyK +eZz +boG +vxn +vxn +xNl +qxB +cLG +xGA +kpp +chy +ngQ +elr +qJk +qJk +qJk +abj +abj +abj +abj +dFG +tCL +gaU +cZZ +sfI +jSb +yic +xLg +sfI +qUJ +ejp +hhf +dqJ +ttS +ihz +aaa +aaa +aaa +aaa +aaa +aaa +rXE +ipT +fQg +kgY +uME +xtj +brM +aEG +xui +fHM +bws +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(202,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +aaa +abj +abj +oEG +aaa +aaa +aaa +aaa +abj +aaa +aaa +wYu +nWy +sBg +ykT +iTw +djm +lvO +ykT +ykT +cMb +lvO +ykT +cHJ +ykT +iMa +cID +dno +rGZ +wis +gcP +bPz +lXP +qrE +lyJ +vQg +iWX +xsR +omJ +xsR +jhD +nBF +oaR +nEM +off +iVy +oTm +jmF +vPY +iVy +xEB +jmF +pHe +muX +brM +ctc +oQq +csd +bqj +fPV +brS +yfP +cyW +tFf +cFr +wbk +yfP +ctx +rfK +cIi +npk +oUP +ovl +vGH +iQt +npk +hhF +oBX +hhF +ixf +bNC +tfZ +hhF +eJl +gnn +tLi +gpa +hhF +itT +hhF +boG +kpp +kLf +uge +pBA +qJk +abj +abj +abj +aaa +aaa +aaa +sxb +wbf +kxX +dOd +sfI +xbC +nYh +tqS +sfI +jzE +ejp +dlk +cJl +aNB +abj +aaa +aaa +aaa +aaa +aaa +aaa +jyJ +jyJ +jyJ +jyJ +mYq +xpD +uZr +iKY +bgs +bgs +bgs +abj +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(203,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oEG +abj +abj +aaa +abj +abj +aaa +aaa +wBK +wBK +bsA +rpF +wBK +wBK +gwI +rpF +wBK +wBK +hti +rpF +wBK +ygp +rwg +nyq +qAh +kZm +hsK +woQ +nyq +deT +oLg +qEU +eQE +jou +xIe +dHl +pAK +qnC +hKT +wUX +hyT +fWF +iVy +oPw +msu +wZR +iVy +oPw +cGB +cmy +muX +fyJ +tsQ +fMZ +cse +bgs +oQq +cjm +aFx +aFx +aFx +aFx +aFx +aFx +nLL +rfK +uzO +oNd +oNd +oNd +oNd +oNd +oNd +jfV +fsO +boG +qxk +jyK +mNf +eJl +hhF +iHU +tLi +efp +gnn +phO +umY +loS +kpp +kNU +trS +xGP +qJk +abj +aaa +aaa +aaa +aaa +aaa +dFG +nNB +sAP +pRY +sfI +sfI +sfI +sfI +sfI +lPW +cup +whX +whX +whX +abj +abj +aaa +aaa +aaa +aaa +aaa +bgs +ltQ +juo +bgs +cYg +kwD +cqI +iKY +uyi +njV +bgs +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(204,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +aaa +aaa +aaa +wBK +gnk +ooI +rwh +ipP +wYL +ooI +jNz +ipP +fkK +ooI +rwh +wBK +qct +kMu +dAe +jIO +vHf +wMZ +yki +fUV +oNe +nvW +qsq +dDq +aym +tDs +jIs +wkN +fLB +hKT +oaR +tdF +xeO +iVy +emK +ahP +emK +iVy +emK +gYB +emK +muX +eDh +cqI +cqG +csf +bgt +kGr +bqj +aFx +moT +cAp +tXj +wtE +bmW +cGS +xVZ +cWh +eaa +edQ +cMO +aKh +cQi +oNd +eZz +mhy +gnn +ixf +uvQ +qov +rFZ +ixf +boG +eEl +ixf +ixf +nYe +hhF +qJk +ufa +kGy +oJT +hCx +qJk +abj +aaa +aaa +aaa +aaa +aaa +whX +fOF +fOF +fOF +fOF +lHz +rLs +mHA +kSQ +drT +aEk +whX +abj +abj +abj +abj +abj +aaa +aaa +aaa +abj +bgs +jRY +tOS +dvz +nVz +dZe +mUU +eVl +iuF +oBx +bws +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(205,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +aaa +aaa +oPj +fSx +pKK +rIx +rpF +sNN +njn +sNN +nFM +fSx +pKK +fSx +rpF +fvc +jaY +nyq +nyq +nyq +nyq +nyq +nyq +cXS +dnd +dAe +nyq +vlj +hKT +wdQ +hKT +uXC +kjm +oaR +nEM +off +iVy +plb +emK +nHv +fWp +aQi +lCD +vYI +muX +eDh +btS +cqI +brS +bgs +kGr +cmq +aFx +cyX +sVG +hQt +aKk +aFx +cGS +rfK +cWh +oNd +eyN +aKi +cQh +aHA +oNd +iHg +mhy +hif +boG +ixf +hco +ixf +uvQ +kVr +gnn +boG +boG +kzR +gnn +sXA +gRr +oDB +dzn +oDB +gVG +abj +aaa +aaa +aaa +aaa +aaa +whX +aaH +dmk +srZ +xYp +xlc +nSV +nSV +cyD +jXF +mFh +whX +aaa +aaa +abj +abj +abj +abj +aaa +aaa +abj +bgs +fGc +soV +aEG +ycK +rzq +vzp +iKY +hDH +isA +bws +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(206,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +wBK +kQN +oSD +pYC +ipP +wTo +uAD +pYC +ipP +kzt +qLG +tDR +wBK +sPc +iKH +wBK +pqh +wiM +gTe +peY +fcv +gTe +niB +gTe +sKX +ybO +uNy +ykX +mKU +iBn +gTe +bTn +nEM +rCj +iVy +eqH +imZ +imZ +iuA +imZ +imZ +rvJ +muX +iie +bgs +csb +bws +bgs +vNq +cmr +aFx +cAs +cAs +cAs +cAr +oll +vQh +jZT +vJt +pKe +cUb +cBV +ork +wHH +oNd +uvQ +hUQ +rfQ +xFE +rfQ +riV +snC +snC +xFE +fRG +xFE +rfQ +rpC +xFE +bdq +xQj +tsP +nFd +oDB +gVG +abj +aaa +aaa +aaa +aaa +aaa +whX +cSE +cbH +dEr +dki +lQf +qBw +nXD +wtV +lzG +whX +whX +aaa +aaa +aaa +abj +abj +abj +abj +abj +abj +bgs +dvz +aEG +aEG +cYg +ott +cqI +iKY +uyi +lYd +bgs +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(207,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +wBK +wBK +jhH +wBK +wBK +wBK +jhH +wBK +wBK +wBK +jhH +wBK +wBK +kWd +bqV +wBK +gib +qCw +dTU +fyk +aCT +dTU +gfY +aCT +vMO +jBO +lwn +sJL +dTU +uST +dTU +dTU +xEC +kWD +ljM +wRE +iTC +pfg +fih +pfg +fuM +oRL +muX +iie +bgs +cqI +csh +bgs +wqN +cmr +aFx +cyY +cyY +cyY +nra +dZE +xTE +eRa +gXh +pNl +cIj +oFL +oFL +aLE +oNd +oYN +mNS +ixf +uvQ +hhF +qBo +uvQ +hhF +nKZ +kVr +dBo +ixf +phO +kVr +sXA +kGy +oDB +mhv +kGy +gVG +abj +aaa +aaa +aaa +aaa +aaa +whX +heU +jOl +mcQ +fOF +dtf +got +wyC +uTw +drZ +pLI +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +bws +cjt +iYo +sol +iYo +nCy +rGQ +bgs +bgs +bgs +bgs +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(208,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +aaa +abj +abj +abj +abj +abj +abj +abj +sQe +lpe +jEo +tsd +qQL +bLK +oaR +lEP +fnT +tQS +hLf +hLf +hLf +hLf +xqb +hLf +hst +hLf +hLf +qcK +lcV +noJ +jFs +nkm +iVy +dsc +hwR +vsi +vsi +vsi +kNe +hiT +muX +dCD +bgs +vYm +hlC +bgs +wUM +cqI +aFx +cyZ +iPd +xnx +gUi +aFx +tvI +suE +cWh +oNd +pBc +cIk +tsc +cQj +oNd +oeN +mhy +gnn +boG +wqU +hhF +gnn +kVr +boG +hhF +gnn +boG +itT +hhF +loS +qJk +wCJ +ndr +iNL +kpp +abj +abj +aaa +aaa +aaa +aaa +whX +cUa +tEx +dEq +wmB +rCz +fPM +sRE +lvb +emF +fPU +abj +aaa +aaa +aaa +aaa +aaZ +abj +abj +abj +bws +qVD +prg +cqI +giU +cqI +xaX +tNU +gJS +cpJ +kkX +bgs +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(209,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +rbf +rbf +uoR +rbf +rbf +wij +sAN +wij +uXf +uRt +gYJ +bLK +trX +far +kwr +vBg +nWC +vBg +nWC +vBg +jhv +duP +vBg +xcz +vQN +hjl +vBg +res +dhd +dvM +iVy +wuX +cKZ +hpo +fSZ +hpo +tuQ +wuX +muX +eDh +bgs +cqI +lDS +bgs +opM +cwk +aFx +cza +cAs +cAs +qqh +bmW +kQm +eLI +ibt +eaa +cLr +cIk +xBs +lSa +oNd +taT +mhy +hhF +tyI +ixf +qSX +qxk +qSX +ixf +oRB +hhF +gnn +phO +hhF +hhF +loS +qJk +qJk +qJk +kpp +qJk +abj +abj +aaa +aaa +abj +whX +rTe +tlf +eCa +knU +wXE +ttD +qKk +kZp +kNk +lwx +abj +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +bws +gJS +kwD +kap +cjp +bgs +bws +xkZ +bws +bgs +bgs +bgs +abj +aaa +dij +dij +abj +dij +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(210,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +rbf +hoh +oxq +wjk +rbf +pyd +eSx +iBt +dJh +gyL +oGt +bLK +veF +rpE +off +vBg +bci +svf +mmY +jWj +nRd +sSw +xIf +lJd +sQs +dus +vBg +oaR +gSg +off +iTG +iTG +iTG +bCP +bCP +bCP +iTG +siM +abQ +mAw +bgs +bgs +csi +csi +hUL +csi +aFx +aFx +bmW +bmW +aFx +aFx +eKD +qfd +ucQ +oNd +oNd +eaa +eaa +oNd +oNd +csi +rfS +csi +csi +csi +hhF +wua +wua +ixf +ixf +fDS +boG +uft +xFE +pCC +nBN +ixf +vtv +tYB +ixf +ixf +ixf +abj +abj +abj +abj +whX +whX +whX +whX +whX +whX +enH +agI +rkf +whX +whX +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +abj +bgs +rOG +kwD +gWi +vzp +bgs +qIz +hzH +qIz +pAT +hJd +rSb +abj +abj +abj +abj +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(211,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +xdX +eyP +gcZ +emh +rbf +laY +jda +vhs +nKI +uRt +nfX +qUI +oaR +lEP +off +qDP +nYT +tEH +xsg +eYD +sLI +rLn +eYD +cep +eYD +bep +lMA +oaR +jFs +off +iTG +jvM +phT +qVU +mwp +knI +eyJ +siM +sRJ +iie +ipj +miY +csi +xpq +cuK +uGY +iVg +xql +cAt +cBZ +hEU +mYH +fLx +cGX +rqo +jbW +fRm +gkj +cOs +cQk +cRA +rZD +siY +cWe +uHo +csi +hhF +fIy +qSG +wua +ixf +ixf +mAp +gnn +hhF +nYe +gnn +qxk +gfF +wPu +kWz +uXV +vCU +acF +acF +abj +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +bws +qVD +uME +nMl +cqI +iKY +bgs +plp +tTp +feK +rKg +bgs +bgs +aaa +aaa +abj +aaa +abj +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(212,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +dXz +swy +pdW +kHA +mhu +uTA +pKv +sBx +fYP +jOr +nfX +hWM +smr +raT +off +fVI +hkR +njM +xvf +tXu +ayF +sNr +ezx +njM +ezb +exS +flL +oaR +vJi +rCA +enC +wiL +dTs +ihG +ihG +ihG +xhN +wVI +hIK +xxc +cqI +peD +csi +cty +wSl +xwz +jAn +jAn +jAn +jAn +jAn +oae +olj +cIs +qfX +olj +lkf +lkf +lkf +olj +stG +qfX +kCy +qvE +cJz +csi +wua +gnH +qSG +ltA +hco +dXu +gnn +hhF +hhF +rxa +ycZ +ixf +vmL +vmL +ixf +ixf +ixf +abj +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +aaa +aaa +aaa +aaa +bws +qKB +brM +nMl +cqI +iKY +adA +acs +vmC +xTo +gDY +bgs +abj +abj +abj +abj +abj +aSC +abj +dij +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(213,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +aaa +jYv +pFO +wRa +ksz +rbf +laY +nxy +euk +tAn +lvu +pau +bLK +sDq +eTQ +lfo +vBg +lSQ +bvh +eeh +aaj +xcj +wKf +knW +kQd +nXw +uHJ +vBg +sDq +lgJ +lfo +pOZ +hnJ +ybV +iHp +lAq +xkw +nri +siM +bgs +bgs +fTX +bgs +csi +cty +wvn +quv +cuM +wwX +cEw +cFz +cFz +bzC +cJA +cLt +cTe +xSg +bAm +fmS +fmS +usR +uGe +cTe +cOt +cOt +cJz +csi +wMc +kTm +mJi +iUT +hco +gko +uKC +vUn +kVr +ewM +hhF +tAW +ixf +lfi +hVr +fMS +qSX +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +fEv +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +aaa +aaa +bws +qrq +brM +nMl +brM +bgs +adA +mfI +eAb +hcY +eAb +bws +aaa +aaa +abj +aaa +aaa +jtN +aaa +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(214,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +qZg +qZg +rbf +tYs +rwX +bJK +rbf +lrz +vTi +uOM +nxy +dgi +nsd +jgZ +nZo +kfZ +sPP +vBg +gwc +vBg +vBg +vrM +gNh +qoW +aud +vBg +gwc +vBg +vBg +oaR +lEP +dia +iTG +mQE +oHn +pAu +jGe +wtP +wbW +siM +fda +cqI +cqI +ukb +csi +ctA +fmc +ubW +cuM +cDr +cEx +scH +nsi +uMu +cJB +cLu +cuM +xSg +hQq +vUX +vUX +nIH +uGe +cuM +cUH +cOu +nFv +csi +pss +jKo +lMl +hhF +qSX +gpK +uYg +rux +gnn +ewM +kVr +gnn +tuF +hhF +vve +rZH +qSX +qSX +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +fEv +fEv +abj +aaa +aaa +aaa +aaa +abj +iKY +iKY +iKY +iKY +aEG +aEG +aEG +xUg +pkv +pGn +bgs +aEG +xgs +xOQ +tUW +pAT +bws +aaa +abj +abj +abj +dak +jzK +dbc +abj +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(215,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +qZg +qZg +qZg +nwW +rbf +rbf +rbf +rbf +rbf +wCZ +wCZ +bLK +vGb +ukJ +irM +bLK +oaR +lEP +off +ulm +vnV +vnV +vBg +vBg +ftp +fkv +vBg +vBg +vnV +vnV +hKT +edc +lEP +off +siM +siM +siM +siM +siM +siM +siM +siM +siM +jyT +sME +jyT +csi +cFK +fmc +ubW +cuM +cDr +cEx +cze +cze +nae +cJB +cLu +cuM +xSg +ema +vUX +vUX +nIH +uGe +cuM +cUI +cWf +cAu +csi +mAp +dcN +boG +xLj +vlv +jZg +nVT +gnn +hhF +rxa +hhF +boG +ixf +jCO +pRX +hhF +pPQ +ixf +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +iKY +lkZ +gMW +iQw +brM +wTf +kap +brM +kwD +kap +cjm +bXX +ePX +onR +jIg +gmG +bgs +aaa +aaa +abj +aaa +dak +jzK +dbc +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(216,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abV +qLC +gNj +dOp +mMc +fxz +iST +dfU +pyv +kKs +fZa +bLK +mai +mxk +nfX +alT +smr +mxE +ydj +exJ +kyw +lam +kcz +vxb +gMG +rMy +nMc +ryj +lam +plN +cLB +biM +rpE +wDz +siM +jdm +pGO +tsr +pGO +suO +jrw +jBA +siM +xze +flE +xze +csi +msA +fmc +ubW +cuM +cDr +cEx +cze +cze +nxD +cJB +cLu +cuM +xSg +hQq +vUX +cOv +nIH +uGe +cuM +cWg +cWg +cAu +csi +hhF +lMl +lMl +hhF +sIu +dMN +dMN +sIu +vCZ +lkW +sIu +qPD +qPD +qPD +qPD +sIu +rad +rad +rad +rad +sIu +mRI +etF +etF +etF +qmo +teg +teg +abj +aaa +aaa +abj +fEv +bgs +bgs +bgs +lsa +ekU +lNx +brM +bqj +jKy +cqI +kwD +kap +brM +bXX +aGZ +aGZ +aGZ +aGZ +aGZ +abj +abj +abj +abj +dak +jzK +dbc +abj +abj +dij +dij +abj +dij +dij +abj +dij +dij +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(217,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +jSy +qjn +irO +gzk +ozg +hcH +hEh +raw +sIj +aHi +nfX +wCZ +vrk +mxk +nfX +hqG +oaR +qhK +nkm +ulm +ozI +lam +dkg +lam +ycf +iEL +udR +lam +lam +gpP +hKT +veF +lEP +oBN +siM +brP +jpX +vsY +gsE +eCB +bQo +xVQ +siM +xze +amu +xze +csi +cFK +eUZ +kFm +cuM +giQ +cEy +fhJ +cGZ +cGZ +cJC +prx +tmh +xSg +czf +xZj +xZj +xrg +wTc +cTf +kjB +kjB +cWh +csi +hhF +wua +hhF +wua +qPD +sGD +qno +xNs +rBe +khQ +uHX +rad +haa +qKv +jUn +sIu +ijq +mtz +wOg +fVZ +sIu +qbx +cvg +wfT +oLH +uqx +teg +abj +aaa +aaa +aaa +aaa +abj +fEv +fEv +bgs +bgs +eXw +bgs +pGV +bgs +bgs +cqI +vJu +cqI +brM +aGZ +aGZ +ylr +fSa +rix +aGZ +aGZ +aaa +abj +aaa +dak +jzK +dbc +aaa +aaa +abj +aaa +abj +aaa +abj +aaa +abj +aaa +dij +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(218,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +hSp +qVc +thX +vjf +cOZ +fxz +kWB +rXK +hJA +rqZ +nsd +bNQ +uTA +vVY +rFE +bLK +oaR +lEP +off +xPq +npj +wJU +lam +jeM +ubk +ptZ +acU +nqn +grA +plN +ygI +oaR +lEP +off +siM +qMT +gsE +hdR +mQT +xTw +gsE +ddf +siM +xze +ptg +xze +csi +ctA +eKi +inO +mVx +mVx +mVx +mVx +mVx +fvL +cuM +cuM +osw +tFR +qGm +tFR +tFR +tFR +kbm +cuM +cuM +cuM +nZg +csi +wua +fIy +fIy +hhF +sIu +fen +uVh +mch +qHN +uRC +kAm +rad +qOz +qFp +niP +sIu +wOg +pAx +cRv +gAT +sIu +rMZ +dbm +tqE +tqE +mqr +teg +teg +etF +etF +hxk +hxk +etF +mRI +wig +wig +kap +cqI +cqI +fPH +cEO +bgs +kww +nMl +bqj +eak +aGZ +cqJ +wmp +hbq +heT +jpo +aGZ +abj +abj +abj +dak +jzK +dbc +abj +abj +aSC +aSC +aSC +aSC +aSC +aaa +abj +aaa +aaa +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(219,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qxh +pXM +mIj +qcX +xJU +qZg +glR +nWF +bNA +nLX +nfX +wCZ +nbz +eNp +oxi +bLK +wUP +rpE +off +ulm +ulm +xaa +dCl +kSW +tWq +vpT +vpT +vpT +eUA +htQ +hKT +edc +ePY +jgp +dMP +wzU +gsx +pMd +hGV +ncQ +ebq +ujc +siM +aaa +abj +aaa +csj +rEQ +uaZ +ubW +ctB +cAv +cAv +cAv +cAv +jVh +oiz +gTT +cHa +iEw +sfl +cMR +cMR +cMR +cMR +cWh +cWh +cWh +cXO +csi +ixf +qSX +qSX +ixf +sIu +qPD +nxa +uYi +lxi +tdv +nMH +sIu +sIu +tDD +sIu +sIu +nrp +ptU +vfK +qPD +sIu +mRI +vyZ +uDO +tqE +aRY +sgP +sgP +sSY +xSx +hJe +lTj +rvy +pPc +rhY +seK +sol +sol +sol +sol +iYo +sol +sol +lLP +ebz +pCD +oEO +kBQ +tcQ +jNM +gvn +omg +aGZ +aaa +abj +aaa +aaa +cSN +abj +cTN +ewF +ics +ics +ics +ics +ics +uKe +cTN +aaa +aaa +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(220,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +qZg +qZg +qZg +qZg +qZg +qZg +boI +iZh +sMh +sMh +ieN +bLK +xBZ +oiJ +ovT +bLK +nfU +lEP +off +pSw +ulm +vbK +nNR +rYw +qBR +gCk +wVR +uSp +wgg +itF +hKT +oaR +lEP +off +siM +ybM +gsE +wSY +lKe +rgk +txi +ddf +siM +abj +abj +aaa +csj +rEQ +eyg +erQ +csi +csj +csj +csj +csj +pmT +csi +csj +csj +csi +cJE +csj +csj +csj +csj +csi +cFK +cWi +cXP +csi +abj +aaa +aaa +abj +abj +qPD +ooO +noV +nwu +wPb +qno +lHO +ksQ +kAm +txG +sIu +sIu +jVi +qPD +qPD +oMS +mRI +uDO +daR +ooq +eQi +vyM +uDO +lmQ +eiX +eiX +kiP +uDp +uDO +eiX +ojS +cqI +kap +cqI +bqj +brM +kap +pdq +nMo +brM +kap +aGZ +pyC +geX +hbq +hfw +gCZ +aGZ +abj +abj +abj +abj +cTN +cTN +cTN +aaa +cQb +cQb +cQb +cQb +cQb +aaa +cTN +cTN +abj +abj +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(221,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +abj +aaa +aaa +rfd +rfd +tFP +kfy +dHF +rfd +rfd +wij +qUI +wij +wij +gib +lEP +off +uRI +ito +ito +ito +ito +ito +ito +ito +ito +ito +ito +itA +riH +lEP +oBN +siM +soY +ulq +gsE +eCB +iaG +fhk +xVQ +siM +aaa +abj +aaa +csj +rlS +cuN +cws +csj +aaa +aaa +abj +csj +cFF +csi +mcD +mcD +csi +cJF +csj +abj +aaa +aaa +csj +cUO +iVJ +cXQ +csi +abj +aaa +aaa +aaa +abj +qPD +wGf +mch +jiN +vEE +oqy +ota +jEu +asL +emR +lPK +ygL +nIr +fDM +tPu +aiR +nWe +pxy +pxy +pxy +tHO +tqE +teg +teg +etF +etF +hxk +hxk +etF +mRI +mRI +cEO +brM +uME +wTf +kap +brM +bgs +nMo +brM +kap +aGZ +aGZ +vmO +yeD +rix +aGZ +aGZ +aaa +abj +aaa +aaa +cTN +cTN +abj +abj +abj +abj +abj +abj +abj +abj +abj +cTN +cTN +aaa +abj +abj +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(222,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +abj +aaa +aaa +rfd +jbL +rQl +gTt +gTt +nJC +rfd +tfw +gtN +bAT +xIh +wwR +qiu +ocu +arn +itA +sml +mRU +aWB +sdc +ice +tsl +iBF +hGa +iMB +itA +wwR +qiu +ocu +siM +vix +kPm +lOE +vpA +lPP +qeJ +wYW +siM +abj +abj +abj +csi +csj +csj +csj +csi +abj +oLM +oXr +oXr +jya +csi +csj +csj +csi +dym +pKd +pKd +kEe +abj +csi +csj +csj +csj +csi +abj +aaa +aaa +aaa +abj +qPD +sDL +eKA +nwu +sUk +mwz +iSe +glD +vrp +bji +sIu +vdF +fZf +fzE +ndH +fzE +jEH +uDO +tqE +vMW +rRQ +sOB +teg +fEv +fEv +abj +aaa +aaa +abj +peo +bgs +bgs +kHq +wLe +bgs +izD +kap +agJ +cak +kap +uME +brM +aGZ +aGZ +aGZ +aGZ +aGZ +abj +abj +abj +abj +abj +cTN +aaa +abj +aaa +abj +aaa +abj +aaa +abj +aaa +abj +aaa +cTN +abj +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(223,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +aaa +aaa +abj +abj +abj +rfd +shI +ykk +jKM +sIa +vMT +rfd +yfO +uwZ +qvJ +cxA +nZo +aKr +rCj +kiW +itA +enA +nKj +oRb +oRb +une +oRb +oiG +nKj +lcj +itA +oaR +lEP +nkm +siM +siM +siM +siM +siM +kGW +siM +siM +siM +aaa +aaa +aaa +abj +abj +abj +abj +csj +aaa +wUk +cCb +cCb +cCb +cCb +cCb +cCb +cCb +cCb +cCb +cCb +pLT +aaa +csj +abj +abj +abj +abj +abj +aaa +aaa +aaa +abj +sIu +uFP +hiL +kAm +eJW +vcp +grj +jCv +xvI +qno +jLn +eyM +ulP +kDl +uwh +uYi +sIu +rad +rad +qmo +qmo +qmo +mRI +mRI +acF +fEv +abj +aaa +aaa +abj +bgs +mng +qTe +cqI +bgs +vJJ +kap +brM +bns +rZY +rZY +hPL +mBY +icT +gYK +tPx +cPC +cPC +cPC +abj +aaa +aaa +cTN +aaa +aSC +aSC +aSC +aSC +aSC +aSC +aSC +aSC +aSC +aaa +cTN +aaa +abj +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(224,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +aaa +abj +aaa +aaa +rfd +pzB +ykk +bUe +cYc +cjx +rfd +gdN +tjq +nJw +cis +oaR +lEP +jdC +gTe +iwz +mNk +mbN +nKj +nKj +mkI +nKj +eij +vaF +oEq +iwz +bTn +lEP +off +hKT +fhF +fhF +fhF +fhF +fhF +fhF +fhF +abj +aaa +aaa +aaa +aaa +aaa +aaa +abj +csj +aaa +wUk +cCb +cCb +cCb +cCb +cCb +cCb +cCb +cCb +cCb +cCb +pLT +aaa +csj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +maL +ayk +gUt +uYi +mch +fTK +vvS +ljm +nvN +qno +tll +qFw +eoB +xnQ +tnj +vEy +pfl +pTi +kqa +abj +abj +abj +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +bgs +aRT +soW +uKR +xUg +bdG +brM +tMG +ncN +cqI +gdK +nWJ +cPC +lqJ +hoX +uvM +nAX +mCZ +tRi +ocJ +uKe +cTN +cTN +ewF +ics +ics +ics +ics +ics +ics +ics +ics +ics +uKe +cTN +ewF +rnO +abj +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(225,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oEG +abj +abj +abj +oEG +oEG +abj +rfd +qBc +xWG +dUT +hWP +cjy +rfd +kAW +lIT +itk +hKT +fxa +kLT +dTU +dTU +hxs +mSs +kIl +nrq +xYi +bHY +aVp +fms +wuT +mSs +xhC +dTU +hrq +syk +hKT +fhF +fhF +fhF +fhF +fhF +fhF +fhF +cbA +abj +aaa +aaa +aaa +abj +abj +abj +csj +abj +nMa +cCc +cCb +cCb +cCb +cCb +cCb +cCb +cCb +cCb +cOw +jks +abj +csj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +maL +maL +xzO +wor +nwu +czX +nwu +qno +gtD +tti +oqJ +smQ +dcC +deN +fzE +qvA +edp +wVT +kqa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +bgs +bgs +bws +bgs +bgs +bgs +bws +bws +bws +bgs +bgs +bgs +cPC +cyA +xhr +cym +cPS +cPS +cPS +abj +aaa +aaa +cTN +aaa +cQb +cQb +cQb +cQb +cQb +cQb +cQb +cQb +cQb +aaa +cTN +aaa +abj +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(226,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oEG +aaa +aaa +aaa +aaa +aaa +vrw +eoX +eoX +eoX +eoX +eoX +eoX +eoX +gdN +tjq +gKl +hKT +wrR +fWo +hLf +hLf +mnw +duD +uaN +mkI +hNw +xYE +hNw +mkI +cHF +lMb +mnw +hLf +jni +oXq +hKT +fhF +fhF +fhF +fhF +fhF +fhF +fhF +abj +aaa +aaa +aaa +aaa +aaa +aaa +abj +csj +aaa +wUk +cCb +cCb +cCb +cCb +cCb +cCb +cCb +cCb +cCb +cCb +pLT +aaa +csj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +maL +maL +gwg +mch +lja +eKA +mch +azo +czX +kwC +hfb +osf +toU +fzE +osf +fzE +uUC +kqa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +aaa +abj +abj +abj +aaa +aaa +aaa +abj +abj +abj +cPC +cPS +cPS +cPS +cPC +wXe +wXe +abj +abj +abj +cTN +aaa +abj +aaa +abj +aaa +abj +aaa +abj +aaa +abj +aaa +cTN +abj +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(227,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oEG +aaa +aaa +aaa +aaa +aaa +eoX +uOh +rBp +wLq +eoX +hKV +nCq +vxh +mXD +rrp +wvz +hKT +hKT +hKT +hKT +nSd +nSd +pQa +wAU +jif +muJ +nSd +wHy +piq +xDs +nSd +hKT +ozs +kjw +uxJ +hKT +fhF +fhF +fhF +fhF +fhF +fhF +fhF +abj +aaa +aaa +aaa +aaa +aaa +aaa +abj +csj +aaa +wUk +cCb +cCb +cCb +cCb +cCb +cCb +cCb +cCb +cCb +cCb +pLT +aaa +csj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +abj +maL +maL +gPu +pgX +rtS +fEd +xRG +kAm +wZj +nlP +ipf +qvA +fzE +uYi +tqO +wIZ +qPD +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +aaa +aaa +aaa +abj +abj +abj +abj +aaa +aaa +cTN +cTN +abj +abj +abj +abj +abj +abj +abj +abj +abj +cTN +cTN +aaa +dij +dij +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(228,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +aaa +aaa +hnM +oFN +num +evV +rVa +eoX +tuT +jWd +tqm +phG +utQ +sZb +yia +lPY +vzg +lPY +nSd +wkF +gJQ +wOz +eDi +ncO +nSd +tRH +sYC +idf +nSd +abj +abj +abj +abj +abj +fhF +fhF +fhF +fhF +fhF +fhF +fhF +oEG +aaa +aaa +aaa +aaa +aaa +aaa +abj +csi +abj +fiF +oXr +oXr +oXr +jvo +csj +csj +ugq +pKd +pKd +pKd +pys +abj +csi +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +maL +maL +ddo +kue +kcd +jQi +azo +iHc +hBV +fzE +jvm +lkD +nct +uKF +sIu +sIu +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +abj +cTN +cTN +cTN +aaa +aSC +aSC +aSC +aSC +aSC +aaa +cTN +cTN +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(229,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oEG +aaa +aaa +aaa +aaa +aaa +hlr +jBv +suY +nsP +eoX +eoX +eoX +eoX +hOu +tjq +rVa +baf +jOB +dvi +vvb +nSd +qfc +gXs +iaN +mZX +qPc +vUE +oyu +ehX +oVL +caT +aaa +aaa +aaa +aaa +oEG +fhF +fhF +fhF +fhF +fhF +fhF +fhF +oEG +aaa +aaa +aaa +aaa +aaa +aaa +abj +csj +aaa +aaa +abj +aaa +csj +cFF +csi +csi +cJF +csj +aaa +abj +aaa +aaa +csj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +maL +maL +vKr +xIj +wvo +eTd +qPD +kvR +xzn +sIu +sIu +sIu +rad +rad +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +daG +rkU +cTN +ewF +ics +ics +ics +ics +ics +uKe +cTN +aaa +aaa +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(230,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +aaa +aaa +aaa +eoX +mCB +tCY +jDG +gID +gID +qNW +kWj +kFS +aNh +vnb +qXS +hvi +mmg +gMT +nSd +rds +wXz +tOd +cPa +xFq +jqC +xAF +gjZ +bkd +oRu +aaa +aaa +aaa +abj +cbA +abj +oEG +oEG +abj +cbA +oEG +oEG +cbA +aaa +aaa +aaa +aaa +aaa +aaa +abj +csj +csj +csj +csj +csj +csj +pmT +csj +csj +cJE +csj +csj +csj +csj +csj +csj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +maL +maL +maL +maL +qPD +qPD +maL +sIu +sIu +abj +abj +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +dak +daT +dbc +abj +abj +cQb +cQb +cQb +cQb +cQb +aaa +abj +aaa +aaa +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(231,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oEG +aaa +aaa +aaa +aaa +aaa +hlr +prD +tcZ +keM +gzL +gzL +qoU +tqd +wKh +tjq +rFT +iqA +hsC +xtU +hsC +nSd +oYl +loM +qPc +jzu +qPc +wqG +hFx +rLx +oVL +quK +aaa +aaa +abj +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +abj +csj +swF +cHb +cIr +jYj +csj +abj +abj +abj +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +abj +aaa +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +dak +daT +dbc +aaa +aaa +abj +aaa +abj +aaa +abj +aaa +abj +aaa +dij +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(232,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oEG +aaa +aaa +aaa +aaa +aaa +tTZ +num +ppB +xwx +eoX +eoX +eoX +eoX +hOu +tjq +cri +sjM +sjM +sjM +sjM +nSd +moJ +mUY +yif +nmK +xJi +nSd +jiB +jKJ +yaq +nSd +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +csi +cFJ +cHc +cJm +cJJ +csi +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +dak +daT +dbc +abj +dij +dij +dij +dij +dij +dij +abj +dij +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(233,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +oEG +aaa +aaa +aaa +aaa +aaa +eoX +gdN +grY +rVa +eoX +tuT +oRz +tqm +vAj +tjq +jQm +bAT +eeR +gJA +kDi +nSd +nSd +nSd +nSd +nSd +nSd +nSd +nSd +nSd +nSd +nSd +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +csj +cFK +cHd +cIt +cFK +csj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +aaa +dak +daT +dbc +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(234,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +aaa +aaa +aaa +eoX +hZR +ubG +tVH +eoX +aJu +nCq +vxh +mXD +quV +xgW +unT +nlU +hov +cRb +eOb +uWd +spG +njJ +rbL +kya +riK +tpg +aaa +aaa +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +csj +csj +csj +csj +csj +csj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +dak +daT +dbc +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(235,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +abj +abj +oEG +oEG +abj +abj +vrw +eoX +eoX +eoX +eoX +eoX +eoX +eoX +duE +jPh +iBI +wvx +oKf +vcE +fHC +mfr +kEw +tyW +lvJ +qgN +etA +vWA +dXq +aaa +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +jtN +aaa +aaa +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(236,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +aaa +aaa +aaa +aaa +eoX +jRH +bWr +qgl +vDl +vsq +eoX +uMS +cPd +eoX +nOf +eoX +son +eiL +eoX +kjR +uQQ +sTp +fdo +bVy +vvF +sPU +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +abj +cQb +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(237,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +aaa +aaa +aaa +eoX +ioR +bWr +bWr +bwA +nyZ +eoX +cpp +wPJ +ocz +eoX +tmr +vsl +oHX +eoX +plF +plF +jBn +eoX +eoX +eoX +eoX +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dij +abj +aaa +abj +aaa +abj +dij +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(238,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +eoX +eoX +rRb +rRb +rRb +hyI +rRb +eoX +fyo +uKU +fjF +nqJ +evi +epX +smZ +eoX +lyy +uAs +eRB +eoX +umO +uJu +eoX +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +dij +dij +dij +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(239,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +eoX +lMI +jyP +rAU +tBk +tgD +idB +eoX +uMS +pGQ +eiL +eoX +uMS +rhn +eiL +eoX +eoX +eoX +eoX +eoX +ldn +uLC +qYP +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(240,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +qYP +wyf +boW +gUl +pQq +xKt +jYQ +jyP +gSH +cRW +pYr +qvV +pbz +rXC +sNI +tLI +qgV +iGm +ppj +oav +fRf +jep +ukT +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(241,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +fFp +iME +fxS +iwi +vdM +qBb +fjM +fjM +iEG +paj +mHW +mHW +mHW +bpQ +diL +lTJ +ldn +qpB +fDy +unM +wGn +qAl +ukT +aaa +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(242,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +wcy +uMO +nGR +boW +fXQ +boW +tgD +xKt +vaT +pYr +eez +iaw +dMi +veB +mli +gGE +rOJ +gGE +scl +jjK +mSI +nRv +nOe +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(243,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +eoX +hKc +fUr +lOk +ycC +tgD +kjl +btF +ryz +pYr +wWd +vTs +nMg +pGK +diL +fRf +rEr +tWG +uKq +fRf +udK +sBw +eoX +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(244,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +eoX +eoX +hTU +eol +eiL +eoX +eoX +hxm +nFK +ocz +qfb +pYr +eHj +ecf +omd +qZF +rRb +rRb +jcq +wlm +rRb +eoX +eoX +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(245,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +aaa +abj +eoX +eoX +eoX +rRb +rRb +ijQ +rRb +rRb +rRb +rRb +rRb +oxu +ucm +brR +pmC +eoX +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(246,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +aaa +abj +eoX +iOu +vFK +vFK +exl +rRb +ijO +hNN +uLE +uat +mPR +hfe +pmC +eoX +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(247,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +aaa +abj +eoX +kTV +vFK +vFK +xgH +rRb +oFF +fDB +gzl +sXB +fNr +tyD +eoX +eoX +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(248,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +eoX +eoX +ghA +bzt +hVo +rRb +oFF +gPL +uPP +szf +xmd +efy +eoX +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(249,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +eoX +eoX +eoX +eoX +eoX +eoX +eoX +uMS +lhn +eiL +eoX +eoX +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(250,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(251,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(252,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(253,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(254,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(255,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} diff --git a/_maps/map_files220/generic/Admin_Zone.dmm b/_maps/map_files220/generic/Admin_Zone.dmm new file mode 100644 index 000000000000..f1fcc76bad9c --- /dev/null +++ b/_maps/map_files220/generic/Admin_Zone.dmm @@ -0,0 +1,69082 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/chair/comfy/beige{ + dir = 8; + layer = 5; + pixel_y = -2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"aw" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/immolator/multi, +/turf/simulated/floor/wood/oak, +/area/admin) +"ax" = ( +/obj/structure/table, +/obj/item/kitchen/utensil/fork, +/obj/item/lighter, +/obj/item/restraints/handcuffs/cable/red, +/obj/item/storage/box/mousetraps, +/obj/item/storage/fancy/cigarettes, +/obj/item/pen, +/turf/simulated/floor/wood/oak, +/area/admin) +"aA" = ( +/obj/machinery/door/poddoor{ + id_tag = "thunderdomehea"; + name = "Heavy Supply" + }, +/turf/simulated/floor/plasteel/dark, +/area/tdome/arena) +"aG" = ( +/turf/simulated/floor/holofloor{ + dir = 8; + icon_state = "green" + }, +/area/holodeck/source_basketball) +"aH" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon_state = "red" + }, +/area/holodeck/source_basketball) +"aQ" = ( +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/glasses/sunglasses_fake, +/turf/simulated/floor/holofloor{ + icon = 'icons/misc/beach.dmi'; + icon_state = "desert" + }, +/area/holodeck/source_beach) +"bq" = ( +/obj/structure/chair/stool/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"by" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/pistol/enforcer/lethal, +/turf/simulated/floor/wood/oak, +/area/admin) +"bz" = ( +/obj/effect/decal/warning_stripes/blue, +/turf/simulated/wall/indestructible, +/area/admin) +"bI" = ( +/obj/structure/table, +/obj/item/storage/box/syringes, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/grenade/chem_grenade/large, +/obj/item/grenade/chem_grenade/large, +/obj/item/grenade/chem_grenade/large, +/obj/item/grenade/chem_grenade/large, +/turf/simulated/floor/wood/oak, +/area/admin) +"bL" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"bM" = ( +/turf/simulated/wall/indestructible/riveted, +/area/tdome/tdomeobserve) +"ca" = ( +/obj/machinery/computer/teleporter, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"cz" = ( +/obj/structure/table/wood, +/obj/item/gun/medbeam, +/turf/simulated/floor/wood/oak, +/area/admin) +"cB" = ( +/obj/item/bedsheet/black, +/obj/structure/bed, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/wood/oak, +/area/admin) +"cI" = ( +/turf/simulated/wall/indestructible/riveted, +/area/tdome/tdomeadmin) +"cN" = ( +/turf/space, +/area/space) +"cP" = ( +/obj/structure/table/wood, +/obj/item/fireaxe/energized, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"cQ" = ( +/obj/structure/table/wood, +/obj/item/clothing/head/helmet/space/space_ninja, +/obj/item/clothing/shoes/space_ninja, +/obj/item/clothing/mask/gas/space_ninja, +/obj/item/clothing/gloves/space_ninja, +/obj/item/clothing/suit/space/space_ninja, +/obj/item/katana/energy, +/turf/simulated/floor/wood/oak, +/area/admin) +"cT" = ( +/obj/machinery/door_control/no_emag{ + id = "tdomeflash"; + name = "Flash control" + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"cV" = ( +/turf/simulated/floor/holofloor{ + icon = 'icons/turf/floors/plating.dmi'; + icon_state = "asteroid7" + }, +/area/holodeck/source_desert) +"cY" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon = 'icons/turf/floors/plating.dmi'; + icon_state = "asteroid8" + }, +/area/holodeck/source_desert) +"dk" = ( +/obj/structure/table/wood, +/obj/item/bostaff, +/turf/simulated/floor/wood/oak, +/area/admin) +"dn" = ( +/obj/structure/table/wood, +/obj/item/pizzabox/pizza_bomb, +/turf/simulated/floor/wood/oak, +/area/admin) +"do" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/laser/tag/blue, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"dw" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/immolator, +/turf/simulated/floor/wood/oak, +/area/admin) +"dx" = ( +/obj/machinery/door_control/no_emag{ + id = "thunderdomegen"; + name = "General Supply Control"; + req_access_txt = "102" + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"dA" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/lasercannon, +/turf/simulated/floor/wood/oak, +/area/admin) +"dB" = ( +/obj/structure/rack/holorack, +/obj/item/clothing/under/dress/dress_saloon, +/obj/item/clothing/head/hairflower, +/turf/simulated/floor/holofloor{ + icon_state = "cult" + }, +/area/holodeck/source_theatre) +"dN" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/energy/sword/saber/red, +/turf/simulated/floor/plasteel/dark, +/area/tdome/arena) +"dP" = ( +/turf/simulated/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"dX" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon_state = "wood" + }, +/area/holodeck/source_theatre) +"dZ" = ( +/obj/structure/table/wood, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator, +/turf/simulated/floor/wood/oak, +/area/admin) +"ea" = ( +/obj/structure/table/wood/poker, +/obj/machinery/door_control/shutter{ + id = "eventroom"; + name = "Ready room"; + pixel_x = -6; + pixel_y = 6; + req_access = list(150) + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"el" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/energy/sword/saber/green, +/turf/simulated/floor/plasteel/dark, +/area/tdome/arena) +"em" = ( +/obj/effect/landmark/spawner/atmos_test, +/turf/simulated/floor/holofloor{ + icon_state = "engine"; + name = "Burn-Mix Floor"; + nitrogen = 0; + oxygen = 2500; + temperature = 370; + toxins = 5000 + }, +/area/holodeck/source_burntest) +"ep" = ( +/turf/simulated/floor/holofloor{ + dir = 8; + icon_state = "green" + }, +/area/holodeck/source_emptycourt) +"er" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/wand/teleport, +/turf/simulated/floor/wood/oak, +/area/admin) +"ew" = ( +/obj/structure/holowindow, +/turf/simulated/floor/holofloor{ + dir = 8; + icon_state = "red" + }, +/area/holodeck/source_knightarena) +"ez" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/energy/sword/saber/green, +/turf/simulated/floor/plasteel, +/area/tdome/arena_source) +"eD" = ( +/obj/structure/table, +/obj/item/tank/internals/oxygen/yellow, +/obj/random/bomb_supply, +/obj/item/clothing/head/sombrero/shamebrero, +/turf/simulated/floor/wood/oak, +/area/admin) +"eG" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"eK" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/laser/tag/red, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"eL" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/shotgun/boltaction, +/obj/item/gun/projectile/shotgun/boltaction/enchanted, +/turf/simulated/floor/wood/oak, +/area/admin) +"eY" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/proto, +/turf/simulated/floor/wood/oak, +/area/admin) +"fb" = ( +/turf/simulated/floor/holofloor{ + dir = 8; + icon_state = "green" + }, +/area/holodeck/source_boxingcourt) +"fc" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/shotgun/boltaction/enchanted/arcane_barrage, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"fg" = ( +/obj/structure/table/wood, +/obj/item/dualsaber/toy, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"fh" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/energy/sword/saber/red, +/turf/simulated/floor/plasteel, +/area/tdome/arena_source) +"fm" = ( +/obj/effect/landmark/costume/random, +/obj/structure/rack/holorack, +/turf/simulated/floor/holofloor{ + icon_state = "cult" + }, +/area/holodeck/source_theatre) +"fn" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/hook, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"fF" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/wand, +/turf/simulated/floor/wood/oak, +/area/admin) +"fG" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the Thunderdome."; + name = "Thunderdome Telescreen"; + network = list("Thunderdome") + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"fO" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/plasteel + }, +/turf/simulated/wall/indestructible, +/area/adminconstruction) +"gc" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/rods, +/obj/item/pen, +/turf/simulated/floor/wood/oak, +/area/admin) +"gd" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/revolver/grenadelauncher/multi/cyborg, +/turf/simulated/floor/wood/oak, +/area/admin) +"gk" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/wand/door, +/turf/simulated/floor/wood/oak, +/area/admin) +"gq" = ( +/turf/simulated/wall/indestructible/fakeglass, +/area/tdome/tdomeobserve) +"gE" = ( +/obj/structure/table/wood, +/obj/item/whetstone/super, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"gN" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/holofloor{ + icon_state = "snow" + }, +/area/holodeck/source_snowfield) +"gR" = ( +/obj/structure/table/wood, +/obj/item/paper{ + info = "/obj/item/gun/projectile/shotgun/sc_pump" + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"gS" = ( +/obj/structure/table/wood, +/obj/item/encryptionkey/headset_cargo, +/obj/item/encryptionkey/headset_com, +/obj/item/encryptionkey/headset_eng, +/obj/item/encryptionkey/headset_iaa, +/obj/item/encryptionkey/headset_med, +/obj/item/encryptionkey/headset_medsci, +/obj/item/encryptionkey/headset_rob, +/obj/item/encryptionkey/headset_sci, +/obj/item/encryptionkey/headset_sec, +/obj/item/encryptionkey/headset_service, +/turf/simulated/floor/wood/oak, +/area/admin) +"hd" = ( +/obj/structure/table/holotable, +/obj/item/clothing/suit/armor/riot/knight/blue, +/obj/item/clothing/head/helmet/riot/knight/blue, +/obj/item/holo/claymore/blue, +/turf/simulated/floor/holofloor{ + icon_state = "blue" + }, +/area/holodeck/source_knightarena) +"hh" = ( +/obj/mecha/combat/marauder/mauler/loaded{ + operation_req_access = list(114) + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"hi" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/ar, +/turf/simulated/floor/wood/oak, +/area/admin) +"ho" = ( +/obj/structure/table/wood, +/obj/item/paper{ + info = "/obj/item/gun/energy/noisecannon" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"hp" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"hw" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor{ + icon = 'icons/misc/beach.dmi'; + icon_state = "desert" + }, +/area/holodeck/source_beach) +"hA" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove, +/turf/simulated/floor/holofloor{ + dir = 5; + icon_state = "red" + }, +/area/holodeck/source_boxingcourt) +"hB" = ( +/obj/structure/holowindow{ + dir = 1 + }, +/turf/simulated/floor/holofloor{ + dir = 8; + icon_state = "blue" + }, +/area/holodeck/source_knightarena) +"hE" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/staff/slipping/honkmother, +/turf/simulated/floor/wood/oak, +/area/admin) +"hI" = ( +/obj/effect/landmark/spawner/tdome1, +/turf/simulated/floor/plasteel/dark, +/area/tdome/arena) +"hN" = ( +/turf/simulated/floor/holofloor{ + icon_state = "rampbottom" + }, +/area/holodeck/source_theatre) +"hT" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "tdome2"; + name = "Corpse Retreival Entrance" + }, +/turf/simulated/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"hV" = ( +/obj/mecha/combat/gygax/dark/loaded{ + operation_req_access = list(114) + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"hZ" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/c20r/toy, +/turf/simulated/floor/wood/oak, +/area/admin) +"ib" = ( +/obj/structure/table/wood, +/obj/item/toy/russian_revolver, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"im" = ( +/obj/structure/table/wood, +/obj/item/toy/katana, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"io" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/shotgun/riot, +/turf/simulated/floor/wood/oak, +/area/admin) +"iM" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/pulse/pistol, +/turf/simulated/floor/wood/oak, +/area/admin) +"iY" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"jj" = ( +/obj/structure/chair/comfy/beige{ + dir = 4; + layer = 5; + pixel_y = -2 + }, +/obj/machinery/ai_status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"jl" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/revolver/grenadelauncher, +/turf/simulated/floor/wood/oak, +/area/admin) +"jq" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/wood/oak, +/area/admin) +"jB" = ( +/obj/structure/table/wood, +/obj/item/nullrod/tribal_knife, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"jD" = ( +/obj/structure/table/wood, +/obj/item/fireaxe/boneaxe, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"jF" = ( +/obj/effect/landmark/spawner/holocarp, +/turf/simulated/floor/holofloor{ + icon_state = "engine"; + name = "Holodeck Projector Floor" + }, +/area/holodeck/source_wildlife) +"jH" = ( +/turf/simulated/floor/holofloor{ + dir = 10; + icon_state = "red" + }, +/area/holodeck/source_basketball) +"jK" = ( +/obj/structure/table/wood, +/obj/item/paper{ + info = "Я так понял был энфорсер с Сибилом." + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"jM" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/staff/change, +/turf/simulated/floor/wood/oak, +/area/admin) +"jQ" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/landmark/spawner/tdomeadmin, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"jY" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove, +/turf/simulated/floor/holofloor{ + dir = 9; + icon_state = "red" + }, +/area/holodeck/source_boxingcourt) +"jZ" = ( +/obj/item/bedsheet/black, +/obj/structure/bed, +/turf/simulated/floor/wood/oak, +/area/admin) +"kb" = ( +/obj/machinery/door/poddoor{ + id_tag = "thunderdomegen"; + name = "General Supply" + }, +/turf/simulated/floor/plasteel, +/area/tdome/arena_source) +"kf" = ( +/obj/structure/table/holotable, +/obj/machinery/readybutton, +/turf/simulated/floor/holofloor{ + dir = 6; + icon_state = "green" + }, +/area/holodeck/source_thunderdomecourt) +"ki" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/floragun, +/turf/simulated/floor/wood/oak, +/area/admin) +"ko" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/wand/resurrection, +/turf/simulated/floor/wood/oak, +/area/admin) +"kq" = ( +/obj/structure/table/wood, +/obj/item/butcher_chainsaw, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"ku" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"kM" = ( +/obj/structure/table/wood, +/obj/item/hatchet/unathiknife, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"kQ" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/grown/citrus/lemon, +/obj/item/reagent_containers/food/snacks/grown/berries, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/reagent_containers/food/snacks/grown/cherries, +/obj/item/reagent_containers/food/snacks/grown/citrus/orange, +/obj/item/reagent_containers/food/snacks/grown/corn, +/obj/item/reagent_containers/food/snacks/grown/mushroom/amanita, +/turf/simulated/floor/wood/oak, +/area/admin) +"kT" = ( +/obj/structure/table/wood, +/obj/item/kitchen/knife/envy, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"kU" = ( +/obj/structure/table/wood, +/obj/item/grenade/clusterbuster/syndieminibomb, +/turf/simulated/floor/wood/oak, +/area/admin) +"kY" = ( +/turf/simulated/floor/holofloor{ + dir = 1; + icon_state = "green" + }, +/area/holodeck/source_basketball) +"lc" = ( +/obj/structure/holowindow{ + dir = 1 + }, +/turf/simulated/floor/holofloor{ + dir = 4; + icon_state = "blue" + }, +/area/holodeck/source_knightarena) +"ld" = ( +/obj/structure/table/holotable/wood, +/turf/simulated/floor/holofloor{ + icon_state = "asteroid" + }, +/area/holodeck/source_picnicarea) +"li" = ( +/obj/structure/holowindow{ + dir = 1 + }, +/turf/simulated/floor/holofloor, +/area/holodeck/source_thunderdomecourt) +"lt" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/wood/oak, +/area/admin) +"lA" = ( +/obj/item/storage/toolbox/syndicate{ + desc = "A powerful relic many men worked long and hard to keep safe and away from the forces of evil."; + force = 1e+008; + name = "toolbox of robustness" + }, +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/admin) +"lE" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/wood/oak, +/area/admin) +"lR" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/pistol/deagle, +/turf/simulated/floor/wood/oak, +/area/admin) +"lT" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"lX" = ( +/obj/machinery/teleport/station, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"mk" = ( +/obj/structure/table/wood, +/obj/item/ammo_box/foambox/riot, +/obj/item/ammo_box/foambox/riot, +/obj/item/ammo_box/foambox/riot, +/obj/item/ammo_box/foambox/riot, +/obj/item/ammo_box/foambox/riot, +/obj/item/ammo_box/foambox/riot, +/obj/item/ammo_box/foambox/riot, +/obj/item/ammo_box/foambox/riot, +/obj/item/ammo_box/foambox/riot, +/obj/item/ammo_box/foambox/riot, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"mn" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/revolver/nagant, +/turf/simulated/floor/wood/oak, +/area/admin) +"mw" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/under/color/red, +/obj/item/holo/esword/red, +/turf/simulated/floor/holofloor{ + dir = 1; + icon_state = "red" + }, +/area/holodeck/source_thunderdomecourt) +"mB" = ( +/obj/item/gun/rocketlauncher, +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/admin) +"mC" = ( +/obj/machinery/status_display, +/turf/simulated/wall/indestructible/riveted, +/area/tdome/tdomeobserve) +"mM" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/hardsuit/syndi, +/obj/item/clothing/suit/space/hardsuit/syndi/elite{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"mR" = ( +/obj/structure/table/wood, +/obj/item/multisword, +/obj/item/multisword/pike, +/obj/item/multisword/pure_evil, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"mU" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/revolver/mateba, +/turf/simulated/floor/wood/oak, +/area/admin) +"mX" = ( +/turf/simulated/floor/holofloor{ + icon = 'icons/turf/floors/plating.dmi'; + icon_state = "asteroid" + }, +/area/holodeck/source_desert) +"mY" = ( +/turf/simulated/floor/holofloor{ + dir = 9; + icon_state = "red" + }, +/area/holodeck/source_basketball) +"na" = ( +/obj/structure/table/wood, +/obj/item/melee/energy/sword, +/obj/item/melee/energy/sword/cyborg, +/obj/item/melee/energy/sword/cyborg/saw, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"ne" = ( +/obj/structure/table/wood/poker, +/obj/item/clothing/shoes/roman, +/obj/item/shield/riot/roman, +/obj/item/clothing/head/helmet/roman/legionaire, +/obj/item/spear/bonespear, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"nk" = ( +/turf/simulated/floor/holofloor{ + icon_state = "grimy" + }, +/area/holodeck/source_meetinghall) +"nC" = ( +/turf/simulated/floor/holofloor{ + dir = 5; + icon_state = "green" + }, +/area/holodeck/source_basketball) +"nK" = ( +/obj/structure/table/wood, +/obj/item/abductor_baton, +/obj/item/abductor/silencer, +/obj/item/abductor/mind_device, +/obj/item/abductor/gizmo, +/obj/structure/ninjatele{ + pixel_x = -28 + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"nM" = ( +/obj/structure/table/holotable, +/turf/simulated/floor/holofloor{ + dir = 5; + icon_state = "red" + }, +/area/holodeck/source_thunderdomecourt) +"nN" = ( +/obj/structure/table, +/obj/item/storage/box/beakers, +/obj/item/reagent_containers/glass/beaker/bluespace, +/obj/item/reagent_containers/glass/beaker/bluespace, +/obj/item/reagent_containers/glass/beaker/bluespace, +/obj/item/reagent_containers/glass/beaker/bluespace, +/turf/simulated/floor/wood/oak, +/area/admin) +"nU" = ( +/obj/structure/table/wood, +/obj/item/paper{ + info = "/obj/item/gun/projectile/shotgun/riot/buckshot" + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"nW" = ( +/obj/structure/chair, +/obj/effect/landmark/spawner/tdomeobserve, +/turf/simulated/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"nX" = ( +/obj/structure/table/wood, +/obj/item/paper{ + info = "Какой-то /obj/item/gun/energy/laser/retro/sc_retro. Хз что это." + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"nZ" = ( +/turf/simulated/floor/holofloor{ + dir = 1; + icon_state = "red" + }, +/area/holodeck/source_boxingcourt) +"oc" = ( +/obj/item/paper_bin/nanotrasen, +/obj/structure/table/wood/poker, +/obj/item/pen/multi/gold, +/obj/item/stamp/chameleon, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"og" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/detective, +/turf/simulated/floor/wood/oak, +/area/admin) +"oh" = ( +/obj/structure/table/wood, +/obj/item/dnainjector/blindmut, +/obj/item/dnainjector/clumsymut, +/obj/item/dnainjector/comic, +/obj/item/dnainjector/coughmut, +/obj/item/dnainjector/deafmut, +/obj/item/dnainjector/epimut, +/obj/item/dnainjector/firemut, +/obj/item/dnainjector/glassesmut, +/obj/item/dnainjector/h2m, +/obj/item/dnainjector/hallucination, +/obj/item/dnainjector/hulkmut, +/obj/item/dnainjector/insulation, +/obj/item/dnainjector/m2h, +/obj/item/dnainjector/midgit, +/obj/item/dnainjector/morph, +/obj/item/dnainjector/nobreath, +/obj/item/dnainjector/noprints, +/obj/item/dnainjector/regenerate, +/obj/item/dnainjector/remoteview, +/obj/item/dnainjector/stuttmut, +/obj/item/dnainjector/telemut, +/obj/item/dnainjector/tourmut, +/turf/simulated/floor/wood/oak, +/area/admin) +"oj" = ( +/obj/structure/holowindow{ + dir = 1 + }, +/turf/simulated/floor/holofloor{ + dir = 4; + icon_state = "green" + }, +/area/holodeck/source_thunderdomecourt) +"ou" = ( +/obj/machinery/computer/rdservercontrol{ + badmin = 1; + name = "Master R&D Server Controller"; + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"oB" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/sniper_rifle/toy, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"oL" = ( +/obj/machinery/chem_heater, +/turf/simulated/floor/wood/oak, +/area/admin) +"oX" = ( +/obj/structure/table/wood, +/obj/item/gun/syringe/rapidsyringe, +/turf/simulated/floor/wood/oak, +/area/admin) +"pa" = ( +/turf/simulated/floor/holofloor{ + dir = 5; + icon_state = "red" + }, +/area/holodeck/source_basketball) +"pk" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/revolver/doublebarrel/improvised, +/turf/simulated/floor/wood/oak, +/area/admin) +"pC" = ( +/obj/structure/table/wood, +/obj/machinery/syndicatebomb/badmin, +/turf/simulated/floor/wood/oak, +/area/admin) +"pE" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/plasma_pistol, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"pJ" = ( +/obj/structure/table/wood, +/obj/item/toy/russian_revolver/trick_revolver, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"pN" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "eventroom"; + name = "Privacy Shutters" + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"pO" = ( +/turf/simulated/wall/indestructible/riveted, +/area/space) +"qd" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/xray, +/turf/simulated/floor/wood/oak, +/area/admin) +"qh" = ( +/obj/structure/table, +/obj/random/toolbox, +/obj/random/bomb_supply, +/obj/machinery/syndicatebomb/badmin/clown, +/turf/simulated/floor/wood/oak, +/area/admin) +"qt" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/revolver/golden, +/turf/simulated/floor/wood/oak, +/area/admin) +"qv" = ( +/obj/structure/holowindow, +/turf/simulated/floor/holofloor{ + dir = 4; + icon_state = "red" + }, +/area/holodeck/source_thunderdomecourt) +"qx" = ( +/obj/structure/table/wood, +/obj/item/ammo_box/foambox/sniper, +/obj/item/ammo_box/foambox/sniper, +/obj/item/ammo_box/foambox/sniper, +/obj/item/ammo_box/foambox/sniper, +/obj/item/ammo_box/foambox/sniper, +/obj/item/ammo_box/foambox/sniper, +/obj/item/ammo_box/foambox/sniper, +/obj/item/ammo_box/foambox/sniper, +/obj/item/ammo_box/foambox/sniper, +/obj/item/ammo_box/foambox/sniper, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"qR" = ( +/obj/structure/table/wood, +/obj/item/gun/throw/piecannon, +/obj/item/paper{ + info = "Если тут ничего не видно, значит никто до сих пор не вернул спрайт пирожной пушке." + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"qT" = ( +/obj/structure/holohoop{ + dir = 1 + }, +/turf/simulated/floor/holofloor{ + icon_state = "green" + }, +/area/holodeck/source_basketball) +"qU" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/box/ids, +/obj/item/storage/box/ids, +/obj/item/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"ri" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove{ + icon_state = "boxinggreen"; + item_state = "boxinggreen" + }, +/turf/simulated/floor/holofloor{ + dir = 10; + icon_state = "green" + }, +/area/holodeck/source_boxingcourt) +"ro" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/ionrifle, +/turf/simulated/floor/wood/oak, +/area/admin) +"rq" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon_state = "green" + }, +/area/holodeck/source_basketball) +"rr" = ( +/obj/structure/table/wood, +/obj/item/melee/energy/axe, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"rv" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon_state = "red" + }, +/area/holodeck/source_boxingcourt) +"rD" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/obj/item/shield/energy, +/obj/machinery/recharger/wallcharger/upgraded{ + pixel_x = 3; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel/dark, +/area/tdome/arena) +"rE" = ( +/obj/item/beach_ball/holoball, +/turf/simulated/floor/holofloor, +/area/holodeck/source_basketball) +"rG" = ( +/obj/mecha/combat/marauder/seraph/loaded, +/turf/simulated/floor/wood/oak, +/area/admin) +"rM" = ( +/obj/structure/table/holotable, +/turf/simulated/floor/holofloor{ + dir = 10; + icon_state = "green" + }, +/area/holodeck/source_thunderdomecourt) +"rP" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/alien, +/turf/simulated/floor/wood/oak, +/area/admin) +"sd" = ( +/obj/structure/holowindow{ + dir = 1 + }, +/turf/simulated/floor/holofloor{ + dir = 8; + icon_state = "green" + }, +/area/holodeck/source_thunderdomecourt) +"sm" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/laser/retro, +/turf/simulated/floor/wood/oak, +/area/admin) +"sr" = ( +/turf/simulated/floor/holofloor{ + dir = 1; + icon_state = "red" + }, +/area/holodeck/source_emptycourt) +"su" = ( +/obj/item/gun/grenadelauncher, +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/admin) +"sA" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/kinetic_accelerator, +/turf/simulated/floor/wood/oak, +/area/admin) +"sO" = ( +/obj/structure/holowindow, +/turf/simulated/floor/holofloor{ + icon_state = "asteroid7" + }, +/area/holodeck/source_knightarena) +"ta" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/toy, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"tc" = ( +/obj/structure/holowindow, +/turf/simulated/floor/holofloor{ + dir = 4; + icon_state = "red" + }, +/area/holodeck/source_knightarena) +"th" = ( +/obj/machinery/door/poddoor{ + id_tag = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/turf/simulated/floor/plasteel/dark, +/area/tdome/arena) +"to" = ( +/obj/structure/table/wood, +/obj/item/kitchen/knife/combat/survival, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"tx" = ( +/obj/machinery/computer/syndicate_depot/teleporter{ + name = "Redspace Teleporter Console" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"tF" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/kinetic_accelerator/crossbow/large, +/turf/simulated/floor/wood/oak, +/area/admin) +"tI" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"tN" = ( +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/structure/table/wood, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"tP" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon_state = "green" + }, +/area/holodeck/source_thunderdomecourt) +"tS" = ( +/obj/structure/chair/stool/holostool{ + dir = 4 + }, +/turf/simulated/floor/holofloor{ + icon_state = "asteroid" + }, +/area/holodeck/source_picnicarea) +"ua" = ( +/obj/machinery/teleport/hub/upgraded{ + admin_usage = 1 + }, +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"ug" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel/dark, +/area/tdome/arena) +"ux" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/laser/captain, +/turf/simulated/floor/wood/oak, +/area/admin) +"uL" = ( +/obj/structure/table/wood, +/obj/item/gun/energy, +/obj/item/gun/energy/laser/captain, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun/cyborg, +/obj/item/gun/energy/gun/nuclear, +/turf/simulated/floor/wood/oak, +/area/admin) +"uW" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "What?" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"vb" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/e_gun/old, +/turf/simulated/floor/wood/oak, +/area/admin) +"vc" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/gun/turret, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"vd" = ( +/obj/structure/chair/comfy/beige{ + dir = 4; + layer = 5; + pixel_y = -2 + }, +/obj/machinery/ai_status_display{ + pixel_y = -30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"ve" = ( +/obj/structure/table/wood, +/obj/item/toy/sword, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"vg" = ( +/obj/structure/table/wood, +/obj/item/suppressor, +/obj/item/suppressor, +/obj/item/suppressor, +/obj/item/suppressor, +/obj/item/suppressor, +/obj/item/suppressor, +/obj/item/suppressor, +/obj/item/suppressor, +/obj/item/suppressor, +/turf/simulated/floor/wood/oak, +/area/admin) +"vm" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor{ + icon = 'icons/misc/beach.dmi'; + icon_state = "desert" + }, +/area/holodeck/source_beach) +"vu" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/shotgun/toy, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"vv" = ( +/obj/item/beach_ball, +/turf/simulated/floor/holofloor{ + icon = 'icons/misc/beach.dmi'; + icon_state = "desert" + }, +/area/holodeck/source_beach) +"vL" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/obj/item/shield/energy, +/obj/machinery/recharger/wallcharger/upgraded{ + pixel_x = 3; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel, +/area/tdome/arena_source) +"vM" = ( +/obj/structure/table/wood, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 2 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"vS" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"vU" = ( +/obj/structure/table/wood, +/obj/item/kitchen/knife/plastic, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"vY" = ( +/obj/structure/table/wood, +/obj/item/kitchen/knife/butcher/meatcleaver, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"wd" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/toy/pistol/enforcer, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"we" = ( +/obj/structure/table/wood, +/obj/machinery/syndicatebomb/emp, +/turf/simulated/floor/wood/oak, +/area/admin) +"wf" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/clown, +/obj/item/gun/energy/disabler, +/obj/item/gun/energy/disabler/cyborg, +/obj/item/gun/energy/mimicgun, +/turf/simulated/floor/wood/oak, +/area/admin) +"wh" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/laser/captain/scattershot, +/turf/simulated/floor/wood/oak, +/area/admin) +"wp" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/gun/mini, +/turf/simulated/floor/wood/oak, +/area/admin) +"wC" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon_state = "red" + }, +/area/holodeck/source_knightarena) +"wE" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/holofloor{ + icon_state = "snow" + }, +/area/holodeck/source_snowfield) +"wJ" = ( +/obj/structure/chair, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/obj/effect/landmark/spawner/tdomeobserve, +/turf/simulated/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"wM" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/radio/headset/centcom, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"wZ" = ( +/obj/machinery/computer/card/centcom{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"xe" = ( +/obj/structure/table/wood, +/obj/item/dnainjector/antiblind, +/obj/item/dnainjector/anticlumsy, +/obj/item/dnainjector/anticomic, +/obj/item/dnainjector/anticough, +/obj/item/dnainjector/antideaf, +/obj/item/dnainjector/antiepi, +/obj/item/dnainjector/antifire, +/obj/item/dnainjector/antiglasses, +/obj/item/dnainjector/antihallucination, +/obj/item/dnainjector/antihulk, +/obj/item/dnainjector/antiinsulation, +/obj/item/dnainjector/antimidgit, +/obj/item/dnainjector/antimorph, +/obj/item/dnainjector/antinobreath, +/obj/item/dnainjector/antinoprints, +/obj/item/dnainjector/antiregenerate, +/obj/item/dnainjector/antiremoteview, +/obj/item/dnainjector/antistutt, +/obj/item/dnainjector/antitele, +/obj/item/dnainjector/antitour, +/turf/simulated/floor/wood/oak, +/area/admin) +"xh" = ( +/obj/structure/table/wood, +/obj/item/kitchen/knife/combat, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"xq" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/c20r, +/turf/simulated/floor/wood/oak, +/area/admin) +"xx" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"xy" = ( +/obj/structure/table/wood, +/obj/item/toy/foamblade, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"xA" = ( +/turf/simulated/floor/holofloor{ + dir = 6; + icon_state = "red" + }, +/area/holodeck/source_basketball) +"xI" = ( +/obj/item/mecha_parts/mecha_equipment/cable_layer, +/obj/item/mecha_parts/mecha_equipment/drill/diamonddrill, +/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp, +/obj/item/mecha_parts/mecha_equipment/rcd, +/obj/item/mecha_parts/mecha_equipment/extinguisher, +/obj/structure/closet/crate, +/turf/simulated/floor/wood/oak, +/area/admin) +"xJ" = ( +/turf/simulated/floor/holofloor{ + dir = 8; + icon_state = "red" + }, +/area/holodeck/source_emptycourt) +"xK" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"xN" = ( +/obj/structure/table/wood, +/obj/machinery/syndicatebomb, +/obj/machinery/syndicatebomb/training, +/turf/simulated/floor/wood/oak, +/area/admin) +"xS" = ( +/turf/simulated/floor/holofloor{ + dir = 1; + icon_state = "red" + }, +/area/holodeck/source_basketball) +"xY" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/pulse, +/turf/simulated/floor/wood/oak, +/area/admin) +"yj" = ( +/obj/structure/table/holotable, +/obj/machinery/readybutton, +/turf/simulated/floor/holofloor{ + dir = 9; + icon_state = "red" + }, +/area/holodeck/source_thunderdomecourt) +"yp" = ( +/turf/simulated/wall/indestructible, +/area/adminconstruction) +"yq" = ( +/turf/simulated/floor/holofloor{ + dir = 9; + icon_state = "red" + }, +/area/holodeck/source_emptycourt) +"yC" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/staff/slipping, +/turf/simulated/floor/wood/oak, +/area/admin) +"yH" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/gun/nuclear, +/turf/simulated/floor/wood/oak, +/area/admin) +"yI" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser/cyborg, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/scatter, +/obj/item/gun/energy/laser/tag, +/turf/simulated/floor/wood/oak, +/area/admin) +"yM" = ( +/obj/structure/table/wood, +/obj/item/grenade/smokebomb, +/turf/simulated/floor/wood/oak, +/area/admin) +"yN" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor{ + icon = 'icons/turf/floors/plating.dmi'; + icon_state = "asteroid" + }, +/area/holodeck/source_desert) +"yX" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/pulse/destroyer, +/turf/simulated/floor/wood/oak, +/area/admin) +"yY" = ( +/turf/simulated/floor/plasteel, +/area/tdome/arena_source) +"za" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/obj/item/shield/energy, +/obj/machinery/recharger/wallcharger/upgraded{ + pixel_x = 3; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel, +/area/tdome/arena_source) +"zj" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/shotgun/boltaction/enchanted/arcane_barrage/blood, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"zs" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/laser/instakill/red, +/turf/simulated/floor/wood/oak, +/area/admin) +"zw" = ( +/obj/structure/table/wood, +/obj/item/adminfu_scroll, +/turf/simulated/floor/wood/oak, +/area/admin) +"zA" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/shotgun/automatic/combat, +/turf/simulated/floor/wood/oak, +/area/admin) +"zF" = ( +/obj/effect/landmark/spawner/tdome2, +/turf/simulated/floor/plasteel/dark, +/area/tdome/arena) +"zP" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/kinetic_accelerator/minebot, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"zT" = ( +/obj/structure/dresser, +/turf/simulated/floor/wood/oak, +/area/admin) +"Ah" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/indestructible + }, +/turf/simulated/wall/indestructible, +/area/admin) +"At" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/pistol/m1911, +/turf/simulated/floor/wood/oak, +/area/admin) +"AD" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon_state = "blue" + }, +/area/holodeck/source_knightarena) +"AJ" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/l6_saw/toy/riot, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"AM" = ( +/obj/machinery/igniter/on, +/turf/simulated/floor/plasteel/dark, +/area/tdome/arena) +"AP" = ( +/obj/structure/table/holotable, +/obj/item/clothing/suit/armor/riot/knight/red, +/obj/item/clothing/head/helmet/riot/knight/red, +/obj/item/holo/claymore/red, +/turf/simulated/floor/holofloor{ + dir = 1; + icon_state = "red" + }, +/area/holodeck/source_knightarena) +"AV" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/wand/fireball, +/turf/simulated/floor/wood/oak, +/area/admin) +"AW" = ( +/obj/machinery/computer/account_database{ + name = "Admin Accounts Database"; + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"Bb" = ( +/turf/simulated/floor/holofloor{ + icon_state = "engine"; + name = "Holodeck Projector Floor" + }, +/area/holodeck/source_wildlife) +"Bg" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/revolver, +/turf/simulated/floor/wood/oak, +/area/admin) +"Bh" = ( +/obj/machinery/chem_dispenser/upgraded{ + hackedcheck = 1 + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"Bl" = ( +/obj/structure/table/wood, +/obj/item/paper{ + info = "Тут ничего не было. Я серьёзно." + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"Bo" = ( +/obj/effect/landmark/spawner/tdomeobserve, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/tdome/tdomeobserve) +"Bv" = ( +/obj/item/kirbyplants, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"Bz" = ( +/obj/structure/rack, +/obj/item/tank/jetpack/oxygen, +/obj/item/tank/jetpack/oxygen, +/turf/simulated/floor/wood/oak, +/area/admin) +"BB" = ( +/obj/machinery/light/small/directional/west, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"BG" = ( +/obj/structure/table/wood/poker, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"BK" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon = 'icons/turf/floors/plating.dmi'; + icon_state = "asteroid11" + }, +/area/holodeck/source_desert) +"BM" = ( +/obj/item/gun/projectile/revolver/grenadelauncher/multi, +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/admin) +"BN" = ( +/obj/structure/table/wood, +/obj/item/melee/candy_sword, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"BX" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/pulse/cyborg, +/turf/simulated/floor/wood/oak, +/area/admin) +"Ca" = ( +/obj/machinery/computer/operating, +/turf/simulated/floor/wood/oak, +/area/admin) +"Cc" = ( +/obj/structure/table, +/obj/item/storage/toolbox/syndicate, +/obj/item/shard, +/obj/item/kitchen/knife, +/obj/item/storage/firstaid/tactical, +/turf/simulated/floor/wood/oak, +/area/admin) +"Cx" = ( +/obj/effect/turf_decal/bot, +/obj/structure/barricade/sandbags, +/turf/simulated/floor/plasteel, +/area/tdome/arena_source) +"CD" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/pulse/carbine, +/turf/simulated/floor/wood/oak, +/area/admin) +"CI" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/kinetic_accelerator/experimental, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"CM" = ( +/obj/machinery/optable, +/turf/simulated/floor/wood/oak, +/area/admin) +"CN" = ( +/obj/item/gun/throw, +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/admin) +"CR" = ( +/obj/item/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/radio, +/obj/structure/table/wood, +/obj/machinery/door_control/no_emag/east{ + id = "tdome1"; + req_access_txt = "102" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"CT" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/tentacle, +/turf/simulated/floor/wood/oak, +/area/admin) +"De" = ( +/turf/simulated/floor/holofloor{ + dir = 9; + icon_state = "green" + }, +/area/holodeck/source_basketball) +"Do" = ( +/obj/structure/table/wood, +/obj/item/paper{ + info = "Тут должен был быть доминатор, но к счастью его тут нет." + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"Dt" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/gun/advtaser, +/turf/simulated/floor/wood/oak, +/area/admin) +"DB" = ( +/obj/structure/table/wood, +/obj/item/grenade/syndieminibomb, +/turf/simulated/floor/wood/oak, +/area/admin) +"DC" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/holofloor{ + icon_state = "snow" + }, +/area/holodeck/source_snowfield) +"DJ" = ( +/turf/simulated/floor/holofloor/space, +/area/holodeck/source_space) +"DM" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/lasercannon/cyborg, +/turf/simulated/floor/wood/oak, +/area/admin) +"DO" = ( +/turf/simulated/floor/holofloor{ + dir = 6; + icon_state = "green" + }, +/area/holodeck/source_emptycourt) +"DR" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/shotgun/automatic, +/turf/simulated/floor/wood/oak, +/area/admin) +"DZ" = ( +/obj/structure/holohoop, +/turf/simulated/floor/holofloor{ + dir = 1; + icon_state = "red" + }, +/area/holodeck/source_basketball) +"Ec" = ( +/turf/simulated/floor/holofloor, +/area/holodeck/source_boxingcourt) +"Eh" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/mindflayer, +/turf/simulated/floor/wood/oak, +/area/admin) +"Ei" = ( +/obj/machinery/flasher{ + id = "tdomeflash"; + name = "Thunderdome Flash" + }, +/turf/simulated/floor/plasteel, +/area/tdome/arena_source) +"Eo" = ( +/obj/structure/barricade/sandbags, +/obj/effect/turf_decal/bot, +/turf/simulated/floor/plasteel, +/area/tdome/arena_source) +"Ep" = ( +/turf/simulated/floor/holofloor{ + dir = 6; + icon_state = "green" + }, +/area/holodeck/source_basketball) +"Er" = ( +/turf/simulated/floor/holofloor{ + dir = 5; + icon_state = "red" + }, +/area/holodeck/source_emptycourt) +"EG" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/telegun, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"EH" = ( +/turf/simulated/floor/holofloor{ + icon_state = "engine"; + name = "Holodeck Projector Floor" + }, +/area/holodeck/source_plating) +"EM" = ( +/turf/simulated/floor/carpet, +/area/admin) +"ES" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/revolver/russian/soul, +/turf/simulated/floor/wood/oak, +/area/admin) +"ET" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"EV" = ( +/obj/structure/chair/comfy/beige{ + dir = 4; + layer = 5; + pixel_y = -2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"EW" = ( +/obj/structure/table/wood, +/obj/item/holosign_creator/engineering, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/admin) +"Fb" = ( +/obj/item/gun/energy/taser, +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/admin) +"Fi" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/lwap, +/turf/simulated/floor/wood/oak, +/area/admin) +"Fk" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/pulse/pistol/m1911, +/turf/simulated/floor/wood/oak, +/area/admin) +"Fn" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/shotgun/bulldog, +/turf/simulated/floor/wood/oak, +/area/admin) +"Fp" = ( +/obj/effect/decal/warning_stripes/yellow, +/obj/machinery/bluespace_beacon/syndicate, +/turf/simulated/floor/wood/oak, +/area/admin) +"Fy" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/pulse/turret, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"FM" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon_state = "green" + }, +/area/holodeck/source_boxingcourt) +"FO" = ( +/obj/structure/table/wood, +/obj/item/kitchen/knife/ritual, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"FR" = ( +/obj/structure/holowindow, +/turf/simulated/floor/holofloor, +/area/holodeck/source_thunderdomecourt) +"FS" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"FU" = ( +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"Ga" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/shotgun/riot/short, +/turf/simulated/floor/wood/oak, +/area/admin) +"Gf" = ( +/turf/simulated/floor/holofloor{ + dir = 8; + icon_state = "red" + }, +/area/holodeck/source_thunderdomecourt) +"Gg" = ( +/obj/structure/chair/stool/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"Gk" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove{ + icon_state = "boxinggreen"; + item_state = "boxinggreen" + }, +/turf/simulated/floor/holofloor{ + dir = 6; + icon_state = "green" + }, +/area/holodeck/source_boxingcourt) +"Gn" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/revolver/fingergun/fake, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"Gp" = ( +/turf/simulated/floor/holofloor{ + icon = 'icons/turf/floors/plating.dmi'; + icon_state = "asteroid6" + }, +/area/holodeck/source_desert) +"Gr" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/l6_saw, +/turf/simulated/floor/wood/oak, +/area/admin) +"GA" = ( +/obj/structure/table, +/obj/item/storage/pill_bottle/random_drug_bottle, +/obj/item/reagent_containers/glass/bottle/adminordrazine, +/turf/simulated/floor/wood/oak, +/area/admin) +"GG" = ( +/obj/structure/table/wood, +/obj/machinery/syndicatebomb/badmin/clown, +/turf/simulated/floor/wood/oak, +/area/admin) +"GK" = ( +/obj/machinery/status_display, +/turf/simulated/wall/indestructible/riveted, +/area/tdome/tdomeadmin) +"GN" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/staff/healing, +/turf/simulated/floor/wood/oak, +/area/admin) +"GU" = ( +/obj/structure/holowindow, +/turf/simulated/floor/holofloor{ + dir = 8; + icon_state = "red" + }, +/area/holodeck/source_thunderdomecourt) +"GY" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/wormhole_projector, +/turf/simulated/floor/wood/oak, +/area/admin) +"Hc" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/gyropistol, +/turf/simulated/floor/wood/oak, +/area/admin) +"Hk" = ( +/obj/structure/table/wood, +/obj/item/gun/throw/crossbow, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"Hw" = ( +/obj/machinery/door/poddoor{ + id_tag = "thunderdomegen"; + name = "General Supply" + }, +/turf/simulated/floor/plasteel/dark, +/area/tdome/arena) +"HE" = ( +/obj/structure/chair/comfy/beige{ + dir = 4; + layer = 5; + pixel_y = -2 + }, +/obj/machinery/status_display{ + pixel_y = -30 + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"HL" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/sniper_rifle, +/turf/simulated/floor/wood/oak, +/area/admin) +"HP" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon = 'icons/turf/floors/plating.dmi'; + icon_state = "asteroid3" + }, +/area/holodeck/source_desert) +"HQ" = ( +/obj/structure/bookcase/random, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"HT" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the Thunderdome."; + name = "Thunderdome Telescreen"; + network = list("Thunderdome") + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"Id" = ( +/obj/structure/closet{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + req_access = list(114) + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"Il" = ( +/turf/simulated/floor/holofloor{ + dir = 8; + icon_state = "red" + }, +/area/holodeck/source_boxingcourt) +"Iq" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "tdome1"; + name = "Corpse Retreival Entrance" + }, +/turf/simulated/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"Iv" = ( +/obj/structure/table/holotable, +/turf/simulated/floor/holofloor{ + dir = 5; + icon_state = "red" + }, +/area/holodeck/source_knightarena) +"IB" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/toy/pistol, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"IG" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/landmark/spawner/tdomeadmin, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"II" = ( +/obj/item/gun/syringe/syndicate, +/obj/structure/table/wood, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"IR" = ( +/obj/machinery/door_control/no_emag{ + id = "thunderdome"; + name = "Main Blast Doors Control"; + req_access_txt = "102" + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"IV" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood/oak, +/area/admin) +"IW" = ( +/obj/structure/chair/stool/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor{ + icon_state = "asteroid" + }, +/area/holodeck/source_picnicarea) +"IX" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"Jc" = ( +/obj/structure/table/wood, +/obj/item/chainsaw/doomslayer, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"Jd" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/bow, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"Je" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/staff/door, +/turf/simulated/floor/wood/oak, +/area/admin) +"Jk" = ( +/turf/simulated/floor/holofloor{ + icon_state = "green" + }, +/area/holodeck/source_basketball) +"Jn" = ( +/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated{ + dir = 2 + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"Jq" = ( +/turf/simulated/floor/plasteel/dark, +/area/tdome/arena) +"Js" = ( +/turf/simulated/floor/holofloor{ + dir = 10; + icon_state = "green" + }, +/area/holodeck/source_emptycourt) +"Jt" = ( +/obj/structure/barricade/sandbags, +/obj/effect/turf_decal/bot, +/turf/simulated/floor/plasteel/dark, +/area/tdome/arena) +"Jv" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/lighter, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"Jy" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/laser/retro/old, +/turf/simulated/floor/wood/oak, +/area/admin) +"JC" = ( +/turf/simulated/floor/holofloor{ + icon = 'icons/misc/beach.dmi'; + icon_state = "desert" + }, +/area/holodeck/source_beach) +"JD" = ( +/obj/structure/table/wood, +/obj/item/kitchen/knife/combat/survival/bone, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"JJ" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"JQ" = ( +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"JV" = ( +/turf/simulated/floor/holofloor{ + icon_state = "engine"; + name = "Burn-Mix Floor"; + nitrogen = 0; + oxygen = 2500; + temperature = 370; + toxins = 5000 + }, +/area/holodeck/source_burntest) +"JW" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/gun/advtaser/mounted, +/turf/simulated/floor/wood/oak, +/area/admin) +"Ka" = ( +/turf/simulated/floor/holofloor{ + icon_state = "asteroid7" + }, +/area/holodeck/source_knightarena) +"Kg" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel, +/area/tdome/arena_source) +"Kk" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/staff, +/turf/simulated/floor/wood/oak, +/area/admin) +"Km" = ( +/obj/structure/table/wood/poker, +/turf/simulated/floor/wood/oak, +/area/admin) +"Kn" = ( +/obj/machinery/flasher{ + id = "tdomeflash"; + name = "Thunderdome Flash" + }, +/turf/simulated/floor/plasteel/dark, +/area/tdome/arena) +"Kt" = ( +/obj/structure/table/holotable, +/turf/simulated/floor/holofloor{ + dir = 10; + icon_state = "blue" + }, +/area/holodeck/source_knightarena) +"Kv" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/kinetic_accelerator/crossbow, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"Kw" = ( +/obj/structure/closet, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"Ky" = ( +/obj/structure/table/wood, +/obj/item/sleeping_carp_scroll, +/turf/simulated/floor/wood/oak, +/area/admin) +"Kz" = ( +/obj/structure/chair/comfy/beige{ + dir = 1; + layer = 5; + pixel_y = -2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"KB" = ( +/turf/simulated/floor/holofloor{ + icon_state = "asteroid" + }, +/area/holodeck/source_picnicarea) +"KD" = ( +/obj/machinery/door_control/no_emag{ + id = "thunderdomehea"; + name = "Heavy Supply Control"; + req_access_txt = "102" + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"KG" = ( +/obj/structure/table, +/obj/random/tool, +/obj/item/clothing/gloves/color/yellow, +/obj/item/pinpointer/advpinpointer, +/turf/simulated/floor/wood/oak, +/area/admin) +"KH" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/gun/advtaser/cyborg, +/turf/simulated/floor/wood/oak, +/area/admin) +"KJ" = ( +/obj/machinery/computer/card/centcom, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"KL" = ( +/obj/structure/table/wood, +/obj/item/gun/throw/crossbow/french, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"KR" = ( +/obj/mecha/combat/marauder/loaded{ + operation_req_access = list(114) + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"KS" = ( +/turf/simulated/floor/holofloor, +/area/holodeck/source_basketball) +"La" = ( +/obj/structure/table/wood, +/obj/item/grenade/clusterbuster/booze, +/turf/simulated/floor/wood/oak, +/area/admin) +"Ld" = ( +/turf/simulated/floor/holofloor{ + icon_state = "cult" + }, +/area/holodeck/source_theatre) +"Lg" = ( +/turf/simulated/wall/indestructible/fakeglass, +/area/tdome/tdomeadmin) +"Lm" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/holofloor{ + icon_state = "snow" + }, +/area/holodeck/source_snowfield) +"Lx" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/revolver/doublebarrel/improvised/cane, +/turf/simulated/floor/wood/oak, +/area/admin) +"LA" = ( +/obj/effect/turf_decal/bot, +/obj/structure/barricade/sandbags, +/turf/simulated/floor/plasteel/dark, +/area/tdome/arena) +"LK" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/shotgun/lethal, +/turf/simulated/floor/wood/oak, +/area/admin) +"LL" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/pistol/enforcer, +/turf/simulated/floor/wood/oak, +/area/admin) +"LR" = ( +/turf/simulated/floor/holofloor{ + icon = 'icons/turf/floors/plating.dmi'; + icon_state = "asteroid5" + }, +/area/holodeck/source_desert) +"LW" = ( +/obj/machinery/computer/syndicate_depot/teleporter, +/turf/simulated/floor/wood/oak, +/area/admin) +"Mj" = ( +/obj/structure/table, +/obj/item/card/id/centcom{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/card/id, +/obj/item/card/id/admin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"Mk" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/l6_saw/toy, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"MC" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/shotgun, +/turf/simulated/floor/wood/oak, +/area/admin) +"MD" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/adminconstruction) +"MF" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/pulse/destroyer/annihilator, +/turf/simulated/floor/wood/oak, +/area/admin) +"MH" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/temperature, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"MX" = ( +/obj/structure/table/wood, +/obj/item/mecha_parts/mecha_equipment/medical/syringe_gun, +/turf/simulated/floor/wood/oak, +/area/admin) +"Np" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/staff/chaos, +/turf/simulated/floor/wood/oak, +/area/admin) +"Nu" = ( +/obj/structure/chair/comfy/beige{ + dir = 8; + layer = 5; + pixel_y = -2 + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"Ny" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/shotgun/toy/crossbow, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"Nz" = ( +/obj/structure/table/wood, +/obj/item/kitchen/knife, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"ND" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon = 'icons/turf/floors/plating.dmi'; + icon_state = "asteroid1" + }, +/area/holodeck/source_desert) +"NF" = ( +/turf/simulated/floor/holofloor{ + icon_state = "red" + }, +/area/holodeck/source_basketball) +"NQ" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/pistol/APS, +/turf/simulated/floor/wood/oak, +/area/admin) +"NT" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/item/flash, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"NU" = ( +/obj/structure/table/wood, +/obj/item/paper{ + info = "/obj/item/gun/syringe/blowgun" + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"Oe" = ( +/obj/structure/chair/comfy/green{ + dir = 1 + }, +/obj/effect/landmark/spawner/tdomeadmin, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"Of" = ( +/obj/structure/table/wood, +/obj/item/ammo_box/foambox, +/obj/item/ammo_box/foambox, +/obj/item/ammo_box/foambox, +/obj/item/ammo_box/foambox, +/obj/item/ammo_box/foambox, +/obj/item/ammo_box/foambox, +/obj/item/ammo_box/foambox, +/obj/item/ammo_box/foambox, +/obj/item/ammo_box/foambox, +/obj/item/ammo_box/foambox, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"Oi" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor{ + icon = 'icons/turf/floors/plating.dmi'; + icon_state = "asteroid" + }, +/area/holodeck/source_desert) +"Or" = ( +/obj/structure/table/wood, +/obj/item/gun/syringe, +/turf/simulated/floor/wood/oak, +/area/admin) +"Ot" = ( +/turf/simulated/wall/indestructible/riveted, +/area/tdome/arena) +"Ox" = ( +/turf/simulated/floor/carpet, +/area/adminconstruction) +"Oz" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/laser/instakill, +/turf/simulated/floor/wood/oak, +/area/admin) +"OF" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/ionrifle/carbine, +/turf/simulated/floor/wood/oak, +/area/admin) +"OH" = ( +/turf/simulated/floor/holofloor, +/area/holodeck/source_emptycourt) +"OL" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/blacktrenchcoat, +/obj/item/clothing/shoes/black, +/turf/simulated/floor/wood/oak, +/area/admin) +"OS" = ( +/obj/structure/table/wood, +/obj/item/kitchen/knife/butcher, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"OW" = ( +/obj/structure/table/wood, +/obj/item/whetstone, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"Pc" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon_state = "red" + }, +/area/holodeck/source_thunderdomecourt) +"Pq" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/immolator/multi/cyborg, +/turf/simulated/floor/wood/oak, +/area/admin) +"Pt" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon_state = "green" + }, +/area/holodeck/source_emptycourt) +"Py" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/gun/hos, +/turf/simulated/floor/wood/oak, +/area/admin) +"Pz" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/spikethrower, +/turf/simulated/floor/wood/oak, +/area/admin) +"PB" = ( +/obj/structure/table/wood, +/obj/item/holo/esword, +/obj/item/holo/esword/green, +/obj/item/holo/esword/red, +/obj/item/melee/energy/sword/pirate, +/obj/item/melee/energy/sword/saber, +/obj/item/melee/energy/sword/saber/blue, +/obj/item/melee/energy/sword/saber/green, +/obj/item/melee/energy/sword/saber/purple, +/obj/item/melee/energy/sword/saber/red, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"PE" = ( +/obj/structure/chair/comfy/beige{ + dir = 4; + layer = 5; + pixel_y = -2 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"PJ" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/revolver/doublebarrel, +/turf/simulated/floor/wood/oak, +/area/admin) +"PQ" = ( +/obj/item/storage/box/syringes, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/grenade/chem_grenade/large, +/obj/item/grenade/chem_grenade/large, +/obj/item/grenade/chem_grenade/large, +/obj/item/grenade/chem_grenade/large, +/obj/item/gun/syringe/rapidsyringe, +/obj/item/reagent_containers/spray/chemsprayer, +/obj/structure/closet, +/obj/item/ammo_casing/shotgun/dart, +/obj/item/ammo_casing/shotgun/dart, +/obj/item/ammo_casing/shotgun/dart, +/obj/item/ammo_casing/shotgun/dart, +/obj/item/ammo_casing/shotgun/dart, +/obj/item/ammo_casing/shotgun/dart, +/turf/simulated/floor/wood/oak, +/area/admin) +"PT" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/under/color/green, +/obj/item/holo/esword/green, +/turf/simulated/floor/holofloor{ + icon_state = "green" + }, +/area/holodeck/source_thunderdomecourt) +"Qc" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the Thunderdome."; + name = "Thunderdome Telescreen"; + network = list("Thunderdome") + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"Qd" = ( +/turf/simulated/floor/holofloor{ + icon = 'icons/misc/beach.dmi'; + icon_state = "beach" + }, +/area/holodeck/source_beach) +"Qg" = ( +/obj/structure/table/holotable, +/obj/machinery/readybutton, +/turf/simulated/floor/holofloor{ + dir = 6; + icon_state = "blue" + }, +/area/holodeck/source_knightarena) +"Qt" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/tommygun, +/turf/simulated/floor/wood/oak, +/area/admin) +"QA" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/gun/blueshield/pdw9, +/turf/simulated/floor/wood/oak, +/area/admin) +"QH" = ( +/obj/structure/table/wood, +/obj/item/fireaxe, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"QI" = ( +/obj/mecha/combat/honker/loaded{ + operation_req_access = list(114) + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"QN" = ( +/obj/structure/table/wood, +/obj/item/holosign_creator/atmos, +/obj/item/holosign_creator/atmos, +/obj/item/holosign_creator/atmos, +/obj/item/holosign_creator/atmos, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/admin) +"QP" = ( +/obj/structure/table/wood, +/obj/item/kitchen/knife/carrotshiv, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"QT" = ( +/obj/structure/table/holotable, +/obj/machinery/readybutton, +/turf/simulated/floor/holofloor{ + dir = 9; + icon_state = "red" + }, +/area/holodeck/source_knightarena) +"Rd" = ( +/obj/structure/table/wood/poker, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"Rh" = ( +/turf/simulated/floor/holofloor, +/area/holodeck/source_thunderdomecourt) +"Rj" = ( +/obj/item/paper{ + info = "Комната копипастнута с парашизы. Много чего что есть в билде, тут может отсутствовать, потому что всем лень изучать, особенно мне. /Если ты заметишь что тут чего-то нет, напиши мне в карточную или разрабскую. /-Aylong"; + name = "Напоминалка" + }, +/turf/simulated/floor/carpet, +/area/admin) +"Rn" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/toy/pistol/riot, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"RA" = ( +/obj/machinery/sleeper/upgraded, +/turf/simulated/floor/wood/oak, +/area/admin) +"RI" = ( +/obj/machinery/door/poddoor{ + id_tag = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/turf/simulated/floor/plasteel, +/area/tdome/arena_source) +"RQ" = ( +/turf/simulated/wall/indestructible/riveted, +/area/tdome/arena_source) +"RS" = ( +/turf/simulated/floor/holofloor{ + icon_state = "green" + }, +/area/holodeck/source_emptycourt) +"RU" = ( +/obj/machinery/igniter/on, +/turf/simulated/floor/plasteel, +/area/tdome/arena_source) +"RV" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/chrono_gun, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"RW" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/plasmacutter/adv, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"RZ" = ( +/turf/simulated/floor/holofloor{ + icon_state = "snow" + }, +/area/holodeck/source_snowfield) +"Sf" = ( +/turf/simulated/floor/holofloor{ + dir = 8; + icon_state = "blue" + }, +/area/holodeck/source_knightarena) +"Sm" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/c20r/toy, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"Sp" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/shotgun/toy/tommygun, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"Sy" = ( +/obj/machinery/r_n_d/server/centcom, +/turf/simulated/floor/wood/oak, +/area/admin) +"SA" = ( +/obj/structure/mineral_door/wood, +/turf/simulated/floor/wood/oak, +/area/admin) +"SK" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/laser/mounted, +/turf/simulated/floor/wood/oak, +/area/admin) +"SR" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/admin) +"SU" = ( +/obj/item/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/radio, +/obj/structure/table/wood, +/obj/machinery/door_control/no_emag/west{ + id = "tdome2"; + req_access_txt = "102" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"Te" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/staff/focus, +/turf/simulated/floor/wood/oak, +/area/admin) +"Th" = ( +/obj/structure/table/wood, +/obj/item/radio/headset, +/obj/item/radio/headset/abductor, +/obj/item/radio/headset/alt, +/obj/item/radio/headset/binary{ + name = "binary radio headset" + }, +/obj/item/radio/headset/bot{ + name = "bot radio headset" + }, +/obj/item/radio/headset/centcom, +/obj/item/radio/headset/chameleon{ + name = "chamelon radio headset" + }, +/obj/item/radio/headset/ert, +/obj/item/radio/headset/ert/alt/commander, +/obj/item/radio/headset/heads{ + name = "heads radio headset" + }, +/obj/item/radio/headset/heads/ai_integrated, +/obj/item/radio/headset/heads/blueshield/alt, +/obj/item/radio/headset/heads/captain/alt, +/obj/item/radio/headset/heads/ce, +/obj/item/radio/headset/heads/cmo, +/obj/item/radio/headset/heads/hop, +/obj/item/radio/headset/heads/hos, +/obj/item/radio/headset/heads/magistrate/alt, +/obj/item/radio/headset/heads/ntrep, +/obj/item/radio/headset/heads/rd, +/obj/item/radio/headset/headset_cargo, +/obj/item/radio/headset/headset_cargo/mining, +/obj/item/radio/headset/headset_com, +/obj/item/radio/headset/headset_eng, +/obj/item/radio/headset/headset_iaa, +/obj/item/radio/headset/headset_med, +/obj/item/radio/headset/headset_medsci, +/obj/item/radio/headset/headset_rob, +/obj/item/radio/headset/headset_sci, +/obj/item/radio/headset/headset_sec, +/obj/item/radio/headset/headset_sec/alt, +/obj/item/radio/headset/headset_service, +/obj/item/radio/headset/syndicate{ + name = "syndicate radio headset" + }, +/obj/item/radio/headset/syndicate/alt, +/obj/item/radio/headset/syndicate/alt/syndteam{ + name = "syndicate team headset" + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"Tu" = ( +/obj/structure/table/wood, +/obj/item/ammo_box/foambox/sniper/riot, +/obj/item/ammo_box/foambox/sniper/riot, +/obj/item/ammo_box/foambox/sniper/riot, +/obj/item/ammo_box/foambox/sniper/riot, +/obj/item/ammo_box/foambox/sniper/riot, +/obj/item/ammo_box/foambox/sniper/riot, +/obj/item/ammo_box/foambox/sniper/riot, +/obj/item/ammo_box/foambox/sniper/riot, +/obj/item/ammo_box/foambox/sniper/riot, +/obj/item/ammo_box/foambox/sniper/riot, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"Tv" = ( +/turf/simulated/floor/holofloor{ + dir = 8; + icon_state = "red" + }, +/area/holodeck/source_basketball) +"Tw" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/laser/instakill/blue, +/turf/simulated/floor/wood/oak, +/area/admin) +"TH" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/pistol/deagle/gold, +/turf/simulated/floor/wood/oak, +/area/admin) +"TI" = ( +/turf/simulated/floor/holofloor{ + dir = 8; + icon_state = "red" + }, +/area/holodeck/source_knightarena) +"TK" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/kinetic_accelerator/cyborg, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"TN" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/gun/blueshield, +/turf/simulated/floor/wood/oak, +/area/admin) +"TO" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/wood/oak, +/area/admin) +"TW" = ( +/turf/simulated/floor/holofloor{ + dir = 10; + icon_state = "green" + }, +/area/holodeck/source_basketball) +"TY" = ( +/turf/simulated/wall/indestructible, +/area/space) +"Ui" = ( +/obj/structure/table, +/obj/item/storage/box/beakers, +/obj/item/reagent_containers/glass/beaker/bluespace, +/obj/item/reagent_containers/glass/beaker/bluespace, +/obj/item/reagent_containers/glass/beaker/bluespace, +/obj/item/reagent_containers/glass/beaker/bluespace, +/obj/item/storage/box/autoinjectors, +/turf/simulated/floor/wood/oak, +/area/admin) +"Uk" = ( +/obj/structure/table/wood, +/obj/item/chainsaw, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"Ul" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/meteorgun, +/obj/item/gun/energy/meteorgun/pen, +/turf/simulated/floor/wood/oak, +/area/admin) +"Up" = ( +/turf/simulated/wall/indestructible, +/area/admin) +"Uq" = ( +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"UH" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"UO" = ( +/turf/simulated/floor/wood/oak, +/area/admin) +"UQ" = ( +/obj/mecha/combat/reticence/loaded, +/turf/simulated/floor/wood/oak, +/area/admin) +"UU" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/pistol/deagle/camo, +/turf/simulated/floor/wood/oak, +/area/admin) +"UW" = ( +/obj/effect/landmark/spawner/tdomeobserve, +/obj/structure/chair, +/turf/simulated/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"Vb" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/mini_uzi, +/turf/simulated/floor/wood/oak, +/area/admin) +"Vh" = ( +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/tdome/tdomeadmin) +"Vk" = ( +/obj/structure/table/holotable/wood, +/turf/simulated/floor/holofloor{ + icon_state = "grimy" + }, +/area/holodeck/source_meetinghall) +"Vl" = ( +/obj/structure/table/wood, +/obj/item/whetstone/cult, +/turf/simulated/floor/plasteel{ + icon_state = "hierophant1" + }, +/area/admin) +"Vr" = ( +/obj/structure/table, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/assembly/infra, +/obj/item/assembly/infra, +/obj/item/assembly/infra, +/obj/item/assembly/infra, +/obj/item/assembly/infra, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/turf/simulated/floor/wood/oak, +/area/admin) +"Vu" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/wand/polymorph, +/turf/simulated/floor/wood/oak, +/area/admin) +"Vw" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/wood/oak, +/area/admin) +"Vy" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"VD" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/c20r/toy/riot, +/turf/simulated/floor/wood/oak, +/area/admin) +"VK" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/sniper_rifle/syndicate, +/turf/simulated/floor/wood/oak, +/area/admin) +"VS" = ( +/turf/simulated/floor/holofloor{ + icon = 'icons/misc/beach.dmi'; + icon_state = "seashallow" + }, +/area/holodeck/source_beach) +"Wb" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/revolver/capgun, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"Wc" = ( +/obj/structure/table/wood/poker, +/obj/item/radio/intercom/syndicate, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/admin) +"Wd" = ( +/obj/structure/table/wood, +/obj/item/toy/chainsaw, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"Wx" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/arc_revolver, +/turf/simulated/floor/wood/oak, +/area/admin) +"WA" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/holofloor{ + icon_state = "snow" + }, +/area/holodeck/source_snowfield) +"WD" = ( +/obj/structure/table/wood, +/obj/item/implanter/adrenalin{ + pixel_x = 12; + pixel_y = -12 + }, +/obj/item/implanter/emp{ + pixel_x = 9; + pixel_y = -9 + }, +/obj/item/implanter/explosive{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/implanter/explosive_macro{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/implanter/freedom, +/obj/item/implanter/krav_maga{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/implanter/mindshield{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/implanter/storage{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"WE" = ( +/obj/structure/table/wood, +/obj/item/paper{ + info = "Компактная снайперка /obj/item/gun/projectile/automatic/sniper_rifle/compact" + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"WF" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/m90, +/turf/simulated/floor/wood/oak, +/area/admin) +"WM" = ( +/turf/simulated/floor/holofloor{ + dir = 8; + icon_state = "green" + }, +/area/holodeck/source_thunderdomecourt) +"WP" = ( +/obj/machinery/door/poddoor{ + id_tag = "thunderdomehea"; + name = "Heavy Supply" + }, +/turf/simulated/floor/plasteel, +/area/tdome/arena_source) +"WT" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space, +/obj/item/clothing/suit/space, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/head/helmet/space, +/turf/simulated/floor/wood/oak, +/area/admin) +"WX" = ( +/obj/structure/table/wood, +/obj/item/suppressor/specialoffer, +/obj/item/suppressor/specialoffer, +/obj/item/suppressor/specialoffer, +/obj/item/suppressor/specialoffer, +/obj/item/suppressor/specialoffer, +/obj/item/suppressor/specialoffer, +/obj/item/suppressor/specialoffer, +/obj/item/suppressor/specialoffer, +/obj/item/suppressor/specialoffer, +/obj/item/suppressor/specialoffer, +/turf/simulated/floor/wood/oak, +/area/admin) +"WY" = ( +/turf/simulated/floor/holofloor{ + icon_state = "green" + }, +/area/holodeck/source_boxingcourt) +"Xa" = ( +/obj/structure/table, +/obj/item/card/id/silver{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/card/id/captains_spare, +/obj/item/card/id/lifetime{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"Xb" = ( +/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/pulse, +/obj/item/mecha_parts/mecha_equipment/weapon/honker, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/carbine, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flashbang/clusterbang, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot, +/obj/structure/closet/crate, +/turf/simulated/floor/wood/oak, +/area/admin) +"Xk" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/wt550, +/turf/simulated/floor/wood/oak, +/area/admin) +"Xm" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/lasercarbine, +/turf/simulated/floor/wood/oak, +/area/admin) +"Xy" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/kinetic_accelerator/crossbow/large/cyborg, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"XB" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/speargun, +/turf/simulated/floor/wood/oak, +/area/admin) +"XZ" = ( +/obj/structure/table/wood, +/obj/item/melee/spellblade, +/turf/simulated/floor/wood/oak, +/area/admin) +"Yc" = ( +/obj/mecha/combat/phazon{ + operation_req_access = list(114) + }, +/turf/simulated/floor/wood/oak, +/area/admin) +"Yd" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/revolver/russian, +/turf/simulated/floor/wood/oak, +/area/admin) +"Yl" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/c20r/toy/riot, +/turf/simulated/floor/carpet/arcade, +/area/admin) +"Yn" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/automatic/pistol, +/turf/simulated/floor/wood/oak, +/area/admin) +"YA" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/obj/item/shield/energy, +/obj/machinery/recharger/wallcharger/upgraded{ + pixel_x = 3; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel/dark, +/area/tdome/arena) +"YC" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/decloner, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"YM" = ( +/obj/structure/holowindow{ + dir = 1 + }, +/turf/simulated/floor/holofloor{ + icon_state = "asteroid7" + }, +/area/holodeck/source_knightarena) +"YZ" = ( +/obj/structure/table/wood, +/obj/item/gun/projectile/shotgun/automatic/dual_tube, +/turf/simulated/floor/wood/oak, +/area/admin) +"Zi" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon = 'icons/turf/floors/plating.dmi'; + icon_state = "asteroid2" + }, +/area/holodeck/source_desert) +"Zk" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/plasmacutter, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgrey" + }, +/area/admin) +"Zo" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/staff/animate, +/turf/simulated/floor/wood/oak, +/area/admin) +"Zp" = ( +/turf/simulated/floor/holofloor{ + dir = 4; + icon_state = "red" + }, +/area/holodeck/source_emptycourt) +"ZA" = ( +/obj/structure/table/wood, +/obj/item/grenade/clusterbuster/mega_syndieminibomb, +/turf/simulated/floor/wood/oak, +/area/admin) + +(1,1,1) = {" +Ah +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +Ot +Ot +Ot +Ot +Ot +Ot +cN +cN +cN +cN +cN +cN +cN +cN +RQ +RQ +RQ +RQ +RQ +RQ +RQ +cN +cN +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(2,1,1) = {" +Up +bz +BB +tI +tI +Bv +Up +Up +jZ +UO +cB +Up +jZ +UO +cB +Up +kT +FO +QH +jD +EM +EM +Of +mk +qx +Tu +Up +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +dN +dN +dN +dN +dN +Ot +cN +cN +cN +cN +cN +cN +cN +cN +RQ +fh +fh +fh +fh +fh +RQ +cN +cN +cN +pO +mY +Tv +Tv +Tv +jH +De +aG +aG +aG +TW +pO +"} +(3,1,1) = {" +Up +bL +UO +UO +UO +UO +Rd +Up +zT +UO +IV +Up +zT +UO +IV +Up +JD +UO +UO +UO +EM +EM +UO +UO +UO +fg +Up +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +Hw +Hw +Hw +Hw +Hw +Ot +Ot +Ot +cN +cN +cN +cN +cN +cN +RQ +kb +kb +kb +kb +kb +RQ +RQ +RQ +cN +pO +mY +Tv +xS +KS +NF +kY +KS +Jk +aG +TW +pO +"} +(4,1,1) = {" +Up +ca +UO +UO +UO +UO +Rd +Up +jZ +UO +cB +Up +jZ +UO +cB +Up +QP +xh +OW +vU +EM +EM +ib +pJ +UO +ve +Up +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +Jq +Jq +Jq +Jq +Jq +aA +YA +Ot +cN +cN +cN +cN +cN +cN +RQ +yY +yY +yY +yY +yY +WP +vL +RQ +cN +pO +DZ +KS +xS +KS +NF +kY +rE +Jk +KS +qT +pO +"} +(5,1,1) = {" +Up +lX +UO +Km +UO +UO +Rd +Up +Up +SA +Up +Up +Up +SA +Up +Up +vY +gE +Vl +PB +EM +EM +xy +im +UO +Ny +Up +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +Jq +zF +Jq +zF +Jq +aA +YA +Ot +cN +cN +cN +cN +cN +cN +RQ +yY +yY +yY +yY +yY +WP +vL +RQ +cN +pO +pa +aH +xS +KS +NF +kY +KS +Jk +rq +Ep +pO +"} +(6,1,1) = {" +Up +ua +lt +UO +UO +lt +Rd +Up +tI +bL +tI +Up +tI +bL +tI +Up +OS +UO +UO +UO +EM +EM +do +eK +UO +wd +Up +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +Jq +Jq +zF +Jq +Jq +aA +YA +Ot +cN +cN +cN +cN +cN +cN +RQ +yY +yY +yY +yY +yY +WP +vL +RQ +cN +pO +pa +aH +aH +aH +xA +nC +rq +rq +rq +Ep +pO +"} +(7,1,1) = {" +Up +Up +Up +UO +UO +Up +Up +Up +bL +UO +bL +iY +bL +UO +bL +Up +jB +fn +Uk +BN +EM +EM +oB +Sp +UO +ta +Up +cN +TY +cN +TY +cN +fO +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +Jq +zF +Jq +zF +Jq +aA +YA +Ot +cN +cN +cN +cN +cN +cN +RQ +yY +yY +yY +yY +yY +WP +vL +RQ +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(8,1,1) = {" +Up +bL +lE +UO +UO +UO +pN +UO +UO +UO +UO +UO +UO +UO +UO +Up +to +kq +Jc +na +EM +EM +Sm +Yl +UO +IB +Up +cN +cN +cN +cN +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +Jq +Jq +Jq +Jq +Jq +aA +YA +Ot +cN +cN +cN +cN +cN +cN +RQ +yY +yY +yY +yY +yY +WP +vL +RQ +cN +pO +JC +JC +JC +JC +JC +JC +JC +Qd +VS +VS +pO +"} +(9,1,1) = {" +Up +tx +UO +UO +UO +UO +pN +UO +UO +UO +UO +UO +UO +UO +UO +Up +kM +UO +UO +UO +EM +EM +UO +UO +UO +Rn +Up +cN +TY +cN +TY +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +bM +bM +bM +bM +bM +Ot +th +th +th +th +th +Ot +cI +cI +cI +cI +cI +cI +cN +pO +RQ +RI +RI +RI +RI +RI +RQ +pO +pO +cN +pO +JC +hw +JC +JC +aQ +JC +JC +Qd +VS +VS +pO +"} +(10,1,1) = {" +Up +bL +lt +UO +UO +UO +pN +UO +UO +UO +UO +UO +UO +UO +UO +Up +Nz +cP +rr +mR +EM +EM +Mk +AJ +Wd +vu +Up +cN +cN +cN +cN +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +bM +UW +Bo +UW +gq +AM +Jq +Jq +Jq +Jq +Jq +AM +Lg +SU +lT +dP +HQ +cI +cN +pO +RU +yY +yY +yY +yY +yY +RU +pO +cN +cN +pO +JC +JC +JC +JC +JC +JC +JC +Qd +VS +VS +pO +"} +(11,1,1) = {" +Up +Up +Up +UO +UO +Up +Up +Up +bL +UO +bL +vS +bL +UO +bL +Up +Up +Up +Up +Up +EM +EM +Up +Up +Up +Up +Up +cN +TY +cN +TY +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +bM +wJ +Bo +nW +gq +ug +Jq +Jq +Jq +Jq +Jq +ug +hT +ku +dP +dP +eG +GK +cN +pO +Kg +yY +yY +yY +yY +yY +Kg +pO +cN +cN +pO +JC +vm +JC +JC +JC +vv +JC +Qd +VS +VS +pO +"} +(12,1,1) = {" +Up +tI +Bv +UO +UO +Bv +tI +Up +tI +bL +bL +Up +tI +bL +tI +Up +MH +zP +CI +TK +EM +EM +KL +Hk +Kv +Wb +Up +cN +cN +cN +cN +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +bM +nW +Bo +nW +gq +LA +ug +Jq +Jq +Jq +ug +LA +Lg +jQ +dP +dP +NT +Lg +cN +pO +Cx +Kg +yY +yY +yY +Kg +Cx +pO +cN +cN +pO +JC +JC +JC +JC +JC +JC +JC +Qd +VS +VS +pO +"} +(13,1,1) = {" +Up +EV +EV +UO +UO +EV +EV +Up +Up +SA +Up +Up +Up +SA +Up +Up +Gn +UO +UO +UO +EM +EM +UO +UO +UO +II +Up +cN +TY +cN +TY +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +mC +fG +Bo +fG +gq +Jq +Jt +Jq +Jq +Jq +Jt +Jq +Lg +HT +dP +dP +wM +Lg +cN +pO +yY +Eo +yY +yY +yY +Eo +yY +pO +cN +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(14,1,1) = {" +Up +jj +EV +UO +UO +EV +vd +Up +jZ +UO +cB +Up +jZ +UO +cB +Up +Jd +GY +sA +Pz +EM +EM +XB +Or +MX +pE +Up +cN +cN +cN +cN +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +bM +nW +Bo +nW +gq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Lg +jQ +dP +dP +vM +cI +cN +pO +yY +yY +yY +yY +yY +yY +yY +pO +cN +cN +pO +jY +Il +Il +Il +Il +fb +fb +fb +fb +ri +pO +"} +(15,1,1) = {" +Up +PE +EV +UO +UO +EV +HE +Up +zT +UO +IV +Up +zT +UO +IV +Up +Zk +ki +NU +cz +EM +EM +tF +Ul +oX +Xy +Up +cN +TY +cN +TY +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +bM +nW +Bo +nW +gq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Lg +IG +dP +dP +Uq +Lg +cN +pO +yY +yY +yY +yY +yY +yY +yY +pO +cN +cN +pO +nZ +Ec +Ec +Ec +Ec +Ec +Ec +Ec +Ec +WY +pO +"} +(16,1,1) = {" +Up +Rd +Rd +UO +UO +Rd +Wc +Up +jZ +UO +cB +Up +jZ +UO +cB +Up +RW +UO +UO +UO +EM +EM +UO +UO +UO +EG +Up +cN +cN +cN +cN +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +bM +nW +Bo +nW +gq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Lg +Qc +dP +dP +KD +Lg +cN +pO +yY +yY +yY +yY +yY +yY +yY +pO +cN +cN +pO +nZ +Ec +Ec +Ec +Ec +Ec +Ec +Ec +Ec +WY +pO +"} +(17,1,1) = {" +Up +aa +UO +UO +UO +Nu +ea +Up +Up +Up +Up +Up +Up +Up +Up +Up +RV +vc +Fy +ho +EM +EM +YC +zj +fc +qR +Up +Up +Up +Up +Up +Up +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +bM +UW +Bo +nW +gq +Jq +Jq +Jq +Kn +Jq +Jq +Jq +Lg +Oe +dP +dP +IR +cI +cN +pO +yY +yY +yY +Ei +yY +yY +yY +pO +cN +cN +pO +nZ +Ec +Ec +Ec +Ec +Ec +Ec +Ec +Ec +WY +pO +"} +(18,1,1) = {" +Up +Kw +UO +UO +UO +Id +BG +Up +WX +vg +Th +xe +oh +gS +WD +Up +Up +Up +Up +Up +EM +EM +Up +Up +Up +Up +Up +EW +EW +EW +EW +EW +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +bM +nW +Bo +nW +gq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Lg +cT +dP +dP +dx +Lg +cN +pO +yY +yY +yY +yY +yY +yY +yY +pO +cN +cN +pO +hA +rv +rv +rv +rv +FM +FM +FM +FM +Gk +pO +"} +(19,1,1) = {" +Up +Up +Up +uW +uW +Up +Up +Up +UO +UO +UO +UO +UO +UO +UO +UO +UO +UO +UO +UO +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +Ox +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +bM +nW +Bo +nW +gq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Lg +IG +dP +dP +Uq +Lg +cN +pO +yY +yY +yY +yY +yY +yY +yY +pO +cN +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(20,1,1) = {" +Up +bL +iY +bL +bL +bL +bL +Up +TH +NQ +Yn +jK +og +ES +mn +qt +UO +hZ +xq +VD +EM +Rj +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +Ox +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +bM +nW +Bo +nW +gq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Lg +jQ +dP +dP +Jv +cI +cN +pO +yY +yY +yY +yY +yY +yY +yY +pO +cN +cN +pO +JV +JV +JV +JV +JV +JV +JV +JV +JV +JV +pO +"} +(21,1,1) = {" +Up +KJ +Kz +bL +bL +bL +bL +Up +UU +lR +by +LL +CN +Yd +mU +Bg +UO +Vb +eY +WF +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +Ox +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +mC +fG +Bo +fG +gq +Jq +Jt +Jq +Jq +Jq +Jt +Jq +Lg +HT +dP +dP +tN +Lg +cN +pO +yY +Eo +yY +yY +yY +Eo +yY +pO +cN +cN +pO +JV +em +JV +JV +JV +JV +JV +JV +em +JV +pO +"} +(22,1,1) = {" +Up +qU +oc +BG +ne +bL +bL +Up +UO +UO +UO +UO +UO +UO +UO +UO +UO +UO +UO +UO +EM +EM +Zo +Je +Np +jM +Up +QN +QN +QN +QN +QN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +bM +wJ +Bo +nW +gq +LA +ug +Jq +Jq +Jq +ug +LA +Lg +jQ +dP +dP +xx +Lg +cN +pO +Cx +Kg +yY +yY +yY +Kg +Cx +pO +cN +cN +pO +JV +JV +JV +JV +JV +JV +JV +JV +JV +JV +pO +"} +(23,1,1) = {" +Up +Up +Up +Up +Up +Up +Up +Up +zA +io +nU +PJ +io +DR +MC +UO +eL +UO +WE +HL +EM +EM +Je +UO +UO +UO +Up +Up +Up +Up +Up +Up +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +bM +nW +Bo +nW +gq +ug +Jq +Jq +Jq +Jq +Jq +ug +Iq +ku +dP +dP +Vh +GK +cN +pO +Kg +yY +yY +yY +yY +yY +Kg +pO +cN +cN +pO +JV +em +JV +JV +JV +JV +JV +JV +em +JV +pO +"} +(24,1,1) = {" +Up +Jn +UO +ET +UQ +Yc +hV +hh +Ga +Fn +gR +pk +Lx +LK +YZ +UO +Gr +UO +dZ +VK +EM +EM +Kk +yC +Te +GN +Up +cN +cN +cN +cN +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +bM +UW +Bo +UW +gq +AM +Jq +Jq +Jq +Jq +Jq +AM +Lg +CR +lT +dP +HQ +cI +cN +pO +RU +yY +yY +yY +yY +yY +RU +pO +cN +cN +pO +JV +JV +JV +JV +JV +JV +JV +JV +JV +JV +pO +"} +(25,1,1) = {" +Up +xI +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +SR +Up +cN +TY +cN +TY +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +bM +bM +bM +bM +bM +Ot +th +th +th +th +th +Ot +cI +cI +cI +cI +cI +cI +cN +pO +RQ +RI +RI +RI +RI +RI +RQ +pO +pO +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(26,1,1) = {" +Up +Xb +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +EM +SR +Up +cN +cN +cN +cN +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +Jq +Jq +Jq +Jq +Jq +aA +rD +Ot +cN +cN +cN +cN +cN +cN +RQ +yY +yY +yY +yY +yY +WP +za +RQ +cN +pO +mX +mX +mX +mX +cV +mX +mX +mX +mX +yN +pO +"} +(27,1,1) = {" +Up +Jn +UO +FS +UO +KR +rG +QI +Xk +Qt +SR +EM +EM +Hc +mB +gd +UO +UO +Up +Up +Up +Up +Up +EM +EM +Up +Up +cN +TY +cN +TY +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +Jq +hI +Jq +hI +Jq +aA +rD +Ot +cN +cN +cN +cN +cN +cN +RQ +yY +yY +yY +yY +yY +WP +za +RQ +cN +pO +mX +Oi +Zi +mX +mX +cV +Oi +mX +ND +mX +pO +"} +(28,1,1) = {" +Up +Up +Up +Up +Up +Up +Up +Up +Bl +hi +SR +EM +EM +su +BM +jl +UO +UO +Up +Eh +qd +ux +Xm +UO +UO +sm +Up +cN +cN +cN +cN +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +Jq +Jq +hI +Jq +Jq +aA +rD +Ot +cN +cN +cN +cN +cN +cN +RQ +yY +yY +yY +yY +yY +WP +za +RQ +cN +pO +Gp +mX +mX +yN +mX +mX +cV +mX +mX +HP +pO +"} +(29,1,1) = {" +Up +ax +gc +kQ +bI +nN +GA +Up +EM +EM +EM +EM +EM +UO +UO +UO +UO +hE +Up +Oz +UO +UO +UO +UO +UO +nX +Up +cN +TY +cN +TY +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +Jq +hI +Jq +hI +Jq +aA +rD +Ot +cN +cN +cN +cN +cN +cN +RQ +yY +yY +yY +yY +yY +WP +za +RQ +cN +pO +mX +mX +mX +BK +mX +mX +mX +cV +mX +mX +pO +"} +(30,1,1) = {" +Up +PQ +UO +TO +Vr +UO +jq +Up +EM +EM +EM +EM +EM +UO +UO +UO +UO +XZ +Up +Tw +UO +dw +QA +ro +UO +Jy +Up +cN +cN +cN +cN +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +Jq +Jq +Jq +Jq +Jq +aA +rD +Ot +cN +cN +cN +cN +cN +cN +RQ +yY +yY +yY +yY +yY +WP +za +RQ +cN +pO +mX +cY +mX +mX +mX +LR +yN +mX +cV +Oi +pO +"} +(31,1,1) = {" +Up +Cc +UO +Bh +UO +UO +Ui +Up +EM +EM +SR +er +ko +Vu +AV +gk +fF +CT +Up +zs +UO +Pq +At +OF +UO +yI +Up +cN +TY +cN +TY +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +Hw +Hw +Hw +Hw +Hw +Ot +Ot +Ot +cN +cN +cN +cN +cN +cN +RQ +kb +kb +kb +kb +kb +RQ +RQ +RQ +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(32,1,1) = {" +Up +xK +UO +UO +EM +EM +EM +EM +EM +EM +SR +Up +Up +Up +Up +Up +Up +Up +Up +xY +UO +UO +UO +UO +UO +uL +Up +cN +cN +cN +cN +cN +yp +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +MD +yp +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +el +el +el +el +el +Ot +cN +cN +cN +cN +cN +cN +cN +cN +RQ +ez +ez +ez +ez +ez +RQ +cN +cN +cN +pO +yq +xJ +xJ +xJ +xJ +ep +ep +ep +ep +Js +pO +"} +(33,1,1) = {" +Up +CM +UO +UO +EM +EM +EM +EM +EM +EM +EM +EM +EM +zw +nK +La +OL +dk +Up +CD +UO +aw +Wx +Fb +UO +wf +Up +cN +TY +cN +TY +cN +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +yp +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +Ot +Ot +Ot +Ot +Ot +Ot +Ot +cN +cN +cN +cN +cN +cN +cN +cN +RQ +RQ +RQ +RQ +RQ +RQ +RQ +cN +cN +cN +pO +sr +OH +OH +OH +OH +OH +OH +OH +OH +RS +pO +"} +(34,1,1) = {" +Up +Ca +RA +UO +oL +Vw +SR +Up +EM +EM +EM +EM +EM +UO +UO +UO +UO +lA +Up +BX +UO +UO +UO +UO +UO +wh +Up +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +sr +OH +OH +OH +OH +OH +OH +OH +OH +RS +pO +"} +(35,1,1) = {" +Up +Up +Up +UO +Up +Up +Up +Up +EM +EM +Up +Up +UO +UO +UO +UO +UO +ou +Up +yX +UO +JW +rP +yH +UO +dA +Up +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +sr +OH +OH +OH +OH +OH +OH +OH +OH +RS +pO +"} +(36,1,1) = {" +Up +WT +Bz +UO +UO +Up +GG +UO +EM +EM +ZA +Up +LW +UO +UO +UO +UO +wZ +Up +MF +UO +wp +Fk +iM +UO +DM +Up +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +Er +Zp +Zp +Zp +Zp +Pt +Pt +Pt +Pt +DO +pO +"} +(37,1,1) = {" +Up +mM +UO +UO +UO +Up +we +UO +UO +UO +kU +Up +Fp +UO +UO +UO +UO +AW +Up +Fi +UO +UO +UO +UO +UO +TN +Up +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(38,1,1) = {" +Up +eD +qh +KG +UO +Up +pC +xN +DB +dn +yM +Up +Up +Sy +Mj +Xa +cQ +Ky +Up +SK +Py +Do +Do +Dt +KH +vb +Up +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +QT +TI +TI +TI +ew +hB +Sf +Sf +Sf +Kt +pO +"} +(39,1,1) = {" +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +Up +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +TY +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +AP +Ka +Ka +Ka +sO +YM +Ka +Ka +Ka +hd +pO +"} +(40,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +AP +Ka +Ka +Ka +sO +YM +Ka +Ka +Ka +hd +pO +"} +(41,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +AP +Ka +Ka +Ka +sO +YM +Ka +Ka +Ka +hd +pO +"} +(42,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +Iv +wC +wC +wC +tc +lc +AD +AD +AD +Qg +pO +"} +(43,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(44,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +nk +nk +nk +nk +nk +nk +nk +nk +nk +nk +pO +"} +(45,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +nk +JQ +Vk +nk +bq +bq +bq +bq +bq +nk +pO +"} +(46,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +nk +JQ +Vk +nk +bq +bq +bq +bq +bq +nk +pO +"} +(47,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +nk +JQ +Vk +nk +bq +bq +bq +bq +bq +nk +pO +"} +(48,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +nk +nk +nk +nk +nk +nk +nk +nk +nk +nk +pO +"} +(49,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(50,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +UH +JJ +hp +KB +IX +IX +KB +hp +JJ +UH +pO +"} +(51,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +Vy +hp +JJ +KB +tS +tS +KB +JJ +hp +Vy +pO +"} +(52,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +UH +JJ +hp +KB +ld +ld +KB +hp +JJ +UH +pO +"} +(53,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +Vy +hp +JJ +KB +IW +IW +KB +JJ +hp +Vy +pO +"} +(54,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +UH +JJ +hp +KB +IX +IX +KB +hp +JJ +UH +pO +"} +(55,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(56,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +EH +EH +EH +EH +EH +EH +EH +EH +EH +EH +pO +"} +(57,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +EH +EH +EH +EH +EH +EH +EH +EH +EH +EH +pO +"} +(58,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +EH +EH +EH +EH +EH +EH +EH +EH +EH +EH +pO +"} +(59,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +EH +EH +EH +EH +EH +EH +EH +EH +EH +EH +pO +"} +(60,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +EH +EH +EH +EH +EH +EH +EH +EH +EH +EH +pO +"} +(61,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(62,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +RZ +RZ +RZ +RZ +RZ +RZ +RZ +gN +RZ +RZ +pO +"} +(63,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +RZ +wE +RZ +RZ +RZ +DC +RZ +RZ +WA +RZ +pO +"} +(64,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +RZ +RZ +RZ +RZ +RZ +RZ +RZ +RZ +RZ +RZ +pO +"} +(65,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +RZ +RZ +Lm +RZ +WA +RZ +RZ +RZ +DC +RZ +pO +"} +(66,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +RZ +RZ +RZ +RZ +RZ +RZ +wE +RZ +RZ +gN +pO +"} +(67,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(68,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +DJ +DJ +DJ +DJ +DJ +DJ +DJ +DJ +DJ +DJ +pO +"} +(69,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +DJ +DJ +DJ +DJ +DJ +DJ +DJ +DJ +DJ +DJ +pO +"} +(70,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +DJ +DJ +DJ +DJ +DJ +DJ +DJ +DJ +DJ +DJ +pO +"} +(71,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +DJ +DJ +DJ +DJ +DJ +DJ +DJ +DJ +DJ +DJ +pO +"} +(72,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +DJ +DJ +DJ +DJ +DJ +DJ +DJ +DJ +DJ +DJ +pO +"} +(73,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(74,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +dB +Ld +Ld +dX +dX +dX +FU +FU +FU +FU +pO +"} +(75,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +fm +Ld +Ld +dX +FU +Gg +Gg +Gg +Gg +Gg +pO +"} +(76,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +fm +Ld +Ld +dX +FU +Gg +Gg +Gg +Gg +Gg +pO +"} +(77,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +fm +Ld +Ld +dX +FU +Gg +Gg +Gg +Gg +Gg +pO +"} +(78,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +fm +Ld +Ld +hN +dX +dX +FU +FU +FU +FU +pO +"} +(79,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(80,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +yj +Gf +Gf +Gf +GU +sd +WM +WM +WM +rM +pO +"} +(81,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +mw +Rh +Rh +Rh +FR +li +Rh +Rh +Rh +PT +pO +"} +(82,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +mw +Rh +Rh +Rh +FR +li +Rh +Rh +Rh +PT +pO +"} +(83,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +mw +Rh +Rh +Rh +FR +li +Rh +Rh +Rh +PT +pO +"} +(84,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +nM +Pc +Pc +Pc +qv +oj +tP +tP +tP +kf +pO +"} +(85,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(86,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +Bb +Bb +Bb +Bb +Bb +Bb +Bb +Bb +Bb +Bb +pO +"} +(87,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +Bb +jF +Bb +Bb +Bb +Bb +Bb +Bb +jF +Bb +pO +"} +(88,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +Bb +Bb +Bb +Bb +jF +jF +Bb +Bb +Bb +Bb +pO +"} +(89,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +Bb +jF +Bb +Bb +Bb +Bb +Bb +Bb +jF +Bb +pO +"} +(90,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +Bb +Bb +Bb +Bb +Bb +Bb +Bb +Bb +Bb +Bb +pO +"} +(91,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +pO +"} +(92,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(93,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(94,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(95,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(96,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(97,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(98,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(99,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(100,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(101,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(102,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(103,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(104,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(105,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(106,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(107,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(108,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(109,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(110,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(111,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(112,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(113,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(114,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(115,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(116,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(117,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(118,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(119,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(120,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(121,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(122,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(123,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(124,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(125,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(126,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(127,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(128,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(129,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(130,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(131,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(132,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(133,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(134,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(135,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(136,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(137,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(138,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(139,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(140,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(141,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(142,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(143,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(144,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(145,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(146,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(147,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(148,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(149,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(150,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(151,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(152,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(153,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(154,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(155,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(156,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(157,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(158,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(159,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(160,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(161,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(162,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(163,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(164,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(165,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(166,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(167,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(168,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(169,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(170,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(171,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(172,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(173,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(174,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(175,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(176,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(177,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(178,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(179,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(180,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(181,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(182,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(183,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(184,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(185,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(186,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(187,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(188,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(189,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(190,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(191,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(192,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(193,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(194,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(195,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(196,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(197,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(198,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(199,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(200,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(201,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(202,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(203,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(204,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(205,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(206,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(207,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(208,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(209,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(210,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(211,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(212,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(213,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(214,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(215,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(216,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(217,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(218,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(219,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(220,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(221,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(222,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(223,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(224,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(225,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(226,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(227,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(228,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(229,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(230,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(231,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(232,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(233,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(234,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(235,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(236,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(237,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(238,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(239,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(240,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(241,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(242,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(243,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(244,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(245,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(246,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(247,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(248,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(249,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(250,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(251,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(252,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(253,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(254,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} +(255,1,1) = {" +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +cN +"} diff --git a/_maps/map_files220/generic/Lavaland.dmm b/_maps/map_files220/generic/Lavaland.dmm new file mode 100644 index 000000000000..f4b05fd97f86 --- /dev/null +++ b/_maps/map_files220/generic/Lavaland.dmm @@ -0,0 +1,74106 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/simulated/wall/indestructible/boss, +/area/lavaland/surface/outdoors) +"ab" = ( +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ac" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"ad" = ( +/turf/simulated/mineral/random/high_chance/volcanic, +/area/lavaland/surface/outdoors) +"ae" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"af" = ( +/obj/structure/necropolis_gate/legion_gate, +/obj/structure/necropolis_arch, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"ag" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"ah" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"ai" = ( +/turf/simulated/mineral/random/volcanic, +/area/lavaland/surface/outdoors) +"aj" = ( +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"ak" = ( +/turf/simulated/mineral/random/volcanic, +/area/lavaland/surface/outdoors/unexplored/danger) +"al" = ( +/turf/simulated/mineral/random/high_chance/volcanic, +/area/lavaland/surface/outdoors/unexplored/danger) +"am" = ( +/turf/simulated/mineral/random/volcanic, +/area/lavaland/surface/outdoors/unexplored) +"an" = ( +/turf/simulated/mineral/random/labormineral/volcanic, +/area/lavaland/surface/outdoors) +"ap" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/mine/laborcamp) +"aq" = ( +/turf/simulated/wall, +/area/mine/laborcamp) +"ar" = ( +/obj/machinery/camera{ + c_tag = "Labor Camp Bathroom"; + dir = 4; + network = list("Labor Camp") + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/mine/laborcamp) +"at" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/curtain/open/shower, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/mine/laborcamp) +"au" = ( +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/pickaxe/safety, +/obj/item/flashlight/lantern, +/obj/item/mining_scanner, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/beanie/orange, +/obj/item/clothing/gloves/fingerless, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/suit/storage/hazardvest, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/mine/laborcamp) +"av" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/mine/laborcamp) +"aw" = ( +/obj/machinery/computer/shuttle/labor{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/siberia) +"ax" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/mine/laborcamp) +"ay" = ( +/obj/item/bikehorn/rubberducky, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/plasteel/white, +/area/mine/laborcamp) +"az" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"aA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Labor Camp Storage"; + dir = 1; + network = list("Labor Camp") + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"aB" = ( +/obj/machinery/door/airlock{ + name = "Labor Camp Bathroom" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/mine/laborcamp) +"aD" = ( +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"aE" = ( +/obj/item/radio/intercom/locked/prison{ + pixel_y = 22 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/mine/laborcamp) +"aF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/mine/laborcamp) +"aI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/living_quarters) +"aJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"aK" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/mine/laborcamp/security) +"aL" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/obj/structure/chair/brass{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"aM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"aN" = ( +/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/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"aP" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/mine/laborcamp/security) +"aQ" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/mine/laborcamp/security) +"aS" = ( +/obj/machinery/mineral/ore_redemption/labor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/mine/laborcamp) +"aT" = ( +/obj/structure/ore_box, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"aU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"aV" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/mine/laborcamp) +"aW" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/mine/laborcamp) +"aX" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"aY" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"aZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/mine/laborcamp/security) +"ba" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Security" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Labor"; + name = "labor camp blast door" + }, +/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/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/laborcamp/security) +"bb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"bd" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"be" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/mine/laborcamp) +"bf" = ( +/turf/simulated/wall, +/area/mine/eva) +"bg" = ( +/obj/structure/cable{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/living_quarters) +"bh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/mine/laborcamp) +"bi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"bk" = ( +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"bl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/arrows, +/obj/machinery/requests_console{ + department = "Labor Camp"; + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/mine/laborcamp) +"bm" = ( +/obj/machinery/cryopod, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/mine/laborcamp) +"bn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "browncorner" + }, +/area/mine/laborcamp) +"bo" = ( +/obj/structure/closet/crate/secure/loot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"bp" = ( +/obj/structure/ore_box, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"bq" = ( +/turf/simulated/wall, +/area/mine/production) +"br" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/living_quarters) +"bt" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"bu" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"bv" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/mineral/volcanic/lava_land_surface, +/area/lavaland/surface/outdoors) +"bw" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"bx" = ( +/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/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"by" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/mine/laborcamp) +"bz" = ( +/obj/machinery/light_switch{ + name = "custom placement"; + pixel_y = 25 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"bA" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Backroom" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"bB" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Labor Camp APC"; + pixel_y = 24 + }, +/obj/machinery/computer/cryopod{ + pixel_y = 38 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"bC" = ( +/turf/simulated/wall, +/area/mine/sleeper) +"bD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"bE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"bF" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/mine/eva) +"bG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/sleeper) +"bH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/mechbay) +"bI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Station Hallway" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/living_quarters) +"bJ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/sign/securearea{ + name = "\improper KEEP CLEAR: DOCKING AREA" + }, +/turf/simulated/floor/plating, +/area/mine/production) +"bK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"bL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary" + }, +/turf/simulated/floor/plasteel/dark, +/area/mine/laborcamp) +"bM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Labor Camp Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/mine/laborcamp) +"bN" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/mine/production) +"bO" = ( +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock"; + name = "Labor Shuttle Airlock" + }, +/obj/docking_port/mobile/labour, +/obj/structure/fans/tiny, +/obj/docking_port/stationary{ + area_type = /area/lavaland/surface/outdoors; + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_away"; + name = "labor camp"; + turf_type = /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface; + width = 9 + }, +/turf/simulated/floor/plating, +/area/shuttle/siberia) +"bP" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/maintenance{ + name = "Catwalk Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"bQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/mining, +/turf/simulated/floor/plating/lavaland_air, +/area/lavaland/surface/outdoors) +"bR" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/mechbay) +"bS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/mining, +/turf/simulated/floor/plating/lavaland_air, +/area/lavaland/surface/outdoors) +"bT" = ( +/obj/machinery/door/airlock/mining{ + name = "Mining Station Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/storage) +"bU" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"bV" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/shuttle/mining) +"bW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"bX" = ( +/obj/machinery/suit_storage_unit/lavaland, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/eva) +"bY" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"bZ" = ( +/obj/machinery/economy/vending/wallmed/directional/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/mine/laborcamp) +"ca" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/item/radio/intercom/locked/prison{ + pixel_y = 22 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/mine/laborcamp) +"cb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/mine/laborcamp) +"cc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/mine/laborcamp) +"cd" = ( +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/mine/laborcamp) +"ce" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/mine/laborcamp) +"cg" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/mine/laborcamp) +"ch" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/mine/cafeteria) +"ci" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/mine/laborcamp) +"cj" = ( +/obj/machinery/alarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/eva) +"ck" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/eva) +"cl" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"cm" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/mining) +"cn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"co" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"cp" = ( +/turf/simulated/wall, +/area/mine/cafeteria) +"cq" = ( +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/eva) +"cr" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Station EVA" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"cs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Crates Airlock" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"ct" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/mechbay) +"cu" = ( +/obj/item/pickaxe, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"cv" = ( +/obj/structure/ore_box, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"cw" = ( +/obj/machinery/computer/shuttle/mining{ + req_access = null + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/production) +"cx" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary" + }, +/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/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/sleeper) +"cy" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"cz" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/mine/laborcamp) +"cA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/mine/laborcamp) +"cB" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/atmospherics/portable/canister/air, +/obj/item/radio/intercom/locked/prison{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/mine/laborcamp) +"cC" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/mine/laborcamp) +"cD" = ( +/obj/structure/fans/tiny, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"cE" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/mine/production) +"cF" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/production) +"cG" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/mine/laborcamp/security) +"cH" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/mining, +/turf/simulated/floor/plating/lavaland_air, +/area/lavaland/surface/outdoors) +"cI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/mining, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/living_quarters) +"cJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"cK" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/mine/production) +"cL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"cM" = ( +/turf/simulated/wall, +/area/mine/living_quarters) +"cN" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/storage) +"cO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/lattice/catwalk/mining, +/turf/simulated/floor/plating/lavaland_air, +/area/lavaland/surface/outdoors) +"cP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/mining, +/turf/simulated/floor/plating/lavaland_air, +/area/lavaland/surface/outdoors) +"cQ" = ( +/turf/simulated/wall/r_wall, +/area/mine/comms) +"cR" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"cS" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"cT" = ( +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/caution/stand_clear, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"cU" = ( +/obj/structure/ore_box, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"cV" = ( +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"cW" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"cX" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/power/apc{ + name = "Processing Room APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"cY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"cZ" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Outpost Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"da" = ( +/obj/machinery/mineral/equipment_vendor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"db" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"dc" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "Airlock APC"; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/airlock) +"dd" = ( +/turf/simulated/floor/plating, +/area/mine/abandoned) +"de" = ( +/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" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/mining/glass{ + name = "Main Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"df" = ( +/obj/machinery/light/directional/east, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"dg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"dh" = ( +/obj/machinery/camera{ + c_tag = "Mining Outpost - Hallway 3"; + dir = 1; + network = list("Mining Outpost") + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/production) +"di" = ( +/obj/structure/closet/crate{ + opened = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/west, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"dj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"dk" = ( +/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" + }, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"dl" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"dm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/binary/pump/on, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"dn" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"do" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"dp" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/living_quarters) +"dq" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"dr" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"ds" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal{ + dir = 1 + }, +/obj/effect/turf_decal/caution, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"dt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/mechbay) +"du" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"dv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/production) +"dw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera{ + c_tag = "Mining Outpost - Mech Storage 1"; + dir = 1; + network = list("Mining Outpost") + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/mechbay) +"dx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/living_quarters) +"dy" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/production) +"dz" = ( +/obj/item/radio/beacon, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"dA" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 2; + pixel_x = 1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/gps/ruin{ + gpstag = "OUTPOST"; + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"dB" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/mine/abandoned) +"dC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"dD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"dE" = ( +/obj/effect/turf_decal, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"dF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/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/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/living_quarters) +"dG" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"dH" = ( +/obj/structure/ore_box, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"dI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"dJ" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"dK" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/production) +"dL" = ( +/obj/machinery/mineral/mint{ + input_dir = 4 + }, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"dM" = ( +/turf/simulated/floor/plating, +/area/mine/production) +"dN" = ( +/obj/structure/ore_box, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"dO" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk/mining, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"dP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"dQ" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/effect/turf_decal/bot/right, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"dR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/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/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/living_quarters) +"dS" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"dT" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk/mining, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"dU" = ( +/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" + }, +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"dV" = ( +/obj/effect/spawner/window/grilled, +/turf/simulated/floor/plating, +/area/mine/production) +"dW" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/turf/simulated/floor/plating, +/area/mine/production) +"dX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"dY" = ( +/obj/machinery/suit_storage_unit/lavaland, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellowcorners" + }, +/area/mine/eva) +"ea" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera{ + c_tag = "Mining Outpost - Hallway 4"; + network = list("Mining Outpost"); + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/living_quarters) +"eb" = ( +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"ec" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/mining, +/turf/simulated/floor/plating/lavaland_air, +/area/lavaland/surface/outdoors) +"ed" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"ee" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"ef" = ( +/obj/structure/cable{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"eg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/living_quarters) +"eh" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/mine/comms) +"ei" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm/directional/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/production) +"ej" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile/burnt{ + dir = 1 + }, +/obj/structure/stone_tile/center/cracked, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"ek" = ( +/obj/machinery/door/airlock/mining{ + name = "Mining Station Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/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/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/storage) +"el" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/production) +"em" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/sleeper) +"en" = ( +/obj/machinery/mineral/processing_unit_console, +/turf/simulated/wall, +/area/mine/abandoned) +"eo" = ( +/obj/machinery/camera{ + c_tag = "Mining Outpost - EVA Storage"; + network = list("Mining Outpost") + }, +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"ep" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "Dinner Room APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"eq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/baseturf_helper/lava_land/surface, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"er" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"es" = ( +/obj/machinery/light/directional/west, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/living_quarters) +"et" = ( +/obj/machinery/mineral/unloading_machine{ + dir = 1; + icon_state = "unloader-corner"; + input_dir = 1; + output_dir = 2 + }, +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"eu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"ev" = ( +/obj/machinery/alarm/directional/north, +/obj/machinery/camera{ + c_tag = "Mining Outpost - Dinner Room"; + network = list("Mining Outpost") + }, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"ew" = ( +/obj/structure/window/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"ex" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"ey" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/light_switch{ + name = "North Switch"; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"ez" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/living_quarters) +"eA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/living_quarters) +"eC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/mechbay) +"eD" = ( +/obj/machinery/camera{ + c_tag = "Mining Outpost - Mech Storage 2"; + network = list("Mining Outpost"); + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"eE" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"eF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light_switch/east, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"eG" = ( +/obj/machinery/light/directional/north, +/obj/structure/table, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"eH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Station Hallway" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"eI" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/mine/production) +"eJ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "EVA Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"eK" = ( +/obj/effect/turf_decal/bot/left, +/obj/structure/cable, +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"eL" = ( +/obj/structure/fans/tiny, +/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" + }, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock{ + name = "Mech Bay Maintenance" + }, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"eM" = ( +/obj/structure/fans/tiny, +/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" + }, +/obj/structure/barricade/wooden, +/obj/effect/spawner/random_barrier/possibly_welded_airlock, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"eN" = ( +/obj/machinery/mineral/processing_unit{ + dir = 1 + }, +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"eO" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/airlock) +"eP" = ( +/obj/machinery/camera{ + c_tag = "Mining Outpost - Hallway 2"; + dir = 1; + network = list("Mining Outpost") + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/production) +"eQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/storage) +"eR" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"eS" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"eT" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"eU" = ( +/turf/simulated/wall, +/area/mine/storage) +"eV" = ( +/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" + }, +/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/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/production) +"eW" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass{ + name = "Mining Shuttle Airlock"; + id_tag = "mining_away" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/turf/simulated/floor/plating, +/area/mine/production) +"eX" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/structure/plasticflaps, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"eY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"eZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/living_quarters) +"fa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Station Hallway" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/production) +"fb" = ( +/obj/machinery/mineral/equipment_vendor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/storage) +"fc" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/shuttle/mining) +"fd" = ( +/obj/structure/closet/emcloset, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"fe" = ( +/obj/machinery/door/airlock/glass{ + name = "Break Room" + }, +/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/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/cafeteria) +"ff" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"fg" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/storage) +"fh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/living_quarters) +"fj" = ( +/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" + }, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Mech Bay Airlock" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"fk" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"fl" = ( +/obj/machinery/door/airlock{ + name = "Airlock Maintenance" + }, +/turf/simulated/floor/plating, +/area/mine/mechbay) +"fm" = ( +/obj/machinery/light/directional/south, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/production) +"fn" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"fo" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"fp" = ( +/obj/machinery/camera{ + c_tag = "Mining Outpost - Hallway 1"; + dir = 8; + network = list("Mining Outpost") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"fr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"fs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"ft" = ( +/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" + }, +/obj/structure/lattice/catwalk/mining, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/lavaland/surface/outdoors) +"fu" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"fv" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"fw" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/obj/structure/cable{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/dark, +/area/mine/comms) +"fx" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"fy" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"fz" = ( +/obj/structure/fans/tiny, +/obj/structure/barricade/wooden, +/obj/effect/spawner/random_barrier/possibly_welded_airlock, +/turf/simulated/floor/plating, +/area/mine/cafeteria) +"fA" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/firstaid/machine, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/mine/sleeper) +"fB" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Mining Communications APC"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/bluegrid, +/area/mine/comms) +"fC" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"fD" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"fE" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/storage) +"fF" = ( +/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/plating, +/area/mine/living_quarters) +"fG" = ( +/obj/effect/turf_decal{ + dir = 1 + }, +/obj/effect/turf_decal/caution, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"fH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/baseturf_helper/lava_land/surface, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/storage) +"fI" = ( +/obj/effect/turf_decal/loading_area, +/obj/item/radio/intercom/directional/west, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"fJ" = ( +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/obj/docking_port/mobile/mining, +/obj/structure/fans/tiny, +/obj/docking_port/stationary{ + area_type = /area/lavaland/surface/outdoors; + dir = 8; + dwidth = 3; + height = 5; + id = "mining_away"; + name = "lavaland mine"; + turf_type = /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface; + width = 7 + }, +/turf/simulated/floor/plating, +/area/shuttle/mining) +"fK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"fL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"fN" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"fO" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/turf_decal/bot/left, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"fP" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"fQ" = ( +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/unexplored/danger) +"fR" = ( +/turf/simulated/mineral/random/high_chance/volcanic, +/area/lavaland/surface/outdoors/unexplored) +"fS" = ( +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/unexplored) +"fT" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"fU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/living_quarters) +"fV" = ( +/turf/simulated/wall/indestructible/boss/see_through, +/area/lavaland/surface/outdoors/legion) +"fW" = ( +/obj/structure/necropolis_gate/locked, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"fX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk/mining, +/turf/simulated/floor/plating/lavaland_air, +/area/lavaland/surface/outdoors) +"fY" = ( +/obj/machinery/economy/vending/assist/free, +/turf/simulated/floor/plating, +/area/mine/cafeteria) +"fZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera{ + c_tag = "Mining Outpost - Storage Room"; + network = list("Mining Outpost") + }, +/obj/machinery/light_switch/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/storage) +"ga" = ( +/obj/structure/closet/crate/freezer/iv_storage, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/mine/sleeper) +"gb" = ( +/obj/machinery/iv_drip, +/obj/machinery/camera{ + c_tag = "Mining Outpost - Outpost Medbay"; + network = list("Mining Outpost") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/mine/sleeper) +"gd" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/storage) +"ge" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Station Hallway" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/living_quarters) +"gf" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Outpost Medbay APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/mine/sleeper) +"gg" = ( +/obj/machinery/alarm/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/mine/sleeper) +"gh" = ( +/obj/structure/fans/tiny, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/machinery/door/airlock/maintenance{ + name = "Mining Station Communications"; + req_access_txt = null + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/qm, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel/dark, +/area/mine/comms) +"gi" = ( +/obj/machinery/firealarm/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/mine/sleeper) +"gj" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/center, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"gk" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/center, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"gl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/sleeper) +"gm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/effect/baseturf_helper/lava_land/surface, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/sleeper) +"gn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/sleeper) +"go" = ( +/obj/structure/stone_tile/block, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"gp" = ( +/obj/structure/closet/secure_closet/miner, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/storage) +"gq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/mining, +/turf/simulated/floor/plating/lavaland_air, +/area/lavaland/surface/outdoors) +"gr" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"gs" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"gt" = ( +/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" + }, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"gu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/mine/laborcamp/security) +"gv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/door/airlock/maintenance{ + name = "Mining Station Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"gw" = ( +/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" + }, +/obj/machinery/door/airlock{ + name = "Mech Bay Maintenance" + }, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"gx" = ( +/obj/structure/fans/tiny, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + id_tag = "laborcamp_away2"; + name = "Labor Camp Airlock" + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"gy" = ( +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"gz" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"gA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/mining, +/turf/simulated/floor/plating/lavaland_air, +/area/lavaland/surface/outdoors) +"gB" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"gC" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"gD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"gF" = ( +/obj/structure/fans/tiny, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + id_tag = "laborcamp_away2"; + name = "Labor Camp Airlock" + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"gG" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"gH" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/mining) +"gI" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"gJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/structure/lattice/catwalk/mining, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/living_quarters) +"gK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"gL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel/dark, +/area/mine/comms) +"gM" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"gO" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"gP" = ( +/obj/structure/stone_tile/slab, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"gR" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"gX" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"hb" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"hf" = ( +/obj/machinery/flasher_button{ + id = "gulagshuttleflasher"; + name = "Flash Control"; + pixel_y = -26; + req_access_txt = "1" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/siberia) +"hg" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/cracked, +/mob/living/simple_animal/hostile/megafauna/legion, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"hh" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/obj/structure/table/reinforced/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"hj" = ( +/obj/machinery/light/directional/east, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/siberia) +"hl" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"hq" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/table/reinforced/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"hs" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"hv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/mine/laborcamp) +"hy" = ( +/obj/item/radio/intercom/directional/east, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"hz" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"hA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"hH" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"hI" = ( +/obj/structure/stone_tile/block/burnt, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"hJ" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"hO" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/chair/brass{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"hQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/radio/intercom/locked/prison{ + pixel_y = -22; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"hR" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/table/reinforced/brass, +/obj/item/weldingtool/experimental/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"ic" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/mine/laborcamp) +"id" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"ih" = ( +/obj/structure/window/reinforced/clockwork{ + dir = 8; + move_resist = 45000 + }, +/obj/structure/stone_tile/slab, +/obj/structure/bookcase{ + move_resist = 45000 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"ii" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"ir" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 5 + }, +/obj/structure/stone_tile/slab/cracked{ + dir = 10 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"is" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"it" = ( +/obj/structure/stone_tile/block, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"iu" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"iw" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ix" = ( +/obj/structure/stone_tile/block/cracked, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"iy" = ( +/obj/structure/stone_tile/cracked, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"iB" = ( +/obj/machinery/mineral/labor_prisoner_shuttle_console{ + pixel_y = 32 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/siberia) +"iC" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/block/cracked, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"iD" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/table/reinforced/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"iK" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"iX" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"iY" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ja" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jb" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/arrows, +/obj/machinery/mineral/labor_points_checker{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/mine/laborcamp) +"jg" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"jj" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"jk" = ( +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"jl" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/center/cracked, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"jm" = ( +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"jn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"jp" = ( +/obj/machinery/camera{ + c_tag = "Labor Camp Breakroom"; + dir = 8; + network = list("Labor Camp") + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/mine/laborcamp) +"jq" = ( +/obj/structure/stone_tile, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"js" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jx" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jD" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"jF" = ( +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/center/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"jH" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/center/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"jK" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/storage) +"jL" = ( +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"jN" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/center/cracked, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"jP" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/mine/eva) +"jQ" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jR" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jS" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jU" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"jW" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/center/burnt, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"ka" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"kf" = ( +/obj/structure/fans/tiny, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Outpost Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"kg" = ( +/obj/structure/fluff/drake_statue, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"kj" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"kl" = ( +/obj/structure/fluff/drake_statue/falling, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"ko" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"kv" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"kw" = ( +/turf/simulated/mineral/random/high_chance/volcanic, +/area/lavaland/surface/outdoors/legion) +"ky" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"kA" = ( +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"kB" = ( +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/center/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"kD" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/center, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"kG" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"kH" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/center/cracked, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"kI" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/siberia) +"kJ" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/center, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"kM" = ( +/turf/simulated/wall/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"kN" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"kR" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"le" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"lf" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/window/reinforced/clockwork{ + move_resist = 45000 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"lg" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"lj" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"ll" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"lp" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"lq" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"lr" = ( +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"ls" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"lt" = ( +/obj/structure/stone_tile/block/burnt, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"lu" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"lv" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"lw" = ( +/obj/structure/stone_tile/cracked, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"ly" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"lz" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"lD" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"lE" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"lF" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"lG" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/block, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"lH" = ( +/obj/effect/rune{ + color = "#DAA520"; + desc = "An odd collection of symbols."; + name = "brass rune"; + rune_blood_color = "#DAA520" + }, +/mob/living/simple_animal/hostile/megafauna/dragon{ + color = "#C2B015"; + health = 5000; + maxHealth = 5000; + melee_damage_lower = 60; + melee_damage_upper = 65; + name = "ancient drake" + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"lI" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"lO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"lP" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"lQ" = ( +/obj/structure/stone_tile/surrounding/cracked{ + dir = 6 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"lR" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"lS" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"lU" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/window/reinforced/clockwork{ + dir = 4; + move_resist = 45000 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"lW" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"lZ" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"ma" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mb" = ( +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"md" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"mf" = ( +/obj/structure/stone_tile/center/cracked, +/obj/structure/stone_tile/surrounding/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding/cracked, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"mi" = ( +/obj/machinery/computer/security{ + dir = 4; + network = list("Labor Camp") + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/mine/laborcamp/security) +"mj" = ( +/obj/item/clothing/under/color/orange, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"mk" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ml" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"mn" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mp" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/mine/living_quarters) +"mq" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"mr" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"ms" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"mt" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile/cracked, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"mu" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"mv" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"mw" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"mx" = ( +/obj/structure/stone_tile, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"my" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"mA" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mB" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mC" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"mD" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mE" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mF" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mG" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mH" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mI" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mJ" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mK" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mL" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mM" = ( +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mN" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mO" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mP" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mQ" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"mS" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"mT" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile/cracked, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"mV" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"mW" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"mX" = ( +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"mY" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"mZ" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"nb" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"nc" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"ne" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"nf" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"ng" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"ns" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"nx" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"nC" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/bookcase, +/obj/structure/window/reinforced/clockwork{ + dir = 1 + }, +/obj/structure/window/reinforced/clockwork, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"oj" = ( +/obj/structure/lattice/catwalk/mining, +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 4; + name = "scrubber outlet" + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/laborcamp) +"on" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/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/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"op" = ( +/obj/structure/closet/secure_closet/brig/gulag, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"oA" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/mine/laborcamp) +"oF" = ( +/obj/structure/cable{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"oM" = ( +/obj/structure/stone_tile/surrounding_tile/burnt, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/center/cracked, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"oR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/mine/laborcamp) +"pa" = ( +/obj/machinery/door/airlock{ + name = "Mech Bay Maintenance" + }, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"pg" = ( +/obj/structure/stone_tile/slab, +/obj/structure/table/reinforced/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"pq" = ( +/turf/simulated/floor/mineral/titanium, +/area/shuttle/siberia) +"pt" = ( +/obj/item/radio/intercom/locked/prison{ + pixel_y = -22; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/mine/laborcamp/security) +"pC" = ( +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"pI" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"pQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/storage) +"pT" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/mob/living/simple_animal/hostile/asteroid/hivelord/legion/tendril, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"qw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/mine/laborcamp) +"qA" = ( +/obj/machinery/camera{ + c_tag = "Labor Camp Central 2"; + network = list("Labor Camp") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/mine/laborcamp) +"qK" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"qR" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"qT" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/mine/laborcamp) +"rd" = ( +/obj/structure/closet/secure_closet/brig/gulag, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"rj" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt, +/turf/simulated/floor/plasteel/dark, +/area/mine/laborcamp) +"ro" = ( +/obj/machinery/camera{ + c_tag = "Labor Camp External"; + dir = 4; + network = list("Labor Camp") + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"rr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/mine/laborcamp) +"rM" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/mining) +"rQ" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/mob/living/simple_animal/hostile/asteroid/hivelord/legion, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"rS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/mine/laborcamp) +"rV" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"rW" = ( +/obj/structure/stone_tile/surrounding/cracked, +/obj/structure/stone_tile/center/cracked, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"rY" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile/burnt, +/obj/structure/stone_tile/surrounding_tile/burnt{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"sf" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/mob/living/simple_animal/hostile/asteroid/basilisk/watcher/magmawing, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"sv" = ( +/obj/machinery/light/directional/east, +/obj/structure/closet/secure_closet/brig/gulag, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"sF" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/plasteel/white, +/area/mine/laborcamp) +"sL" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/mine/storage) +"sM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/mine/laborcamp) +"sN" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"sO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/storage/firstaid/ancient, +/obj/item/stack/medical/bruise_pack/advanced, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/mine/laborcamp) +"sP" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/mine/laborcamp/security) +"sR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"sT" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"tb" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/mining) +"td" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"ti" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/structure/fluff/drake_statue/falling{ + move_resist = 40000 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"tj" = ( +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"tm" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/center/cracked, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"to" = ( +/obj/effect/decal/cleanable/dirt, +/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/plasteel, +/area/mine/laborcamp) +"tp" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/bookcase, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"tx" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"tC" = ( +/obj/machinery/camera{ + c_tag = "Labor Camp Airlock"; + network = list("Labor Camp") + }, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/mine/laborcamp) +"tI" = ( +/obj/machinery/light_switch{ + pixel_x = -24; + name = "West Switch"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/mine/sleeper) +"tJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/mine/laborcamp) +"tK" = ( +/obj/structure/closet/secure_closet/miner, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/storage) +"tN" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/table/reinforced/brass, +/obj/item/weldingtool/experimental/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"tQ" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/window/reinforced/clockwork{ + dir = 4; + move_resist = 45000 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"tT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/item/radio/intercom/locked/prison{ + pixel_y = 22 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"tV" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"tZ" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/mine/laborcamp) +"ua" = ( +/obj/structure/stone_tile/surrounding/cracked{ + dir = 6 + }, +/obj/structure/stone_tile/center/cracked, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"uf" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/tapetrash, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/radio/intercom/locked/prison{ + pixel_y = 22 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/mine/laborcamp) +"ug" = ( +/obj/item/cigbutt, +/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/plasteel, +/area/mine/laborcamp) +"ui" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/center, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"um" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/mine/mechbay) +"uq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"uv" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/table/reinforced/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"uC" = ( +/obj/structure/closet/crate/necropolis/tendril, +/obj/structure/stone_tile/slab, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"uI" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"uL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/flasher{ + id = "labor" + }, +/turf/simulated/floor/plating, +/area/mine/laborcamp) +"uO" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"va" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"vc" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/block, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"vf" = ( +/obj/machinery/power/apc{ + name = "Labor Camp Security APC"; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/mine/laborcamp/security) +"vg" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/turf_decal/bot/left, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"vh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"vk" = ( +/obj/machinery/door/airlock/titanium{ + name = "Labor Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/siberia) +"vm" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile, +/obj/structure/window/reinforced/clockwork{ + move_resist = 45000 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"vq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"vw" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_random, +/obj/item/lighter/random{ + pixel_x = 2 + }, +/obj/item/radio/intercom/locked/prison{ + pixel_y = 22 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/mine/laborcamp) +"vy" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"vI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/item/trash/syndi_cakes, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/mine/laborcamp) +"vK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"vP" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 8 + }, +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"vS" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"vT" = ( +/obj/effect/turf_decal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"vY" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"vZ" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = -7 + }, +/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"wg" = ( +/obj/machinery/mineral/equipment_vendor/labor, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"wh" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/mine/laborcamp) +"wn" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/mob/living/simple_animal/hostile/asteroid/basilisk/watcher/magmawing, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"wp" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"wt" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating/lavaland_air, +/area/shuttle/siberia) +"wC" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"wD" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"wP" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/shuttle/siberia) +"wS" = ( +/obj/structure/stone_tile/surrounding_tile/burnt, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/center/cracked, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"wY" = ( +/obj/item/clothing/mask/gas/clown_hat, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"xc" = ( +/obj/structure/stone_tile/surrounding_tile, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"xh" = ( +/obj/machinery/computer/prisoner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/mine/laborcamp/security) +"xl" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/mine/mechbay) +"xo" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/turf/simulated/floor/plating/lavaland_air, +/area/shuttle/mining) +"xp" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/burnt{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"xx" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/mine/laborcamp) +"xA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/baseturf_helper/lava_land/surface, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"xC" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/mining) +"xG" = ( +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors) +"xM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/lattice/catwalk/mining, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/living_quarters) +"xR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/mine/laborcamp) +"xS" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/mine/cafeteria) +"xW" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"yj" = ( +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ym" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/cigbutt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/mine/laborcamp) +"yp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"yq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"yv" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/bookcase, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"yw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"yx" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"yD" = ( +/obj/structure/stone_tile/block, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"yG" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/chair/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"yR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"yS" = ( +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"yW" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/mob/living/simple_animal/hostile/asteroid/big_legion, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"yX" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/mob/living/simple_animal/hostile/asteroid/hivelord/legion/tendril, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"zo" = ( +/obj/structure/table, +/obj/item/kitchen/utensil/fork, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/mine/laborcamp) +"zt" = ( +/obj/machinery/door/airlock/glass{ + name = "Labor Camp Bedroom" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/mine/laborcamp) +"zu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/mining, +/turf/simulated/floor/plating/lavaland_air, +/area/lavaland/surface/outdoors) +"zy" = ( +/turf/simulated/wall, +/area/mine/mechbay) +"zB" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"zH" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/mob/living/simple_animal/hostile/asteroid/hivelord/legion/tendril, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"zN" = ( +/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/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/sleeper) +"zQ" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"zY" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Labor Camp Lockers"; + network = list("Labor Camp"); + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"Ab" = ( +/obj/machinery/light_switch/north, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/mine/laborcamp/security) +"Ac" = ( +/obj/structure/window/reinforced/clockwork{ + dir = 8; + move_resist = 45000 + }, +/obj/structure/bookcase{ + move_resist = 45000 + }, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Aj" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"Aq" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"Av" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/bookcase, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Ax" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/window/reinforced/clockwork{ + dir = 1; + move_resist = 45000 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"AA" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/table/reinforced/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"AB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/mine/comms) +"AE" = ( +/turf/simulated/mineral/volcanic/lava_land_surface, +/area/lavaland/surface/outdoors) +"AF" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/table/reinforced/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"AM" = ( +/obj/structure/window/reinforced/clockwork{ + dir = 8; + move_resist = 45000 + }, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"AP" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"AR" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Bg" = ( +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/siberia) +"Bq" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 1 + }, +/obj/structure/stone_tile/block, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Bu" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Bx" = ( +/obj/structure/clockwork/wall_gear, +/turf/simulated/wall/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"BB" = ( +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/mineral/random/volcanic, +/area/lavaland/surface/outdoors) +"BD" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/shower{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/mine/sleeper) +"BE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Airlock Maintence" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/turf/simulated/floor/plating, +/area/mine/airlock) +"BH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + pixel_x = 24; + name = "Mech Bay APC"; + dir = 4 + }, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/mechbay) +"BP" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/siberia) +"BT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "West Hallway APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/living_quarters) +"Ca" = ( +/obj/machinery/economy/vending/cola/free, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/mine/laborcamp) +"Cb" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/cracked, +/obj/structure/bookcase, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Cf" = ( +/turf/simulated/floor/mineral/titanium, +/area/shuttle/mining) +"Cn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/mechbay) +"Co" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"Cw" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/mine/production) +"Cy" = ( +/obj/machinery/door/airlock{ + name = "Labor Camp Prisoner Lockers" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Labor"; + name = "labor camp blast door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"CF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"CI" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/bot/secbot/beepsky{ + desc = "Powered by the tears and sweat of laborers."; + name = "Prison Ofitser" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/laborcamp/security) +"CK" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/siberia) +"CM" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"CV" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/table/reinforced/brass, +/obj/item/wirecutters/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Dd" = ( +/obj/structure/toilet, +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel/white, +/area/mine/laborcamp) +"De" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/figure/crew/assistant, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/radio/intercom/locked/prison{ + pixel_y = 22 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/mine/laborcamp) +"Dm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/mine/laborcamp/security) +"Dq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"Dz" = ( +/turf/simulated/wall, +/area/mine/airlock) +"DA" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/mine/production) +"DB" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/cracked, +/obj/structure/table/reinforced/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"DD" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"DT" = ( +/obj/machinery/computer/shuttle/labor/one_way, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"DX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"Ec" = ( +/obj/structure/stone_tile/slab/cracked, +/mob/living/simple_animal/hostile/asteroid/basilisk/watcher/magmawing, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Eg" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"Ei" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"Ej" = ( +/obj/machinery/tcomms/relay/mining, +/obj/machinery/camera{ + c_tag = "Mining Outpost - Communications Relay"; + dir = 4; + network = list("Mining Outpost") + }, +/turf/simulated/floor/plasteel/dark, +/area/mine/comms) +"El" = ( +/obj/machinery/economy/vending/snack, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"Em" = ( +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Ez" = ( +/obj/effect/spawner/random_spawners/cobweb_right_rare, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"EA" = ( +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"ED" = ( +/obj/structure/stone_tile/slab, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"EF" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/obj/item/cigbutt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/laborcamp/security) +"EG" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"EH" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/center, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Fe" = ( +/obj/item/roller{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/structure/rack, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/mine/sleeper) +"Ff" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Fp" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/mine/laborcamp) +"Fs" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"FO" = ( +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/flashlight/lantern, +/obj/item/pickaxe/safety, +/obj/item/mining_scanner, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small/directional/west, +/obj/item/clothing/head/beanie/orange, +/obj/item/clothing/gloves/fingerless, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/suit/storage/hazardvest, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/mine/laborcamp) +"FW" = ( +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock"; + name = "Labor Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/shuttle/siberia) +"Gh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"Gp" = ( +/obj/structure/sign/poster/contraband/clown, +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/mine/laborcamp) +"Gt" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Gv" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Gz" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile/burnt{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"GD" = ( +/obj/structure/sign/poster/contraband/lusty_xenomorph, +/turf/simulated/wall, +/area/mine/laborcamp) +"GF" = ( +/obj/item/clothing/shoes/orange, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"GG" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/window/reinforced/clockwork{ + dir = 4; + move_resist = 45000 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"GO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/mine/cafeteria) +"GS" = ( +/obj/structure/stone_tile, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"GT" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/bookcase, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"GV" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Hc" = ( +/obj/machinery/door/airlock/external{ + id_tag = "laborcamp_away"; + name = "Labor Camp Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/mine/laborcamp/security) +"Hd" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile/burnt, +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Hi" = ( +/obj/structure/bedsheetbin, +/obj/structure/table, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"Hl" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"Hu" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/window/reinforced/clockwork{ + dir = 1; + move_resist = 45000 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Hw" = ( +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Hy" = ( +/obj/structure/stone_tile/slab, +/obj/item/wrench/brass, +/obj/structure/table/reinforced/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"HA" = ( +/obj/machinery/atmospherics/binary/pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/mine/laborcamp) +"HB" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"HF" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"HG" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"HI" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"HK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"HN" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Security" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp/security) +"HT" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/eva) +"Ia" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"If" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/center, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Il" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/trash/sosjerky, +/turf/simulated/floor/plasteel/dark, +/area/mine/laborcamp) +"Iv" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "mining_internal"; + name = "mining conveyor" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/mine/abandoned) +"Iw" = ( +/obj/structure/stone_tile/cracked, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"ID" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/cracked, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"IF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"IH" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/mob/living/simple_animal/hostile/asteroid/hivelord/legion, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"IK" = ( +/obj/structure/rack, +/obj/item/roller{ + pixel_x = -2; + pixel_y = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/mine/sleeper) +"IM" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"IP" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/chair/brass{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"IS" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/bookcase, +/obj/structure/window/reinforced/clockwork, +/obj/structure/window/reinforced/clockwork{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"IT" = ( +/obj/structure/stone_tile/slab, +/obj/structure/window/reinforced/clockwork{ + dir = 1; + move_resist = 45000 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"IZ" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light_switch/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/living_quarters) +"Jd" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/center, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Jl" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"Jm" = ( +/obj/structure/stone_tile/block, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"Jq" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/block/cracked, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Jv" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"JC" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"JD" = ( +/obj/structure/lattice/catwalk/mining, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/living_quarters) +"JI" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/closet/crate/necropolis/tendril, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"JP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/camera{ + c_tag = "Labor Bedroom 2"; + dir = 1; + network = list("Labor Camp") + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/mine/laborcamp) +"JQ" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/mine/laborcamp) +"JV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt, +/turf/simulated/floor/plasteel/dark, +/area/mine/laborcamp) +"JX" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/mining) +"JY" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"JZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"Kb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/baseturf_helper/lava_land/surface, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"Kd" = ( +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/mineral/random/volcanic, +/area/lavaland/surface/outdoors/unexplored) +"Kh" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/surrounding_tile/burnt{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Kl" = ( +/obj/structure/table, +/obj/item/trash/plate, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/mine/laborcamp) +"Kr" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/wall/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Kz" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/obj/structure/bookcase, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"KD" = ( +/obj/structure/barricade/wooden, +/turf/simulated/mineral/volcanic/lava_land_surface, +/area/lavaland/surface/outdoors) +"KE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white, +/area/mine/laborcamp) +"KG" = ( +/obj/structure/stone_tile/center/burnt, +/obj/structure/stone_tile/surrounding/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"KR" = ( +/obj/machinery/flasher{ + id = "gulagshuttleflasher"; + pixel_x = 25 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/siberia) +"KU" = ( +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/mineral/volcanic/lava_land_surface, +/area/lavaland/surface/outdoors) +"Lr" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/mine/sleeper) +"Lz" = ( +/obj/structure/lattice/catwalk/mining, +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/laborcamp) +"LE" = ( +/obj/structure/stone_tile/cracked, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"LH" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/center, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"LJ" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"LK" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"LO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"LQ" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/mine/laborcamp) +"LS" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/cracked, +/mob/living/simple_animal/hostile/asteroid/big_legion, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"LT" = ( +/obj/structure/stone_tile/surrounding_tile/burnt{ + dir = 8 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"LW" = ( +/obj/structure/stone_tile/surrounding/burnt, +/obj/structure/stone_tile/center/burnt, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Mh" = ( +/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" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"Ml" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/center, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Mz" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"ME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/mine/laborcamp) +"MK" = ( +/obj/structure/stone_tile/block, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"MP" = ( +/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"MS" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"MW" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/center/cracked, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Nb" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Ne" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"Ng" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Ni" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/mine/laborcamp) +"Nj" = ( +/obj/effect/turf_decal/bot/left, +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"Nk" = ( +/obj/effect/spawner/random_spawners/wall_rusted_maybe, +/turf/simulated/wall, +/area/mine/airlock) +"Nn" = ( +/obj/structure/stone_tile/block/cracked, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Nq" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/mechbay) +"ND" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/mine/laborcamp) +"NG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/obj/structure/sink/directional/east, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/simulated/floor/plasteel/white, +/area/mine/laborcamp) +"NL" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"NP" = ( +/obj/machinery/computer/shuttle/mining, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/mining) +"NW" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/siberia) +"NZ" = ( +/obj/structure/toilet, +/obj/effect/decal/cleanable/cobweb, +/obj/item/clothing/mask/balaclava, +/turf/simulated/floor/plasteel/white, +/area/mine/laborcamp) +"Oa" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/obj/structure/closet/crate/necropolis/tendril, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Oh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/mine/laborcamp) +"Oq" = ( +/turf/simulated/wall, +/area/mine/abandoned) +"Ov" = ( +/obj/machinery/camera{ + c_tag = "Labor Camp Monitoring"; + network = list("Labor Camp"); + dir = 6 + }, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/mine/laborcamp/security) +"OB" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/chair/brass{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"OE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/mine/laborcamp/security) +"OF" = ( +/obj/item/card/id/prisoner/random, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"OK" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/bookcase, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"OU" = ( +/obj/machinery/door_control/shutter/south{ + id = "Labor"; + name = "Labor Camp Lockdown"; + req_access_txt = "2" + }, +/obj/machinery/flasher_button{ + id = "labor"; + pixel_y = -34 + }, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/mine/laborcamp/security) +"Pg" = ( +/obj/structure/stone_tile/surrounding/cracked, +/obj/structure/stone_tile/center/burnt, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Pr" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Pu" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/sleeper) +"PK" = ( +/obj/structure/closet/secure_closet/brig/gulag, +/obj/machinery/flasher{ + id = "labor"; + pixel_y = 32 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"PN" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/table/reinforced/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"PQ" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"PX" = ( +/turf/simulated/wall, +/area/mine/laborcamp/security) +"Qb" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Ql" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"Qq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/mine/production) +"Qv" = ( +/obj/effect/turf_decal/bot/right, +/obj/machinery/computer, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"QE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/mine/laborcamp) +"QF" = ( +/obj/machinery/door/airlock{ + name = "Abandoned Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/obj/structure/barricade/wooden, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/mine/cafeteria) +"QH" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/cracked, +/mob/living/simple_animal/hostile/asteroid/basilisk/watcher/magmawing, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"QI" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"QJ" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"QQ" = ( +/obj/structure/stone_tile/block/cracked, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"QR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/storage) +"QU" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/cracked, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Rd" = ( +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/pickaxe/safety, +/obj/item/flashlight/lantern, +/obj/item/mining_scanner, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/beanie/orange, +/obj/item/clothing/gloves/fingerless, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/suit/storage/hazardvest, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/mine/laborcamp) +"Rm" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/chair/brass{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Rn" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Rs" = ( +/obj/structure/fans/tiny, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock{ + name = "Catwalk Airlock" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/mine/eva) +"Rz" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"RG" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/closet/crate/necropolis, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"RJ" = ( +/obj/structure/stone_tile/slab, +/obj/structure/window/reinforced/clockwork{ + move_resist = 45000 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"RK" = ( +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"RQ" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile/cracked, +/obj/structure/stone_tile/center, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"RU" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Sd" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/bookcase, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Sk" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Sm" = ( +/obj/structure/window/reinforced/clockwork{ + dir = 4; + move_resist = 45000 + }, +/obj/structure/bookcase{ + move_resist = 45000 + }, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Ss" = ( +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/flashlight/lantern, +/obj/item/pickaxe/safety, +/obj/item/mining_scanner, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/beanie/orange, +/obj/item/clothing/gloves/fingerless, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/suit/storage/hazardvest, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/mine/laborcamp) +"Sy" = ( +/obj/structure/stone_tile/surrounding/cracked{ + dir = 6 + }, +/obj/structure/stone_tile/center/cracked, +/obj/structure/stone_tile/surrounding/cracked{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"SH" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"SO" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/mechbay) +"SQ" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile/cracked, +/obj/structure/stone_tile/center/cracked, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Ta" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/power/apc{ + dir = 1; + name = "Storage Room APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/storage) +"Td" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/fluff/drake_statue/falling{ + move_resist = 40000 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Tj" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Tk" = ( +/obj/machinery/camera{ + c_tag = "Labor Camp Bedroom 1"; + network = list("Labor Camp") + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/mine/laborcamp) +"Tn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/sleeper) +"Ts" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/mine/laborcamp) +"Ty" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"TN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"TU" = ( +/obj/machinery/door/airlock/external{ + id_tag = "laborcamp_away"; + name = "Labor Camp Airlock" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/mine/laborcamp) +"Uc" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Uf" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Uh" = ( +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/mine/living_quarters) +"Um" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Ut" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Ux" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/bookcase, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Uy" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/siberia) +"UA" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"UO" = ( +/obj/structure/stone_tile, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"UQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera{ + c_tag = "Mining Outpost - EVA Airlock"; + network = list("Mining Outpost") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"Vc" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 10 + }, +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/slab/cracked, +/obj/structure/fluff/drake_statue/falling{ + move_resist = 40000 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Ve" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"Vg" = ( +/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 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"Vq" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Vt" = ( +/obj/machinery/camera{ + c_tag = "Labor Camp Central"; + network = list("Labor Camp"); + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"Vu" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/mining) +"Vv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"Vy" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/mob/living/simple_animal/hostile/asteroid/hivelord/legion, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Vz" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"VD" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + pixel_x = -24; + name = "East Hallway APC"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcorners" + }, +/area/mine/production) +"VJ" = ( +/obj/structure/table, +/obj/item/stack/medical/bruise_pack/advanced, +/obj/item/storage/firstaid/ancient, +/obj/machinery/camera{ + c_tag = "Labor Camp Infirmary"; + network = list("Labor Camp"); + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/mine/laborcamp) +"VM" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"VN" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/wood/oak, +/area/mine/laborcamp) +"VO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/mine/laborcamp) +"VP" = ( +/obj/structure/fluff/drake_statue{ + move_resist = 40000 + }, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"VS" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/mapping_lava, +/area/lavaland/surface/outdoors/legion) +"VV" = ( +/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/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/airlock) +"Wb" = ( +/obj/structure/fluff/drake_statue{ + name = "ancient drake statue" + }, +/obj/structure/stone_tile/slab/burnt, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Wf" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"Wi" = ( +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 4; + name = "scrubber outlet" + }, +/obj/structure/lattice/catwalk/mining, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/living_quarters) +"Wo" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/mining) +"Wt" = ( +/obj/structure/window/reinforced/clockwork{ + dir = 4; + move_resist = 45000 + }, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Ww" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm/directional/east, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/production) +"Wx" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/machinery/light/directional/east, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/siberia) +"WJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brown" + }, +/area/mine/laborcamp) +"WL" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"WO" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_regular_floor = "yellowsiding"; + icon_state = "tranquillite" + }, +/area/mine/cafeteria) +"WP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/mine/laborcamp/security) +"WW" = ( +/obj/structure/stone_tile/slab, +/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Xd" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/mine/laborcamp) +"Xi" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"Xl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/baseturf_helper/lava_land/surface, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"Xq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel/white, +/area/mine/laborcamp) +"Xr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"Xt" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"XD" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/table/reinforced/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"XI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall, +/area/mine/living_quarters) +"XO" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"XP" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/chair/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"XS" = ( +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding, +/mob/living/simple_animal/hostile/asteroid/hivelord/legion/tendril, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"XW" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkpurplecorners" + }, +/area/mine/storage) +"Ya" = ( +/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" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkfull" + }, +/area/mine/mechbay) +"Yb" = ( +/obj/effect/spawner/random_spawners/wall_rusted_always, +/turf/simulated/wall, +/area/mine/laborcamp/security) +"Yd" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"Yh" = ( +/obj/structure/closet/crate/necropolis/tendril, +/obj/structure/stone_tile/slab, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Yi" = ( +/obj/structure/stone_tile/slab, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Yn" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/table/reinforced/brass, +/obj/item/wrench/brass, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Yt" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Yv" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/mine/airlock) +"Yx" = ( +/turf/simulated/mineral/random/volcanic, +/area/lavaland/surface/outdoors/legion) +"YI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"YJ" = ( +/obj/machinery/door/airlock{ + name = "Labor Camp Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"YV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/mine/laborcamp) +"YW" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/mine/laborcamp/security) +"YY" = ( +/obj/machinery/light/small/directional/north, +/obj/item/soap/homemade, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/white, +/area/mine/laborcamp) +"Zb" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss{ + icon = 'icons/turf/floors.dmi'; + icon_state = "clockwork_floor" + }, +/area/lavaland/surface/outdoors/legion) +"Zf" = ( +/obj/machinery/sleeper{ + dir = 2 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/mine/sleeper) +"Zj" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Zk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/mine/laborcamp) +"Zo" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"Zu" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/slab, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/sacrificealtar, +/obj/item/spellbook/oneuse/random, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"Zv" = ( +/obj/machinery/economy/vending/sustenance, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/mine/laborcamp) +"Zy" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/chair/brass{ + dir = 1 + }, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"ZB" = ( +/obj/structure/stone_tile/slab/cracked, +/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"ZC" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/mob/living/simple_animal/hostile/asteroid/hivelord/legion, +/turf/simulated/floor/indestructible/boss, +/area/lavaland/surface/outdoors/legion) +"ZL" = ( +/obj/structure/stone_tile/surrounding_tile/cracked, +/turf/simulated/floor/plating/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/legion) +"ZZ" = ( +/obj/effect/decal/cleanable/fungus, +/turf/simulated/wall, +/area/mine/laborcamp/security) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(3,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ad +ad +ad +ad +ad +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(4,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(5,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ix +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(6,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +al +al +al +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(7,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +al +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ak +ak +ak +ak +ak +ak +ak +al +aj +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ai +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +"} +(8,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +al +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ab +aj +ab +ab +ad +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ad +an +an +an +an +an +an +an +an +an +an +an +an +ab +ab +ab +an +an +ab +ab +an +an +an +an +an +an +an +an +an +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +"} +(9,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ai +aj +aj +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(10,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ix +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ak +ak +al +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 +al +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 +ai +aj +ab +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +kI +kI +NW +kI +kI +NW +kI +kI +kI +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +ab +aj +ad +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +ai +aj +aj +aj +aj +aj +ad +aj +aj +aj +aj +aj +aj +aj +"} +(11,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ak +al +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 +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 +ai +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +ab +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +NW +aw +Bg +vk +pq +Uy +CK +wP +wt +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +ab +ab +ad +ad +ad +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +ab +aj +aj +aj +aj +aj +aj +aj +"} +(12,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iX +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +ai +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +an +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +NW +BP +Bg +kI +iB +pq +pq +wP +wt +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ad +ad +ad +ad +ad +ad +aj +ad +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +"} +(13,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iY +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ak +ak +ak +ak +ak +al +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ai +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +ab +aj +aj +aj +aj +aj +aj +ab +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +tj +aj +aD +aj +aj +aj +aj +NW +Wx +hf +kI +KR +hj +pq +wP +wt +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ad +ad +ad +ad +ad +ad +ad +ad +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ad +ab +aj +aj +aj +aj +aj +aj +"} +(14,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +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 +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 +ai +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +ab +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +mj +tj +wY +aj +aj +aj +aj +kI +kI +FW +kI +kI +kI +bO +kI +kI +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +ab +ad +ad +ad +ad +ad +ad +ad +ad +ad +ab +aj +aj +aj +aj +aj +aj +aj +ab +ad +ad +ad +ab +ab +aj +aj +aj +aj +"} +(15,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ak +ab +ab +ab +ab +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 +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 +am +ai +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aD +OF +wD +aj +aj +cG +cG +PX +PX +Hc +PX +aq +aq +TU +aq +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +aj +aj +aj +aj +ab +ad +ad +ad +ad +ad +ad +aj +aj +aj +aj +"} +(16,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ir +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +ab +al +al +ab +ab +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 +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 +ai +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +tj +aD +GF +aj +aj +cG +xh +mi +YW +pt +PX +DT +zY +JZ +aq +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ab +aj +aj +aj +aj +aj +aj +aj +ab +ad +ad +ad +ab +ab +aj +aj +aj +"} +(17,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +ad +ad +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +ab +aj +al +ab +ab +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 +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 +ai +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +aj +aj +aj +aj +aj +aj +aD +qT +ap +ap +ap +qT +qT +Yb +Ov +OE +WP +vf +PX +rd +Xr +yw +aq +oj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +aj +aj +aj +aj +aj +aj +aj +aj +ab +ad +ad +ab +ab +aj +aj +aj +aj +"} +(18,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +ab +aj +ab +ab +ab +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 +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 +am +ai +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +ab +aj +aj +aj +aj +aj +aD +aq +vw +zo +Kl +Zv +Ca +PX +Ab +EF +CI +gu +PX +PK +JZ +hQ +aq +Lz +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ad +ad +ad +ad +ad +ad +ad +ad +ad +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ad +ab +aj +aj +aj +aj +aj +"} +(19,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +ab +ab +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 +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 +am +ai +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +aj +aj +aj +aj +Gp +rj +wh +wh +JV +Il +PX +aK +aP +Dm +aZ +HN +JZ +YI +aJ +aq +Ni +aq +aq +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ad +ad +ad +ad +ad +ad +ad +ad +ad +aj +aj +ab +ai +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +ab +aj +"} +(20,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +aj +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +ab +aj +aj +ab +ab +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 +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 +am +am +ai +ai +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +an +aj +aj +aj +tZ +vI +ic +ym +jp +hv +ZZ +sP +aQ +OE +OU +PX +op +sv +jn +aq +bZ +sO +ap +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +ad +ad +ad +ad +ad +ad +ab +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +ab +aj +aj +aj +aj +"} +(21,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +aj +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +ab +aj +aj +ab +ab +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 +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 +am +am +ai +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +qT +qT +aq +qT +qT +qT +qT +Vz +PX +PX +ZZ +PX +ba +PX +aq +aq +Cy +aq +ca +YV +ap +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ad +ad +ad +ad +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ad +ab +aj +aj +aj +aj +aj +aj +aj +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ix +ab +ab +ab +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +ab +ab +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 +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 +am +ai +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +qT +NZ +sF +KE +ar +NG +qT +ME +QE +xR +bk +HK +ug +Vt +JZ +vK +tJ +aq +cb +bh +ap +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ad +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ad +ad +aj +aj +aj +aj +aj +aj +aj +aj +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ab +ab +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +ab +ab +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 +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 +am +am +ai +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +qT +qT +GD +YY +Xq +ax +aB +Xd +Ql +hA +Ql +aU +bb +Zk +Ne +to +by +bL +cc +ci +ap +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(24,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +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 +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 +am +am +ai +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +qT +Dd +sF +KE +at +ay +aq +aE +JZ +uL +JZ +IF +bk +cy +bn +Oh +rS +qT +cd +VJ +ap +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ai +ad +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ix +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +ab +ab +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 +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 +am +am +ai +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +qT +qT +aq +aq +aq +aq +tZ +qA +JZ +JZ +JZ +JZ +JZ +Vv +bl +aq +bA +qT +aq +aq +aq +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(26,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +ab +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 +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 +am +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ad +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aq +Ss +FO +au +Rd +tZ +LQ +JZ +aM +wg +JZ +bk +Vv +jf +aq +bz +qT +ce +cz +aq +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ai +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(27,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +jq +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +ab +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 +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 +am +am +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +qT +lO +HA +av +sR +YJ +aF +eY +aV +aS +aW +be +Vv +bm +aq +bB +bM +cA +sM +tZ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(28,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +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 +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 +am +am +ai +aj +aj +ai +ab +ab +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +qT +tT +WJ +qw +aA +aq +ap +gx +aq +qT +qT +qT +Vv +qT +aq +qT +qT +cg +sM +tZ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(29,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ak +ak +ak +ak +ak +ak +ak +ak +ak +al +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 +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 +am +am +am +ai +ai +am +ai +ab +ai +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aq +oA +Ts +JQ +oR +aq +VO +gD +aq +Tk +ND +zt +Ia +zt +rr +JP +qT +cB +cC +aq +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(30,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +ab +ab +ab +ab +ab +ab +ab +ab +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 +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 +ak +am +am +am +am +am +ai +ai +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aq +qT +qT +aq +qT +qT +xx +DX +aq +uf +VN +aq +Hi +aq +De +Fp +qT +qT +qT +qT +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +ab +ai +aj +aj +aj +aj +aj +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(31,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +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 +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 +ak +ak +ak +am +am +am +am +ai +aj +aj +ai +aj +aj +aj +aj +aj +an +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aq +tC +JZ +aq +qT +qT +qT +tZ +qT +qT +aq +aq +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +"} +(32,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +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 +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 +ak +ak +ak +ak +am +am +am +am +ai +ai +ai +ab +ab +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aq +ap +gF +aq +aT +aX +aX +aX +aD +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ai +ab +aj +aj +aj +aj +aj +aj +"} +(33,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +aj +ab +ab +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 +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 +ak +ak +ak +ak +ak +am +am +am +am +am +ai +ab +ai +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +ro +aD +aD +aD +aD +aD +aD +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(34,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ja +ab +ab +ab +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +ad +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aD +aD +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +AE +aj +aj +aj +aj +aj +aj +AE +aj +aj +aj +ab +aj +aj +aj +aj +ab +ad +ai +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(35,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ab +ab +ab +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +ai +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aD +aD +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +AE +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +ai +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(36,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +ai +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aD +aD +aj +aj +aj +aj +aj +aj +aj +AE +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +"} +(37,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +aj +aj +aj +ab +ab +ab +aj +aj +ab +aj +ab +ab +ab +ab +ab +ab +ak +ak +ak +ak +al +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 +al +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +ai +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aT +aT +aT +an +aD +aj +aj +aj +aj +aj +aj +aj +aj +aj +AE +AE +aj +aj +AE +AE +ab +aj +aj +aj +AE +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(38,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +ab +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +ai +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +an +an +ab +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +AE +AE +aj +aj +AE +AE +AE +aj +aj +ab +AE +AE +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(39,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +ai +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +ab +AE +ab +aj +aj +ab +AE +AE +AE +AE +AE +AE +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(40,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +ai +aj +aj +ai +ai +ai +aj +aj +aj +aj +aj +aj +aj +ab +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +AE +AE +cp +ch +ch +ch +xS +cp +cp +cp +cp +cp +AE +AE +aj +aj +AE +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(41,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jq +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +ai +ai +am +am +am +ai +aj +aj +aj +aj +aj +aj +aj +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +aj +aj +aj +aj +aj +aj +aj +aj +AE +aj +AE +AE +AE +cp +El +eb +eb +du +QF +GO +fz +fY +AE +AE +AE +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(42,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iu +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +ai +aj +aj +aj +aj +aj +aj +aj +aj +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +AE +aj +ab +AE +aj +aj +ab +AE +AE +AE +cp +dS +eb +eu +ep +cp +xS +bC +bC +bC +bC +bC +bC +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(43,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +ai +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +ab +ab +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +aj +aj +aj +aj +aj +AE +AE +AE +AE +AE +AE +AE +AE +AE +xS +hz +eb +fk +vZ +eR +eb +bC +ga +gi +tI +BD +bC +AE +AE +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +"} +(44,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +aj +aj +aj +aj +AE +AE +cQ +cQ +cQ +cQ +cQ +bv +AE +bv +cp +cS +eb +Kb +eT +WO +eb +bC +gb +gl +bG +Fe +bC +AE +ab +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(45,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +ai +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +an +ab +aj +aj +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +ab +AE +cQ +AB +Ej +gL +cQ +mp +XI +cM +cp +dJ +eb +er +bi +eb +fC +bC +gf +gm +Pu +IK +bC +AE +AE +ab +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(46,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ja +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ai +ab +aj +aj +aj +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +an +an +an +an +ab +aj +aj +aj +aj +aj +AE +AE +AE +cQ +fB +fw +eh +cQ +bo +cM +mp +cM +mp +cM +ev +bx +fo +fD +bC +gg +gn +Tn +IK +bC +AE +AE +aj +aj +ab +aj +aj +aj +aj +aj +AE +aj +aj +aj +aj +aj +aj +"} +(47,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ai +ab +ab +ab +ai +am +ai +aj +aj +ai +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +AE +AE +cQ +cQ +gh +cQ +cQ +JC +mp +bu +do +fN +cM +ey +bx +rV +fy +bC +Zf +zN +em +fA +bC +AE +AE +ab +aj +aj +ab +ab +aj +ab +aj +AE +ab +aj +aj +aj +aj +aj +"} +(48,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ai +ai +ai +am +am +am +ai +ai +am +am +ai +ai +aj +aj +aj +aj +aj +aj +ai +ai +aj +aj +aj +aj +aj +aj +aj +aj +ab +ai +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +AE +AE +AE +AE +AE +cO +AE +AE +cM +cM +Uh +cV +dG +cM +cp +fe +cp +cp +bC +Lr +cx +Lr +bC +bC +Wi +ab +aj +aj +AE +AE +aj +AE +aj +aj +aj +aj +ab +aj +aj +aj +aj +"} +(49,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +ai +ai +ai +ai +ai +ai +am +am +ai +ai +aj +aj +aj +aj +ad +ab +ai +ai +ai +aj +aj +aj +aj +aj +aj +aj +ai +ai +ai +ai +ai +ai +ai +ai +aj +aj +aj +aj +ai +ai +ai +ai +ai +ai +ai +ab +ab +ai +ai +ai +ai +aj +aj +aj +aj +ai +ai +aj +aj +aj +aj +aj +aj +aj +ai +ai +ai +aj +aj +AE +aj +ab +AE +AE +AE +AE +fX +gA +gA +gA +bP +fF +dD +dm +gv +ez +dR +IZ +es +dp +br +dF +bg +cR +JD +gJ +aj +ab +AE +AE +AE +ab +AE +AE +ab +aj +ab +aj +aj +aj +aj +aj +"} +(50,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ai +ai +ai +am +ai +ai +ai +am +ai +ai +ai +ai +ai +ai +ai +am +am +am +am +am +am +am +ai +ai +ab +ab +ai +am +am +am +am +am +am +am +ai +ai +am +am +am +am +ai +ab +ab +ab +ai +am +ai +ai +ai +ai +ai +ai +ai +am +ai +ab +aj +aj +aj +AE +AE +AE +bS +ec +ec +gq +AE +AE +cM +cM +EG +dq +dI +cM +BT +eA +eg +ea +eZ +eg +aI +fh +cl +cI +xM +AE +AE +AE +AE +AE +AE +AE +AE +AE +AE +ab +aj +aj +ab +aj +aj +"} +(51,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ai +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ai +ai +am +am +am +am +am +am +am +am +am +ai +ab +aj +aj +aj +AE +aj +AE +bS +gq +AE +AE +AE +AE +aj +AE +cM +cW +dr +dr +mp +dx +fU +eU +eU +ek +eU +eU +gw +cM +AE +AE +AE +AE +AE +Oq +Oq +dB +Oq +Oq +Oq +Oq +AE +ab +aj +aj +aj +aj +"} +(52,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +aj +ab +AE +aj +AE +AE +cP +AE +ab +aj +aj +aj +ab +aj +aj +mp +cM +cM +cM +ge +bI +eU +Ta +pQ +tK +sL +dU +cM +mp +cM +AE +AE +AE +Oq +dL +fI +di +aY +dN +dB +AE +AE +aj +aj +aj +aj +"} +(53,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +aj +aj +ab +AE +AE +AE +bQ +AE +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +bN +yq +el +eU +fg +QR +gp +eU +ed +gt +fL +cM +AE +AE +AE +Oq +ee +dd +dC +yp +cX +Oq +AE +aj +ab +aj +aj +aj +"} +(54,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +aj +aj +aj +aj +aj +aj +ab +cH +aj +aj +ab +ab +xC +tb +xC +tb +fc +xo +ab +bN +CF +dh +eU +fZ +fH +eQ +fb +cM +mp +yR +eL +ft +ft +ft +eM +bw +dk +eq +ew +eX +Oq +AE +aj +aj +aj +aj +aj +"} +(55,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +jx +ad +ad +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +aj +aj +aj +aj +aj +aj +dO +aj +aj +ab +xC +xC +Cf +cm +Vu +Vu +xC +ab +bN +yq +el +eU +cN +gd +gp +eU +EG +JC +cV +mp +KD +AE +AE +dB +ff +Iv +fP +en +az +Oq +AE +aj +aj +aj +aj +aj +"} +(56,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ai +ai +ai +ai +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ai +aj +aj +ab +aj +aj +aj +dT +aj +aj +ab +tb +NP +Wo +rM +Vu +Vu +xC +ab +bN +yq +el +eU +fE +jK +XW +sL +uq +mp +cM +cM +AE +AE +AE +Oq +fu +et +dn +eN +fn +Oq +ab +aj +ab +aj +aj +aj +"} +(57,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ad +ai +ai +ai +ai +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ab +aj +aj +ab +ab +aj +dT +aj +ab +ab +xC +xC +JX +Cf +Vu +gH +xC +ab +bN +yq +fm +eU +eU +bT +eU +eU +pa +cM +AE +AE +AE +ab +AE +Oq +Oq +dB +Oq +Oq +dB +Oq +AE +ab +aj +aj +aj +aj +"} +(58,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ad +ai +ai +ai +ai +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +aj +aj +AE +AE +ab +cH +aj +aj +ab +ab +xC +tb +fJ +tb +bV +xo +ab +bN +yq +el +zy +LK +LK +eD +Gh +ct +xl +AE +AE +ab +ab +ab +AE +AE +AE +AE +AE +AE +AE +ab +ab +aj +aj +aj +aj +"} +(59,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ad +ad +ad +jq +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +aj +aj +AE +AE +zu +AE +aj +aj +aj +ab +bJ +eW +bN +ab +ab +ab +bN +yq +el +zy +Jl +Nj +oF +eK +SO +zy +zy +ab +ab +aj +ab +ab +AE +AE +AE +AE +AE +ab +aj +aj +ab +aj +aj +aj +"} +(60,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +aj +aj +ab +ab +aj +ab +aj +ab +ab +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +Kd +Kd +BB +xG +xG +KU +AE +cP +AE +aj +aj +dV +dV +bN +cE +bN +bq +Cw +AE +bN +yq +eP +zy +db +cT +cY +cT +dt +zy +xl +ab +ab +aj +aj +aj +ab +ab +aj +ab +aj +ab +aj +aj +aj +aj +aj +aj +"} +(61,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +Kd +BB +xG +xG +yj +xG +bf +Rs +bf +jP +bf +dV +cw +dy +bU +cF +VD +bq +Cw +bq +eH +fa +zy +dg +dQ +Co +Qv +bH +bR +um +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +"} +(62,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +Kd +BB +xG +xG +xG +xG +bf +cU +dH +HT +bf +dA +bU +cJ +dl +dl +Mh +dv +dK +ei +eE +eV +fj +TN +Ya +Ve +vq +dP +Cn +um +AE +aj +ab +aj +aj +aj +ab +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(63,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +Kd +Kd +BB +xG +xG +xG +bf +bp +bD +bE +cs +co +co +dz +PQ +fv +fp +Ww +fx +hy +eF +bU +LK +dj +sT +Xl +Gh +gK +ct +um +AE +ab +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(64,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +Kd +Kd +Kd +yj +yj +xG +jP +bt +bY +bW +eS +bU +dX +cL +fK +da +bq +bq +bq +bq +bq +Cw +zy +fr +fO +Vg +vg +eC +bR +um +AE +AE +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(65,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +aj +ab +ab +aj +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +Kd +Kd +BB +yj +xG +xG +bf +bf +jP +bf +bf +jP +eG +aN +bU +da +Cw +cK +dM +Qq +eI +dM +fl +cn +cT +Co +cT +dw +zy +zy +AE +AE +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(66,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +Kd +Kd +BB +xG +xG +xG +bf +bX +bX +bX +bX +bf +Dz +de +Dz +Dz +bq +Qq +dW +bq +Cw +bq +zy +Jl +dQ +cY +Qv +Nq +zy +zy +AE +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(67,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +Kd +Kd +BB +xG +xG +xG +bf +eJ +ef +fs +cj +bf +fd +VV +eO +BE +Qq +DA +bq +bq +KU +bq +xl +Ez +LK +vh +Dq +BH +zy +AE +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(68,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +jb +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +Kd +Kd +BB +xG +xG +KU +bf +Eg +ex +bK +ck +cr +ii +on +dc +Dz +Nk +Dz +Dz +KU +KU +KU +zy +zy +um +um +um +zy +zy +AE +AE +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +"} +(69,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +al +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 +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 +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 +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 +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +Kd +Kd +BB +yj +KU +KU +bf +eo +eS +bW +cq +bf +UQ +xA +LO +cZ +ds +dE +kf +yj +yj +yj +KU +KU +KU +KU +KU +yj +yj +xG +yj +yj +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +"} +(70,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +Kd +BB +yj +yj +KU +KU +bf +dY +dY +dY +dY +bf +gI +df +dE +cD +fG +vT +cD +yj +yj +yj +yj +KU +KU +KU +yj +yj +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +"} +(71,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +BB +yj +yj +yj +KU +KU +bf +bF +bF +bF +bF +bf +Dz +Dz +Dz +Dz +Yv +Yv +Dz +yj +yj +yj +yj +yj +yj +xG +yj +xG +yj +xG +xG +xG +xG +xG +yj +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +"} +(72,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +ab +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +ai +ai +am +am +am +BB +yj +yj +yj +yj +yj +KU +KU +yj +yj +yj +yj +KU +KU +KU +KU +KU +yj +yj +yj +yj +yj +yj +yj +yj +yj +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +yj +xG +xG +yj +xG +xG +xG +xG +"} +(73,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iw +ad +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +aj +ab +aj +ab +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ai +ai +am +BB +yj +yj +yj +yj +yj +yj +KU +KU +yj +yj +yj +KU +KU +KU +KU +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +xG +xG +xG +xG +yj +xG +xG +yj +xG +yj +xG +xG +xG +yj +yj +xG +xG +yj +xG +xG +xG +"} +(74,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +pC +pC +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ai +ab +ai +Kd +BB +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +xG +xG +yj +xG +xG +xG +xG +yj +yj +xG +yj +xG +xG +yj +yj +yj +yj +xG +xG +xG +"} +(75,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +pC +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +BB +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +BB +BB +BB +yj +yj +yj +yj +xG +yj +yj +yj +xG +xG +xG +yj +yj +yj +xG +xG +xG +yj +yj +yj +xG +yj +xG +xG +"} +(76,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +BB +yj +yj +yj +yj +yj +yj +BB +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +BB +BB +BB +BB +BB +BB +yj +yj +xG +yj +yj +yj +xG +xG +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +xG +xG +xG +xG +"} +(77,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +pC +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +ai +ab +ab +ai +ab +ab +ab +ab +BB +BB +yj +yj +yj +yj +BB +BB +BB +yj +yj +yj +yj +yj +yj +yj +BB +BB +BB +BB +BB +BB +BB +BB +BB +BB +yj +yj +xG +yj +yj +yj +yj +yj +xG +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +xG +yj +xG +"} +(78,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +EA +EA +aj +aj +aj +aj +ab +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +ai +ai +ai +ab +ab +ab +ab +yj +BB +BB +yj +yj +yj +BB +BB +BB +yj +yj +yj +yj +yj +yj +yj +yj +yj +BB +BB +BB +BB +xG +xG +xG +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +xG +yj +xG +xG +"} +(79,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +kw +kw +kw +pC +pC +pC +EA +EA +EA +EA +EA +EA +EA +aj +aj +aj +ab +ab +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +yj +yj +yj +yj +yj +yj +BB +BB +BB +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +xG +xG +xG +xG +yj +yj +yj +yj +yj +yj +yj +yj +yj +xG +yj +yj +yj +yj +yj +yj +yj +xG +yj +xG +xG +xG +xG +"} +(80,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +kw +Yx +Yx +Yx +pC +pC +EA +EA +EA +EA +EA +EA +EA +aj +aj +ab +ab +ab +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +ai +ai +ab +ab +ab +ab +yj +yj +yj +yj +yj +yj +BB +BB +BB +yj +yj +yj +yj +yj +yj +yj +yj +xG +xG +xG +xG +xG +xG +xG +xG +xG +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +xG +xG +yj +xG +xG +xG +"} +(81,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +kw +Yx +Yx +Yx +kw +pC +EA +EA +EA +EA +EA +EA +EA +aj +aj +ab +ab +ab +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +yj +yj +yj +yj +yj +yj +BB +BB +BB +yj +yj +yj +yj +yj +yj +yj +xG +xG +xG +xG +xG +xG +xG +xG +xG +xG +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +xG +xG +xG +yj +xG +xG +"} +(82,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +Yx +Yx +Yx +kw +pC +EA +EA +EA +EA +EA +EA +EA +aj +aj +ab +ab +aj +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ai +ai +ai +ab +ab +yj +yj +yj +yj +yj +BB +BB +BB +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +xG +xG +xG +xG +xG +xG +xG +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +xG +xG +xG +xG +xG +xG +"} +(83,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +kw +kw +Nn +pC +EA +EA +EA +EA +EA +EA +EA +ab +aj +ab +aj +aj +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +yj +yj +yj +yj +yj +BB +BB +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +BB +BB +BB +BB +yj +xG +xG +xG +xG +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +xG +xG +xG +xG +xG +"} +(84,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +EA +pC +ab +aj +aj +aj +aj +ab +ab +ab +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +al +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 +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 +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +ai +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +aj +aj +aj +"} +(85,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +EA +pC +ab +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +ai +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +"} +(86,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +EA +pC +ab +aj +ab +aj +aj +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +ai +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +aj +aj +aj +"} +(87,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +Nn +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +pC +pC +ab +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ab +ab +ab +ai +am +ai +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(88,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kw +xW +pC +pC +pC +pC +pC +pC +pC +EA +pC +EA +pC +pC +ab +aj +ab +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +ai +am +ai +ai +ab +ai +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(89,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +pC +ab +aj +ab +aj +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +ai +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +aj +aj +"} +(90,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kw +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +pC +ab +ab +ab +aj +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(91,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kw +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +pC +ab +ab +ab +aj +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +"} +(92,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +LE +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +EA +ab +ab +ab +aj +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(93,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +EA +ab +ab +ab +aj +aj +aj +aj +ab +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 +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 +ak +ak +ak +al +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(94,1,1) = {" +kM +kM +kM +kM +Kr +kM +kM +kM +kM +kM +kM +kw +kw +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +EA +ab +ab +ab +ab +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(95,1,1) = {" +kM +kM +kM +yv +Ux +Av +kM +kM +kM +kM +kM +kw +Nn +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +EA +ab +ab +ab +ab +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(96,1,1) = {" +kM +kM +Bx +sf +QU +mY +kM +kM +kM +kM +kM +kw +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +ab +ab +ab +ab +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +ab +"} +(97,1,1) = {" +kM +kM +tp +ng +nf +gC +mq +Bx +kM +kM +kM +LE +pC +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +aj +ab +ab +ab +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +ai +ab +ab +ai +ai +ab +ab +ab +ab +ab +ai +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(98,1,1) = {" +kM +kM +Ux +nc +yv +Kz +nc +mW +kM +kM +kM +pC +pC +pC +pC +Yx +Yx +pC +pC +pC +pC +pC +pC +EA +EA +aj +aj +aj +ab +aj +aj +aj +ab +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 +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 +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 +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 +al +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +ai +ab +ab +ai +ab +ab +ab +ab +ab +ab +ai +ai +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(99,1,1) = {" +kM +kM +AA +mq +ng +nc +ZB +gC +tp +kM +kM +pC +pC +pC +pC +Yx +Yx +kw +pC +pC +pC +pC +EA +EA +EA +aj +aj +aj +ab +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +ai +ab +ab +ai +ab +ab +ab +ab +ab +ab +ai +am +ai +ai +ai +ai +ab +ab +ai +ai +ai +am +am +ai +ai +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(100,1,1) = {" +kM +kM +hq +gC +mW +gC +nc +QU +Sd +kM +kM +pC +pC +pC +kw +Yx +Yx +kw +pC +pC +pC +EA +EA +EA +EA +aj +aj +aj +ab +ab +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ai +ab +ab +ai +am +am +am +am +am +ai +ab +ab +ab +ab +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(101,1,1) = {" +kM +kM +OK +mW +Cb +nc +mS +GT +kM +kM +kM +pC +pC +pC +pC +kw +kw +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +ab +ab +ab +aj +ab +ak +al +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ai +ai +ab +ai +am +am +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(102,1,1) = {" +kM +kM +Sd +mq +GT +Vy +nf +Sd +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +ab +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ai +am +ai +am +am +ai +cu +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(103,1,1) = {" +kM +kM +kM +nc +mY +nc +mW +kM +kM +kM +kM +kw +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +ab +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ai +am +am +am +am +ai +cv +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(104,1,1) = {" +kM +kM +kM +Bx +kM +nf +kM +kM +kM +kM +kM +kw +kw +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +ab +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ai +am +am +am +am +ai +ab +ab +ab +ab +ab +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +aj +"} +(105,1,1) = {" +kM +kM +kM +kM +kM +nc +kM +kM +kM +kM +kM +kM +kw +kw +xW +xW +pC +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +ab +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ai +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ai +am +ai +ai +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(106,1,1) = {" +kM +kM +kM +Bx +ng +gC +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ai +am +am +am +am +am +am +am +ai +ai +ab +ab +ai +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +ab +"} +(107,1,1) = {" +kM +kM +kM +mW +nc +mW +iD +kM +kM +kM +kM +kM +kM +kM +kM +kM +kw +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +ab +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ai +ab +am +am +am +am +am +am +am +am +am +ai +ai +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(108,1,1) = {" +kM +kM +hh +mq +uO +nc +Rm +hq +kM +kM +kM +kM +kM +kM +kM +kM +kw +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +ai +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(109,1,1) = {" +kM +kM +RG +QH +ng +gC +QU +XD +kM +kM +kM +kM +kM +kM +kM +kM +Nn +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(110,1,1) = {" +kM +kM +iD +mW +nc +mY +gC +Bx +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(111,1,1) = {" +kM +kM +kM +gC +rQ +nf +kM +kM +kM +Bx +Yn +AA +kM +kM +kM +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(112,1,1) = {" +kM +kM +kM +Bx +kM +nc +kM +kM +kM +mW +mq +aL +nf +kM +kM +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(113,1,1) = {" +kM +kM +kM +kM +kM +mW +kM +kM +hq +gC +nc +QU +ng +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +aj +aj +aj +aj +aj +aj +ab +al +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +ab +ab +ab +"} +(114,1,1) = {" +kM +kM +kM +kM +kM +mq +kM +kM +CV +hO +mW +Xt +nc +kM +kM +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +al +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +ab +aj +aj +"} +(115,1,1) = {" +kM +kM +kM +kM +kM +nf +kM +kM +kM +QU +nc +ng +IP +kM +kM +pC +pC +kw +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +"} +(116,1,1) = {" +kM +kM +kM +kM +nc +gC +nf +Bx +kM +mS +Ec +hq +hR +kM +kM +pC +kw +Yx +Yx +pC +EA +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +al +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +ab +aj +aj +"} +(117,1,1) = {" +kM +kM +kM +Oa +mW +ng +nc +gC +kM +mq +gC +Bx +kM +kM +kM +kw +kw +Yx +Yx +kw +EA +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(118,1,1) = {" +kM +kM +kM +iD +QU +nc +gC +mq +mW +nc +ng +kM +kM +kM +MK +ky +kw +Yx +Yx +kw +EA +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(119,1,1) = {" +kM +kM +Bx +AF +OB +mY +mS +DB +kM +kM +kM +kM +kM +kM +pC +pC +kw +Yx +Yx +UO +EA +EA +EA +EA +EA +aj +aj +aj +aj +aj +ab +ab +ab +al +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +al +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 +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(120,1,1) = {" +kM +kM +kM +AA +mq +ng +XP +AF +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +QJ +aj +aj +aj +aj +aj +aj +mD +ab +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 +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ai +ai +ab +ab +ab +ab +ab +ab +aj +ab +ab +aj +aj +aj +aj +"} +(121,1,1) = {" +kM +kM +kM +kM +wn +nc +nf +Bx +kM +kM +kM +ae +jg +gB +gB +td +pC +pC +pC +pC +EA +EA +mu +EA +EA +aj +ab +mA +aj +aj +aj +ab +ab +ak +ak +ak +ak +ak +ak +al +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 +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 +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 +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 +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 +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ai +ab +ab +ab +ab +aj +aj +ab +aj +aj +aj +aj +"} +(122,1,1) = {" +kM +kM +kM +kM +kM +mW +kM +kM +kM +kM +kM +iC +gr +gs +gr +gr +ns +pC +pC +pC +pC +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +jQ +ak +ak +ak +ak +al +iy +ab +ab +mK +al +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 +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 +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 +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 +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 +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +"} +(123,1,1) = {" +kM +kM +kM +kM +kM +gC +kM +kM +kM +kM +kM +gR +ag +jF +gM +kB +jm +Nn +pC +Yt +EA +EA +EA +EA +nx +aj +aj +aj +aj +aj +aj +ab +ab +ak +ak +ak +ak +ab +ab +jx +ab +ab +mM +al +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 +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 +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 +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 +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 +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +aj +aj +ab +aj +aj +aj +aj +"} +(124,1,1) = {" +kM +kM +kM +kM +kM +mY +kM +kM +kM +kM +kM +kM +gG +go +kg +hs +gr +hH +pC +pC +EA +VS +EA +EA +EA +lw +aj +aj +ls +aj +aj +jx +jS +iy +al +ak +al +jq +ab +kN +ab +ab +jx +ab +ab +mN +al +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 +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 +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 +al +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 +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 +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +aj +aj +ab +aj +aj +ab +ab +aj +aj +aj +"} +(125,1,1) = {" +kM +kM +kM +mS +mV +mq +mV +nc +kM +kM +kM +kM +gr +jH +gO +kD +ag +le +kM +kM +Aq +EA +EA +EA +EA +aj +aj +aj +aj +aj +lI +aa +aa +jS +ab +ab +ja +ab +jx +ab +jq +ab +kN +ab +ab +ab +mO +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 +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 +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 +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 +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 +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +"} +(126,1,1) = {" +kM +kM +kM +gj +gC +mr +nb +ne +kM +kM +kM +kM +jk +gr +gr +gr +gr +gs +kM +XO +XO +lz +XO +lF +XO +lP +lS +lp +lZ +lS +lS +lp +aa +mE +ab +ab +ab +ab +kN +ab +ab +ab +ab +ab +jS +ab +ab +al +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 +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 +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 +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 +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 +am +am +am +am +am +am +am +am +am +am +am +am +am +am +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +"} +(127,1,1) = {" +mQ +mQ +fW +mQ +mW +hg +ac +nf +ac +ac +ac +af +lg +fT +kj +fT +fT +lg +Yi +DD +bd +DD +lD +lG +bd +lQ +lu +lW +ma +lq +mk +mn +kR +mF +ab +mG +ab +ja +ab +jx +ab +ab +kN +ab +ab +jq +jR +ab +ab +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 +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 +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 +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 +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 +am +am +am +am +am +am +am +am +am +am +am +am +am +am +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(128,1,1) = {" +kM +kM +kM +gk +mX +mZ +nc +ng +kM +kM +fV +fV +jl +gr +ah +gG +gs +gy +kM +lr +Hl +Hl +lE +Hl +lE +lR +lv +lv +mb +lR +ml +lR +aa +it +ab +ab +jx +jR +ab +ab +ab +mL +al +iY +ab +ab +jQ +ab +jx +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 +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 +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 +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 +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 +am +am +am +am +am +am +am +am +am +am +am +am +am +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(129,1,1) = {" +kM +kM +kM +mS +mY +ms +hJ +id +kM +kM +fV +fV +jm +jL +gM +kH +gr +hH +kM +kM +Iw +EA +EA +EA +nx +aj +aj +aj +aj +lw +aj +aa +aa +jq +ab +ab +ab +jQ +ab +mI +ab +ab +al +al +ab +ab +ab +ab +ab +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +al +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +am +am +fR +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(130,1,1) = {" +kM +kM +kM +kM +kM +nf +kM +kM +kM +kM +kM +kM +gr +go +kl +hs +gG +lj +pC +pC +EA +EA +mv +my +Iw +aj +aj +aj +lI +aj +aj +kN +jq +jS +jx +jS +ab +ab +ab +ab +ab +ab +jR +ak +jS +kN +ab +ab +jR +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +al +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 +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 +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 +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 +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 +am +am +am +am +am +am +am +am +am +am +fS +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(131,1,1) = {" +kM +kM +kM +kM +kM +mY +kM +kM +kM +kM +kM +gR +ah +jN +gO +kJ +gr +MK +pC +pC +EA +EA +EA +pC +CM +aj +jx +ab +ly +aj +aj +ab +ab +ak +al +ja +ab +mH +ab +ab +mJ +al +ak +ak +al +ab +ab +mP +al +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 +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 +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 +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 +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 +ak +am +am +am +am +am +am +am +am +fS +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(132,1,1) = {" +kM +kM +kM +kM +kM +mS +kM +kM +kM +kM +kM +gR +gr +gr +gr +jm +Yi +pC +pC +pC +EA +EA +EA +EA +EA +aj +ab +mB +aj +aj +aj +ab +ja +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 +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +fS +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(133,1,1) = {" +kM +kM +kM +Bx +QU +ng +mq +Bx +kM +kM +kM +ae +gr +jm +ko +WL +pC +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +iy +aj +aj +aj +kN +ab +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 +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +fS +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +"} +(134,1,1) = {" +kM +kM +kM +uv +nf +mq +yG +iD +kM +kM +kM +kM +kM +kM +UO +pC +pC +pC +pC +pC +QJ +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +fS +aj +ab +aj +ab +aj +aj +aj +aj +aj +aj +"} +(135,1,1) = {" +kM +kM +kM +PN +Zy +ng +mq +DB +kM +kM +kM +kM +kM +kM +pC +pC +pC +Qb +mt +pC +EA +EA +EA +EA +EA +aj +aj +aj +aj +ab +ab +ab +ab +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 +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 +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 +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 +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 +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 +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(136,1,1) = {" +kM +kM +kM +Bx +mq +wn +ng +Bx +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +UO +pC +EA +EA +EA +EA +EA +aj +aj +aj +aj +mC +ab +ab +ab +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 +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 +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 +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 +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 +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 +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(137,1,1) = {" +kM +kM +kM +kM +mY +nf +mq +kM +kM +kM +kM +iK +pC +CM +UO +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(138,1,1) = {" +kM +kM +kM +ng +QU +Bu +QU +ZC +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(139,1,1) = {" +kM +kM +uv +mS +IH +mZ +mZ +nf +tN +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(140,1,1) = {" +kM +Bx +iD +QU +mZ +JI +mZ +QU +PN +Bx +kM +kw +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +nx +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(141,1,1) = {" +kM +kM +AA +mq +yW +mZ +IH +mY +AA +kM +kM +kM +kw +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +LE +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(142,1,1) = {" +kM +kM +kM +ng +QU +nf +QU +mS +kM +kM +kM +kM +kw +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(143,1,1) = {" +kM +kM +kM +kM +kG +mY +vS +kM +kM +kM +kM +kM +kw +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +pC +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(144,1,1) = {" +kM +kM +kM +kM +JY +vc +Zo +kM +kM +kM +kM +kw +UO +pC +pC +pC +pC +pC +pC +pC +EA +EA +mw +pC +nx +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(145,1,1) = {" +kM +kM +kM +kM +yS +tV +Jv +kM +kM +kM +kM +LE +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +GS +pC +pC +mx +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(146,1,1) = {" +kM +kM +kM +kM +jU +Jq +Kh +yS +LT +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +pC +pC +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(147,1,1) = {" +kM +kM +kM +kM +jU +RK +QI +mf +yD +kM +kM +kw +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +pC +pC +aj +aj +aj +aj +aj +ab +al +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(148,1,1) = {" +kM +kM +kM +kM +yS +sN +SH +xp +yD +kM +kM +kw +kw +Qb +kw +pC +pC +ll +pC +pC +EA +EA +EA +pC +pC +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(149,1,1) = {" +kM +kM +kM +kM +kM +kM +Uf +Ut +yD +kM +kM +kM +kM +kM +kM +kM +kM +kM +kw +pC +EA +EA +EA +pC +EA +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(150,1,1) = {" +kM +kM +kM +Bx +ED +kM +jU +rY +hI +kM +kM +kM +kM +kM +kM +kM +kM +kM +kw +pC +EA +EA +EA +pC +EA +aj +aj +aj +aj +aj +ab +ab +ab +al +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(151,1,1) = {" +kM +kM +LH +zQ +Ml +kM +jU +MS +yS +kM +kM +Nn +pC +pC +pC +kw +kw +kw +pC +pC +pC +EA +EA +EA +EA +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(152,1,1) = {" +kM +Bx +yD +Wb +jU +kM +Fs +kv +hI +kM +kM +pC +pC +pC +kw +kw +kw +pC +pC +pC +pC +pC +pC +pC +EA +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(153,1,1) = {" +kM +kM +ui +HF +Jd +kM +jU +Rn +hI +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(154,1,1) = {" +kM +kM +kM +Bx +ED +kM +yx +Hw +VM +kM +kM +kw +kw +Yt +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +ab +ab +aj +aj +ab +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(155,1,1) = {" +kM +kM +kM +kM +kM +Bx +Gz +wp +uI +kM +kM +kM +kM +kw +kw +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(156,1,1) = {" +kM +kM +kM +kM +kM +kM +Sy +LW +ua +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(157,1,1) = {" +kM +kM +kM +Bx +kM +IS +Uc +LS +Nb +nC +kM +Bx +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +al +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(158,1,1) = {" +kM +kM +IM +mV +NL +Nb +Nb +is +Nb +Nb +Um +NL +Ng +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(159,1,1) = {" +kM +Bx +GV +jj +Nb +ID +Gt +WW +Uc +ID +Nb +Ff +MS +Bx +kM +kM +pC +pC +pC +pC +pC +pC +pC +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(160,1,1) = {" +kM +ih +GV +vy +Nb +gX +Mz +Em +Nb +Pr +is +mT +MS +Ac +kM +kM +pC +pC +pC +pC +pC +pC +pC +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(161,1,1) = {" +kM +Sm +UA +ZL +qK +SQ +vP +RK +vP +Hd +zQ +RQ +AR +Sm +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(162,1,1) = {" +kM +pg +Hu +yD +ti +Uf +gz +HI +Ei +yD +VP +jU +vm +Hy +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +pC +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(163,1,1) = {" +kM +Ac +pT +Ty +HF +rW +Xi +jD +Aj +tm +HF +EH +AR +Ac +kM +kM +pC +pC +pC +pC +pC +pC +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(164,1,1) = {" +kM +Sm +HB +Bq +gz +wC +kA +hl +ka +zB +Ei +lt +Gv +Sm +kM +kM +pC +pC +pC +pC +pC +EA +EA +EA +EA +aj +ab +aj +aj +aj +aj +ab +ab +al +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(165,1,1) = {" +Bx +ED +vY +RK +md +jD +Jm +lH +md +jD +Jm +XS +Jq +ED +Bx +kM +pC +pC +pC +pC +pC +EA +EA +EA +EA +ab +ab +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(166,1,1) = {" +kM +Ac +GV +Bq +Rz +AP +tx +HI +pI +Zb +xc +lt +MS +AM +kM +kM +Yt +kw +kw +pC +pC +EA +EA +EA +EA +ab +ab +ab +aj +ab +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(167,1,1) = {" +kM +Sm +HB +KG +sN +wS +Yd +jD +Wf +oM +sN +MW +Gv +Sm +kM +kM +Yx +Yx +Yx +Yx +pC +EA +EA +EA +pC +ab +ab +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +ab +aj +ab +aj +aj +aj +aj +aj +aj +"} +(168,1,1) = {" +kM +pg +Ax +QQ +Vc +Fs +Rz +hl +xc +yD +Td +Uf +lf +pg +kM +kM +Yx +Yx +Yx +Yx +pC +EA +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +fQ +fQ +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(169,1,1) = {" +kM +Ac +yX +jW +va +Pg +hb +RK +hb +If +va +ej +MS +Ac +kM +kM +Yx +Yx +Yx +Yx +pC +pC +pC +pC +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +fQ +fQ +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(170,1,1) = {" +kM +Wt +LJ +HG +Sk +qR +Zj +MP +RU +Sk +Zj +RU +MS +Sm +kM +kM +Yx +Yx +Yx +Yx +kw +pC +pC +pC +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +ak +ak +al +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +al +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(171,1,1) = {" +kM +Bx +Vq +ms +hJ +hJ +tQ +GG +lU +hJ +hJ +zH +Tj +Bx +kM +kM +Yx +Yx +Yx +Yx +kw +kw +pC +pC +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(172,1,1) = {" +kM +kM +kM +kM +Bx +RJ +Yh +Zu +uC +IT +Bx +kM +kM +kM +kM +kM +Yx +Yx +Yx +Yx +kw +kw +pC +pC +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +al +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 +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(173,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +Bx +kM +kM +kM +kM +kM +kM +kM +Yx +Yx +Yx +Yx +Yx +kw +pC +pC +pC +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(174,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +kw +Yx +Yx +Yx +Yx +kw +pC +pC +pC +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(175,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +QJ +Yx +Yx +Yx +Yx +UO +pC +pC +pC +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +al +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(176,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +MK +pC +Yx +Yx +Yx +Yx +pC +pC +pC +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +al +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(177,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +kw +kw +pC +pC +pC +pC +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(178,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(179,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kw +pC +pC +pC +pC +pC +pC +pC +pC +pC +EA +aj +aj +aj +aj +aj +aj +ab +al +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(180,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +LE +pC +kw +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +ab +ab +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(181,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +ab +ab +ab +ab +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(182,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +EA +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(183,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(184,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +pC +kw +Yx +pC +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(185,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kw +kw +Yx +Yt +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(186,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kw +kw +Yx +kw +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(187,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kw +kw +Yx +kw +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +fQ +ak +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(188,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kw +kw +Yx +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(189,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kw +LE +pC +pC +pC +pC +pC +pC +pC +pC +pC +EA +EA +EA +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(190,1,1) = {" +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +kM +LE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +EA +ab +aj +aj +ab +ab +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(191,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +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 +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 +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 +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 +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 +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 +al +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(192,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(193,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(194,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(195,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +al +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(196,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(197,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(198,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +iy +ab +ad +ad +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(199,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iy +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +al +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 +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 +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 +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 +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 +ak +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(200,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ak +ak +ak +ak +ak +ak +al +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 +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(201,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(202,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(203,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +iy +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(204,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +ak +al +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(205,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(206,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +ab +ab +ab +ab +ab +ab +ai +ai +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +ab +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 +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 +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 +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 +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 +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 +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(207,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ad +ai +ai +ab +ab +ab +aj +ab +aj +ab +ab +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(208,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +ad +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(209,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(210,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(211,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(212,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(213,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(214,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +al +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(215,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(216,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(217,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(218,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +js +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(219,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(220,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ai +ai +ai +ai +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +al +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 +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 +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 +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 +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 +fQ +aj +aj +aj +aj +aj +aj +aj +aj +"} +(221,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ai +ai +ai +ai +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +al +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 +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 +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 +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 +fQ +aj +aj +aj +aj +aj +aj +aj +aj +"} +(222,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ai +ai +ai +ai +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +fQ +aj +aj +aj +aj +aj +aj +aj +aj +"} +(223,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ai +ai +ai +ai +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(224,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ai +ai +ai +ai +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +al +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 +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 +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 +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(225,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +ai +ai +ai +ai +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +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 +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(226,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ai +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +al +al +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(227,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ai +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +ab +ab +ab +al +al +al +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +al +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 +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(228,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +al +al +ab +ab +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 +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 +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 +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 +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 +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 +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(229,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +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 +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 +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 +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 +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 +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 +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(230,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +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 +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(231,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(232,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(233,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(234,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(235,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(236,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +ab +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +al +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(237,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +js +ab +ad +ad +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +al +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(238,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(239,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(240,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +aj +ab +aj +ab +ab +ab +ab +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(241,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(242,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(243,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(244,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(245,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +al +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(246,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(247,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(248,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +al +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 +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(249,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ad +ad +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(250,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +al +ak +ak +ak +ak +ak +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(251,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +al +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(252,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(253,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +js +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(254,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +js +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +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 +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(255,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +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 +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 +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 +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 +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 +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} diff --git a/_maps/map_files220/generic/centcomm.dmm b/_maps/map_files220/generic/centcomm.dmm new file mode 100644 index 000000000000..3d62db32c8d0 --- /dev/null +++ b/_maps/map_files220/generic/centcomm.dmm @@ -0,0 +1,95360 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aad" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo10" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"aaz" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/infteam) +"aaA" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"aaB" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbrown" + }, +/area/centcom/ss220/admin3) +"aaU" = ( +/obj/effect/turf_decal/plaque{ + layer = 3 + }, +/obj/structure/statue/ell_good, +/obj/structure/sign/poster/contraband/random/east, +/turf/simulated/floor/redgrid, +/area/syndicate_mothership) +"aaW" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"abb" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/trade_sol/donksoft, +/turf/simulated/floor/wood/fancy/birch, +/area/shuttle/trade/sol) +"abl" = ( +/obj/structure/reagent_dispensers/beerkeg/nuke{ + desc = "Однажды незадачливый отряд внедрения синдиката вместо настоящей бомбы, украл у НТ эту стилизованную кегу с пивом. Эти ребята более не ходят по миру, но кега всё ещё украшает один из местных баров. На ней виднеется зачёркнутое слово 'Нанотрейзен' и приписанное рядом, кровью, слово 'Синдикат'"; + name = "Syndicate-brand nuclear fission explosive"; + pixel_y = 12 + }, +/obj/structure/table/wood/fancy/black, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"abF" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"abI" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"acq" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/indestructible + }, +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/bar) +"acz" = ( +/obj/structure/statue/sandstone/assistant{ + anchored = 1; + desc = "Главный по не твоим собачьим делам!"; + dir = 4; + icon = 'icons/mob/simple_human.dmi'; + icon_state = "syndicate_stormtrooper"; + max_integrity = 9999; + name = "Плуто"; + obj_integrity = 9999 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/jail) +"acA" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = -30 + }, +/obj/machinery/cryopod/offstation{ + icon_state = "sleeper_s"; + occupied_icon_state = "sleeper_s"; + dir = 1; + base_icon_state = "sleeper_s-open" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"ads" = ( +/obj/machinery/economy/vending/coffee/free, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"adB" = ( +/turf/simulated/floor/beach/away/sand, +/area/syndicate_mothership/outside) +"adH" = ( +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/bar) +"adJ" = ( +/turf/space, +/area/space/centcomm) +"aey" = ( +/obj/machinery/computer/shuttle/sit, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/control) +"afe" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"aff" = ( +/obj/item/flag/nt, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"afq" = ( +/obj/structure/fence/door{ + color = "#b0b7c6"; + dir = 1; + invulnerable = 1 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"afs" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"afG" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"aga" = ( +/turf/simulated/floor/carpet/black, +/area/trader_station/sol) +"agt" = ( +/obj/machinery/conveyor/west{ + id = "SFBQMLoad" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"agH" = ( +/obj/item/fish/shark{ + desc = "Совсем не навязчивая акула. От слова совсем."; + name = "Акула?"; + pixel_y = 4 + }, +/obj/structure/table/wood/fancy/black, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet/red, +/area/syndicate_mothership/control) +"ahg" = ( +/obj/structure/curtain/open/shower/security, +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/general) +"ahN" = ( +/obj/machinery/abductor/experiment{ + team = 3 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"aic" = ( +/obj/machinery/door/airlock/centcom{ + name = "Блокпост"; + req_one_access_txt = "101" + }, +/obj/effect/decal/warning_stripes/blue, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"aiJ" = ( +/obj/structure/closet/syndicate/nuclear, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"aiZ" = ( +/obj/effect/turf_decal/woodsiding{ + dir = 8 + }, +/obj/effect/turf_decal/woodsiding{ + dir = 4 + }, +/obj/structure/mineral_door/wood{ + name = "Changing chamber" + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"ajk" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + color = "red" + }, +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"ajF" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/storage/box/ids{ + pixel_y = 3 + }, +/obj/item/melee/classic_baton/ntcane{ + pixel_y = 4 + }, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -32 + }, +/obj/item/paper{ + info = "Уволить клоуна." + }, +/obj/item/stamp/chameleon, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"ajH" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/transport) +"ajI" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/mech_bay_recharge_port/upgraded, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/gamma/space) +"ala" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"alh" = ( +/obj/machinery/bookbinder, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"als" = ( +/obj/structure/table/wood, +/obj/item/storage/firstaid/tactical, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"alW" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/beach/away/sand, +/area/syndicate_mothership/outside) +"amr" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine/longrange/syndie{ + department = "Syndicate Strike Team" + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"amP" = ( +/obj/structure/sink/directional/north, +/obj/structure/mirror{ + layer = 2.8; + pixel_y = 34 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/centcom/ss220/evac) +"amV" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_access_txt = "101" + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"amY" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/syndicate_sit) +"anh" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"aoD" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"apf" = ( +/obj/structure/table/reinforced{ + color = "#444444" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/syndicate_mothership/control) +"apg" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/space/hardsuit/syndi{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/space/hardsuit/syndi, +/obj/item/clothing/suit/space/hardsuit/syndi{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"aph" = ( +/turf/simulated/floor/carpet/red, +/area/wizard_station) +"aqj" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "Camera"; + pictures_left = 30; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"aqp" = ( +/turf/simulated/floor/plating, +/area/centcom/ss220/admin3) +"aqq" = ( +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"aqs" = ( +/obj/machinery/plantgenes, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"arh" = ( +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_sit) +"arm" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/obj/machinery/economy/vending/tool/free, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"art" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/pulse/destroyer/annihilator{ + pixel_x = -6 + }, +/obj/item/gun/energy/pulse/destroyer/annihilator{ + pixel_x = 6 + }, +/obj/item/gun/energy/pulse/destroyer/annihilator, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"arH" = ( +/obj/machinery/economy/vending/cola/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/general) +"arI" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"arZ" = ( +/obj/structure/rack, +/obj/item/kitchen/knife/ritual, +/obj/structure/window/reinforced/clockwork{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"ase" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"ast" = ( +/obj/structure/toilet, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/infteam) +"asH" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/folder/yellow{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/taperecorder{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"asN" = ( +/obj/item/flag/nt, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"ata" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/control) +"atc" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/item/flag/syndi{ + layer = 4.2 + }, +/obj/structure/railing{ + layer = 4.3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/jail) +"atg" = ( +/obj/item/ammo_box/magazine/m556{ + pixel_y = 5 + }, +/obj/item/ammo_box/magazine/m556{ + pixel_y = 5 + }, +/obj/item/ammo_box/magazine/m556{ + pixel_y = 5 + }, +/obj/item/ammo_box/magazine/m556{ + pixel_y = 5 + }, +/obj/item/ammo_box/magazine/m556{ + pixel_y = 5 + }, +/obj/item/ammo_box/magazine/m556{ + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"atu" = ( +/turf/simulated/wall/indestructible/wood, +/area/ninja/holding) +"atT" = ( +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership) +"atZ" = ( +/obj/structure/fence{ + invulnerable = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"auh" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"auQ" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"ava" = ( +/obj/machinery/computer/card/minor/rd{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkpurplefull" + }, +/area/centcom/ss220/admin2) +"avl" = ( +/obj/machinery/door_control/no_emag{ + wires = 1; + emagged = 1; + req_access_txt = "153"; + pixel_y = -30; + pixel_x = -7; + name = "SST Outside Doors"; + id = "SST_outside" + }, +/obj/machinery/door_control/no_emag{ + wires = 1; + emagged = 1; + req_access_txt = "153"; + pixel_y = -30; + pixel_x = 7; + id = "SST_to_ATOM"; + name = "SST to ATOM hall" + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"avt" = ( +/obj/structure/flora/tree/jungle/small, +/obj/effect/mapping_helpers/light, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"avu" = ( +/obj/structure/table, +/obj/item/beach_ball/holoball{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/beach_ball/holoball{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/beach_ball/holoball{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/beach_ball/holoball{ + pixel_x = -6; + pixel_y = -1 + }, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"avN" = ( +/obj/machinery/bluespace_beacon/syndicate, +/obj/effect/turf_decal/box/red, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + color = "red"; + icon_state = "rightsecure"; + name = "Riot Control"; + req_access_txt = "156" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"awj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/syndicate_recruitment{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"awo" = ( +/obj/machinery/conveyor/east{ + id = "SFBQMLoad2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/cargo) +"awU" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 6; + water_overlay_image = null + }, +/area/centcom/ss220/evac) +"axb" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/box/gloves{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"axn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/turf_decal/stripes/corner, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"axu" = ( +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/general) +"axL" = ( +/obj/structure/table, +/obj/item/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/storage/box/trackimp, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"axN" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"axX" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion_l" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/syndicate_elite) +"aya" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/beach/away/sand, +/area/syndicate_mothership/outside) +"ayh" = ( +/obj/machinery/cryopod/offstation{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"ayu" = ( +/obj/structure/table{ + color = "#996633" + }, +/obj/machinery/chem_dispenser/beer/upgraded{ + dir = 4; + pixel_y = 6 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"ayH" = ( +/obj/structure/table/reinforced, +/obj/item/coin/antagtoken/syndicate, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"ayT" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"azw" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Палата 2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/centcom/ss220/general) +"azN" = ( +/obj/machinery/door/window/reinforced/normal{ + color = "red"; + name = "Комната заключённых"; + req_access_txt = "104" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/shuttle/administration) +"aAs" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"aAG" = ( +/obj/item/kitchen/knife/butcher, +/obj/structure/table/reinforced, +/obj/item/kitchen/knife/butcher/meatcleaver{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"aBI" = ( +/obj/machinery/sleeper{ + dir = 4; + pixel_x = 3 + }, +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"aCa" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"aCE" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo10" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"aDf" = ( +/obj/item/target, +/obj/effect/decal/cleanable/confetti, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"aDj" = ( +/obj/structure/rack/holorack, +/obj/effect/turf_decal/box/white, +/obj/structure/sign/poster/contraband/hacking_guide{ + pixel_y = 32 + }, +/obj/structure/light_fake{ + dir = 1 + }, +/obj/item/autosurgeon/organ/syndicate, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"aDo" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/door/airlock/public/glass{ + name = "Гидропоника" + }, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"aDr" = ( +/obj/mecha/combat/marauder/seraph/loaded, +/turf/simulated/floor/mech_bay_recharge_floor, +/area/centcom/ss220/admin2) +"aDC" = ( +/obj/machinery/computer/syndicate_depot/teleporter, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"aDO" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/syndicate_mothership/elite_squad) +"aEb" = ( +/obj/structure/statue/sandstone/assistant{ + anchored = 1; + desc = "Он точно спит на посту!"; + dir = 8; + icon = 'icons/mob/simple_human.dmi'; + icon_state = "syndicate_smg"; + max_integrity = 9999; + name = "Боба"; + obj_integrity = 9999 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/syndicate_mothership/elite_squad) +"aER" = ( +/obj/structure/reagent_dispensers/fueltank/chem/west, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"aFb" = ( +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Барная стойка" + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"aFH" = ( +/obj/structure/statue/sandstone/assistant{ + anchored = 1; + desc = "Он точно спит на посту!"; + dir = 4; + icon = 'icons/mob/simple_human.dmi'; + icon_state = "syndicate_smg"; + max_integrity = 9999; + name = "Боба"; + obj_integrity = 9999 + }, +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcorners" + }, +/area/syndicate_mothership/infteam) +"aFK" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_sit) +"aFQ" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/door_control/no_emag{ + id = "syndFB_tool"; + name = "Tool Storage"; + wires = 1; + specialfunctions = 4; + req_access_txt = "153"; + pixel_x = -32; + emagged = 1 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"aGs" = ( +/obj/mecha/combat/gygax/dark/loaded, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"aGS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/sleeper, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"aHv" = ( +/obj/structure/light_fake{ + dir = 1 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"aHG" = ( +/obj/structure/statue/sandstone/assistant{ + anchored = 1; + desc = "Он точно спит на посту"; + dir = 1; + icon = 'icons/mob/simple_human.dmi'; + icon_state = "syndicate_smg"; + max_integrity = 9999; + name = "Боба"; + obj_integrity = 9999 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"aHS" = ( +/obj/structure/chair/comfy/corp, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"aIZ" = ( +/obj/machinery/computer/library, +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"aJF" = ( +/obj/machinery/economy/vending/cigarette, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"aKx" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"aKO" = ( +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/grass/jungle/no_creep, +/area/wizard_station) +"aKS" = ( +/obj/structure/closet/secure_closet/bar, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/item/reagent_containers/iv_bag/blood/OMinus, +/obj/item/reagent_containers/iv_bag/blood/OMinus, +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"aLl" = ( +/obj/structure/chair/sofa, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"aLu" = ( +/obj/structure/dresser, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/administration) +"aLP" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"aMe" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbluealt" + }, +/area/shuttle/administration) +"aMw" = ( +/obj/docking_port/stationary/transit{ + dwidth = 1; + height = 4; + id = "pod1_transit"; + name = "pod 1 in transit"; + width = 3 + }, +/turf/space/transit, +/area/space/centcomm) +"aMJ" = ( +/obj/structure/rack, +/obj/item/radio/headset/headset_iaa/alt, +/obj/item/radio/headset/headset_iaa/alt, +/obj/item/radio/headset/heads/magistrate/alt, +/obj/item/radio/headset/heads/magistrate/alt, +/obj/item/radio/headset/heads/ntrep, +/obj/item/radio/headset/heads/ntrep, +/obj/item/stamp/captain, +/obj/item/stamp/ce, +/obj/item/stamp/cmo, +/obj/item/stamp/hop, +/obj/item/stamp/hos, +/obj/item/stamp/law, +/obj/item/stamp/magistrate, +/obj/item/stamp/qm, +/obj/item/stamp/rd, +/obj/item/stamp/rep, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"aNi" = ( +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"aNn" = ( +/obj/machinery/gibber, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"aOc" = ( +/obj/structure/closet/secure_closet/mime{ + req_access = null + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/syndicate_mothership/infteam) +"aOu" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/item/bedsheet/red{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"aOO" = ( +/obj/machinery/smartfridge/drying_rack, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"aPj" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"aPD" = ( +/obj/machinery/sleeper/syndie, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_elite) +"aQG" = ( +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine/longrange/syndie{ + department = "Syndicate Infiltrators" + }, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"aQU" = ( +/obj/structure/chair/comfy/shuttle, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"aRa" = ( +/obj/structure/bed, +/obj/effect/landmark/spawner/wiz, +/obj/item/bedsheet/wiz, +/turf/simulated/floor/carpet/purple, +/area/wizard_station) +"aRI" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 6; + water_overlay_image = null + }, +/area/syndicate_mothership/outside) +"aRU" = ( +/obj/docking_port/stationary/transit{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining_transit"; + name = "mining in transit"; + width = 7 + }, +/turf/space/transit, +/area/space/centcomm) +"aRZ" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red{ + color = "#aa2222" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcornersalt" + }, +/area/syndicate_mothership/cargo) +"aSs" = ( +/obj/docking_port/stationary/transit{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_transit"; + name = "supply in transit"; + width = 12 + }, +/turf/space/transit, +/area/space/centcomm) +"aSu" = ( +/obj/structure/safe, +/obj/item/stack/spacecash/c10000, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/admin1) +"aSV" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership) +"aSX" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"aTe" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"aTN" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/delivery/white, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"aWR" = ( +/obj/structure/rack, +/obj/item/clothing/suit/wizrobe/marisa, +/obj/item/clothing/shoes/sandal/marisa, +/obj/item/clothing/head/wizard/marisa, +/obj/item/staff/broom, +/turf/simulated/floor/carpet/black, +/area/wizard_station) +"aXh" = ( +/obj/structure/table/wood/poker, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/structure/curtain/open/shower/security{ + anchored = 1 + }, +/obj/item/deck/cards/syndicate, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership) +"aXt" = ( +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/general) +"aXF" = ( +/obj/structure/rack/holorack, +/obj/item/grenade/chem_grenade/holywater, +/obj/item/grenade/chem_grenade/holywater, +/obj/item/grenade/chem_grenade/holywater, +/obj/item/grenade/chem_grenade/holywater, +/obj/item/grenade/chem_grenade/holywater, +/obj/item/grenade/chem_grenade/holywater, +/obj/item/grenade/chem_grenade/holywater, +/obj/item/grenade/chem_grenade/holywater, +/obj/item/grenade/chem_grenade/holywater, +/obj/item/grenade/chem_grenade/holywater, +/obj/item/grenade/clusterbuster/holy, +/obj/item/grenade/clusterbuster/holy, +/obj/item/grenade/clusterbuster/holy, +/obj/effect/turf_decal/delivery/white, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"aYb" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"aYC" = ( +/obj/structure/table, +/obj/item/dice/d20, +/turf/simulated/floor/plasteel/freezer, +/area/ninja/holding) +"aYX" = ( +/obj/structure/chair/sofa/pew{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/evac) +"aZf" = ( +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkyellowalt" + }, +/area/centcom/ss220/supply) +"aZi" = ( +/obj/machinery/computer/camera_advanced/abductor{ + team = 2 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"aZj" = ( +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"baa" = ( +/obj/structure/window/reinforced, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet, +/area/centcom/ss220/evac) +"bai" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"bbA" = ( +/obj/structure/chair/comfy/purp{ + dir = 8 + }, +/obj/effect/decal/syndie_logo{ + icon_state = "logo5" + }, +/obj/effect/landmark/spawner/syndicateofficer, +/obj/effect/turf_decal/siding/black{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"bbH" = ( +/turf/simulated/floor/beach/away/coastline/beachcorner{ + dir = 1; + water_overlay_image = null + }, +/area/syndicate_mothership/outside) +"bbP" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/syndicate_mothership/infteam) +"bcb" = ( +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"bcl" = ( +/obj/effect/turf_decal/delivery/red, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"bcm" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion_r" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/syndicate_elite) +"bcI" = ( +/obj/structure/table/abductor, +/obj/item/bonegel/alien, +/obj/item/bonesetter/alien, +/obj/item/FixOVein/alien, +/obj/item/surgicaldrill/alien, +/obj/item/circular_saw/alien, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"bda" = ( +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"bed" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + autolink_id = "syndie_cargo_left_shuttle_pump" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"bem" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"bfb" = ( +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"bfd" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"bfH" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/crate/plastic, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"bfI" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"bfN" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"bgj" = ( +/obj/effect/turf_decal/siding/black{ + dir = 8 + }, +/obj/effect/turf_decal/siding/black{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"bgl" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id_tag = "CC_Armory_Mech"; + name = "Мехи" + }, +/obj/effect/decal/warning_stripes/red, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"bgJ" = ( +/obj/structure/barricade{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "diagonalWall3"; + name = "diagonal shields"; + proj_pass_rate = 0; + max_integrity = 200; + armor = list(melee = 10, bullet = 50, laser = 50, energy = 50, bomb = 10, rad = 100, fire = 10, acid = 0); + stacktype = null; + dir = 1 + }, +/turf/simulated/floor/indestructible/transparent_floor, +/area/shuttle/syndicate) +"bhB" = ( +/obj/effect/turf_decal/siding/red{ + color = "#aa2222" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"bhI" = ( +/obj/structure/chair/comfy/corp{ + dir = 1 + }, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin3) +"bhU" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/outside) +"bif" = ( +/obj/structure/table/abductor, +/obj/item/storage/box/alienhandcuffs, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"bit" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo3" + }, +/obj/effect/turf_decal/siding/black{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"biu" = ( +/obj/effect/turf_decal/woodsiding{ + dir = 1 + }, +/obj/structure/curtain/open{ + color = "#222222"; + name = "wizard council curtain"; + pixel_y = -2 + }, +/turf/simulated/floor/carpet/red, +/area/wizard_station) +"bjf" = ( +/obj/item/flag/syndi, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"bjD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/trade/sol) +"bjU" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = 10 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = 5 + }, +/obj/item/reagent_containers/food/condiment/enzyme, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"bkd" = ( +/obj/item/flag/species/taj, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"bkl" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 1; + height = 4; + id = "pod3_away"; + name = "recovery ship bay 3"; + width = 3 + }, +/turf/space/transit/horizontal, +/area/space/centcomm) +"bkG" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/full/shuttle, +/turf/simulated/floor/grass/no_creep, +/area/shuttle/escape) +"bkK" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/admin1) +"bkU" = ( +/obj/item/flashlight/lantern{ + anchored = 1; + layer = 5; + light_color = "#FF9F40"; + on = 1 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"bmv" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating/airless, +/area/shuttle/specops) +"bnh" = ( +/obj/structure/lattice, +/turf/space, +/area/space/centcomm) +"bni" = ( +/obj/item/clothing/head/collectable/paper, +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/ninja/holding) +"bnn" = ( +/obj/machinery/door/airlock/centcom{ + name = "Офисы"; + req_one_access_txt = "101" + }, +/obj/effect/decal/warning_stripes/blue, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"bnr" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"bnK" = ( +/obj/structure/table/wood, +/obj/item/tank/jetpack/oxygen/harness{ + pixel_y = 6 + }, +/obj/item/tank/jetpack/oxygen/harness{ + pixel_y = 3 + }, +/obj/item/tank/jetpack/oxygen/harness, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"bos" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"boO" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"boV" = ( +/obj/structure/closet/masks, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"boW" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/fans/tiny/invisible, +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"bpc" = ( +/obj/docking_port/stationary/transit{ + dir = 2; + dwidth = 8; + height = 15; + id = "admin_transit"; + name = "admin in transit"; + width = 18 + }, +/turf/space/transit/horizontal, +/area/space/centcomm) +"bpw" = ( +/obj/machinery/computer/shuttle/syndicate{ + name = "Nuclear Operatives Shuttle Console" + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"bpL" = ( +/obj/machinery/chem_heater, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"bqr" = ( +/obj/effect/turf_decal/woodsiding{ + dir = 10 + }, +/turf/simulated/floor/carpet/royalblack, +/area/syndicate_mothership/control) +"bqK" = ( +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"bqN" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"brr" = ( +/obj/effect/overlay/coconut{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/structure/flora/tree/palm{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/stock_parts/cell/infinite{ + desc = "Интересная батарейка золотого цвета, главный вопрос который вас терзает - а что она делает в космосе? \n Жаль что контакты окислились."; + initialized = 1; + name = "Батарейка в космосе?"; + pixel_x = 2; + pixel_y = 7 + }, +/turf/simulated/floor/beach/away/sand, +/area/centcom/ss220/evac) +"brH" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"brK" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "syndie_cargo_left_shuttle_pump" + }, +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"bsh" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/wall/indestructible/rock/mineral, +/area/syndicate_mothership/outside) +"bsp" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"bsz" = ( +/obj/structure/rack, +/obj/item/circuitboard/aiupload, +/obj/item/circuitboard/circuit_imprinter, +/obj/item/circuitboard/communications, +/obj/item/circuitboard/destructive_analyzer, +/obj/item/circuitboard/ore_redemption, +/obj/item/circuitboard/mining_shuttle, +/obj/item/circuitboard/protolathe, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"bsB" = ( +/obj/item/flag/nt, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"bsC" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/transport) +"btm" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"bua" = ( +/obj/machinery/tcomms/relay/cc, +/obj/structure/light_fake/spot{ + dir = 1 + }, +/obj/machinery/ai_status_display/north, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"bux" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/shuttle/trade/sol) +"buT" = ( +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"bvs" = ( +/obj/structure/table, +/obj/machinery/door_control/no_emag{ + id = "CC_Interior_1"; + name = "Открыть вход"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = -2; + req_one_access_txt = "101" + }, +/obj/machinery/door_control/no_emag{ + id = "CC_Exterior_1"; + name = "Открыть выход"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 8; + req_one_access_txt = "101" + }, +/obj/machinery/door_control/no_emag{ + id = "СС_BD_Interior_1"; + name = "Blast Door Open"; + pixel_x = 6; + pixel_y = -2; + req_one_access_txt = "101" + }, +/obj/machinery/door_control/no_emag{ + id = "СС_BD_Exterior_1"; + name = "Blast Door Open"; + pixel_x = 6; + pixel_y = 8; + req_one_access_txt = "101" + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/admin1) +"bvE" = ( +/obj/structure/statue/sandstone/assistant{ + anchored = 1; + desc = "Он точно не спит на посту!"; + dir = 8; + icon = 'icons/mob/simple_human.dmi'; + icon_state = "syndicate_smg"; + max_integrity = 9999; + name = "Биба"; + obj_integrity = 9999 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding/corner{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"bvR" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredalt" + }, +/area/syndicate_mothership/control) +"bxe" = ( +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"bxg" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/shuttle/escape) +"bxz" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"bxA" = ( +/obj/effect/bump_teleporter{ + id = "Synd15"; + id_target = "Synd25" + }, +/turf/simulated/floor/plasteel{ + color = "gray"; + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"byz" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkyellowalt" + }, +/area/centcom/ss220/supply) +"bzC" = ( +/obj/machinery/door/poddoor/shutters{ + id_tag = "CC_Armory_Advanced_2"; + name = "Огнестрел" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"bCs" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"bCK" = ( +/obj/structure/mirror/magic{ + desc = null; + name = "mirror"; + pixel_y = 25 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"bDj" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"bDX" = ( +/obj/item/flag/syndi, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/syndicate_mothership/infteam) +"bEA" = ( +/obj/structure/curtain/black{ + pixel_x = 32; + pixel_y = -32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = 32; + anchored = 1 + }, +/obj/structure/closet/secure_closet/syndicate_officer, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 6 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"bEB" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/projectile/automatic/ar{ + pixel_x = -6 + }, +/obj/item/gun/projectile/automatic/ar{ + pixel_x = 6 + }, +/obj/item/gun/projectile/automatic/ar, +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"bFg" = ( +/obj/structure/light_fake{ + dir = 8 + }, +/obj/structure/table/holotable/wood{ + color = "#996633" + }, +/obj/item/storage/bag/money{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"bFA" = ( +/turf/simulated/wall/indestructible/syndicate{ + smoothing_flags = 2 + }, +/area/syndicate_mothership/outside) +"bGm" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"bGn" = ( +/obj/structure/chair/sofa/corner{ + dir = 4 + }, +/obj/effect/turf_decal/box/red/corners{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"bGu" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/beer/upgraded{ + dir = 8; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"bGD" = ( +/obj/machinery/door/airlock/wood, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"bGG" = ( +/obj/machinery/suit_storage_unit/syndicate{ + pixel_y = 6 + }, +/obj/effect/turf_decal/stripes/line, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"bHy" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"bIm" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"bIG" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo3" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"bIJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/centcom/ss220/evac) +"bJO" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warndarkgreycornerred" + }, +/area/syndicate_mothership/infteam) +"bJW" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 8 + }, +/obj/machinery/photocopier/syndie, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"bLl" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"bLo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/poddoor/impassable{ + color = "#ffdd99"; + id_tag = "SST_armory_grenades"; + name = "SST Armory Grenades" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"bLA" = ( +/obj/structure/table, +/obj/item/gun/energy/ionrifle/carbine, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"bMk" = ( +/obj/structure/table/holotable/wood{ + color = "#996633" + }, +/obj/machinery/chem_dispenser/beer/upgraded{ + pixel_y = 6 + }, +/turf/simulated/floor/carpet/black, +/area/trader_station/sol) +"bMv" = ( +/obj/machinery/computer/communications{ + dir = 4 + }, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/administration) +"bNg" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "SyndFB_prison_stroll_blast"; + layer = 3.1; + closingLayer = 3.1 + }, +/obj/machinery/door/airlock/hatch/syndicate/command{ + name = "Тюрьма" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcornersalt" + }, +/area/syndicate_mothership/jail) +"bNo" = ( +/obj/machinery/economy/vending/syndisnack, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"bOw" = ( +/obj/structure/statue/sandstone/venus{ + anchored = 1; + layer = 5; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding."; + icon_state = "plaque"; + name = "Comemmorative Plaque" + }, +/area/centcom/ss220/park) +"bOI" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkyellowalt" + }, +/area/centcom/ss220/supply) +"bPs" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Зона отдыха" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"bPw" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/boxing/blue, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"bQj" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"bQn" = ( +/obj/structure/rack, +/obj/item/storage/backpack/duffel/syndie/c4{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/backpack/duffel/syndie/c4, +/obj/item/storage/backpack/duffel/syndie/c4{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"bQR" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"bRc" = ( +/obj/structure/table, +/obj/item/paper_bin/nanotrasen{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen/multi/fountain{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/administration) +"bRe" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo7" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"bRt" = ( +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"bRw" = ( +/obj/structure/statue/sandstone/assistant{ + anchored = 1; + desc = "Он точно спит на посту"; + dir = 1; + icon = 'icons/mob/simple_human.dmi'; + icon_state = "syndicate_smg"; + max_integrity = 9999; + name = "Боба"; + obj_integrity = 9999 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"bRy" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/machinery/door_control/no_emag/west{ + id = "QMLoaddoor2"; + layer = 3; + name = "Loading Doors"; + pixel_y = -8 + }, +/obj/machinery/door_control/no_emag/west{ + id = "QMLoaddoor"; + layer = 3; + name = "Loading Doors"; + pixel_y = 8 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/supply) +"bRC" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"bRD" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"bRF" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 4 + }, +/obj/machinery/computer/message_monitor{ + pixel_x = -6; + dir = 8 + }, +/obj/item/paper/monitorkey, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"bRL" = ( +/obj/structure/table/holotable/wood{ + color = "#996633" + }, +/obj/item/pizzabox{ + pixel_y = 10 + }, +/turf/simulated/floor/carpet/black, +/area/trader_station/sol) +"bSb" = ( +/obj/machinery/bodyscanner, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"bSf" = ( +/obj/structure/chair/stool/bar/dark{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/bar) +"bSm" = ( +/obj/structure/chair/sofa/corner{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"bSN" = ( +/obj/structure/table/glass, +/obj/item/mmi/syndie, +/obj/item/mmi/syndie, +/obj/item/mmi/syndie, +/obj/item/mmi/syndie, +/turf/simulated/floor/plasteel{ + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"bTt" = ( +/obj/item/flag/nt, +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"bTx" = ( +/turf/simulated/floor/beach/away/water/dense{ + density = 0; + water_overlay_image = null + }, +/area/centcom/ss220/park) +"bTz" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"bTM" = ( +/obj/structure/light_fake{ + dir = 1 + }, +/obj/machinery/economy/vending/medical/syndicate_access, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"bTV" = ( +/obj/structure/flora/junglebush/large{ + layer = 4.6 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"bUd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/delivery/white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"bUl" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/bottle/vermouth, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"bUU" = ( +/turf/simulated/floor/carpet, +/area/syndicate_mothership/control) +"bVn" = ( +/obj/structure/light_fake/small, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"bVF" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "syndieshutters_Aspid"; + name = "Blast Shutters" + }, +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/plating, +/area/syndicate_mothership/cargo) +"bVM" = ( +/obj/mecha/combat/gygax/dark/loaded, +/turf/simulated/floor/mech_bay_recharge_floor, +/area/centcom/ss220/admin3) +"bVP" = ( +/obj/machinery/prize_counter, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/bar) +"bVS" = ( +/obj/item/gun/projectile/automatic/sniper_rifle/syndicate{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/projectile/automatic/sniper_rifle/syndicate, +/obj/item/gun/projectile/automatic/sniper_rifle/syndicate{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/ammo_box/magazine/sniper_rounds{ + pixel_x = 9; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds{ + pixel_x = 9; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds{ + pixel_x = 9; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds{ + pixel_x = 9; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds{ + pixel_x = 9; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds{ + pixel_x = 9; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/haemorrhage{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/haemorrhage{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/haemorrhage{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/haemorrhage{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/haemorrhage{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/haemorrhage{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator{ + pixel_x = -5; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator{ + pixel_x = -5; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator{ + pixel_x = -5; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator{ + pixel_x = -5; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator{ + pixel_x = -5; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/penetrator{ + pixel_x = -5; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/soporific{ + pixel_x = -9; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/soporific{ + pixel_x = -9; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/soporific{ + pixel_x = -9; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/soporific{ + pixel_x = -9; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/soporific{ + pixel_x = -9; + pixel_y = -7 + }, +/obj/item/ammo_box/magazine/sniper_rounds/soporific{ + pixel_x = -9; + pixel_y = -7 + }, +/obj/structure/light_fake/small, +/obj/effect/turf_decal/bot_white, +/obj/structure/rack/gunrack, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"bVX" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "syndieshutters_Aspid"; + name = "Blast Shutters" + }, +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/plating, +/area/syndicate_mothership/cargo) +"bWD" = ( +/obj/structure/closet/secure_closet/brig{ + req_access_txt = "153" + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"bWK" = ( +/obj/machinery/jukebox/disco/anchored/indestructible, +/obj/effect/turf_decal/box/white, +/turf/simulated/floor/mineral/abductor, +/area/centcom/ss220/bar) +"bWW" = ( +/obj/structure/chair/comfy/red{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"bWX" = ( +/obj/machinery/conveyor/south{ + id = "SFBQMLoad" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"bXY" = ( +/obj/machinery/cryopod/offstation, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"bYd" = ( +/obj/structure/table/wood, +/obj/item/stack/telecrystal/fifty{ + pixel_x = 3 + }, +/obj/item/stack/telecrystal/fifty{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/stack/telecrystal/fifty{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/stack/telecrystal/fifty{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"bYl" = ( +/obj/item/flag/syndi, +/obj/machinery/light/directional/south, +/obj/effect/decal/syndie_logo{ + icon_state = "logo19" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"bZl" = ( +/obj/item/flag/syndi, +/obj/machinery/computer/cryopod{ + pixel_x = 32; + req_access_txt = "150" + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"cam" = ( +/turf/simulated/floor/beach/away/water/deep/dense{ + water_overlay_image = null + }, +/area/centcom/ss220/bar) +"cat" = ( +/obj/structure/window/reinforced{ + color = "red" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate_sit) +"caA" = ( +/obj/structure/showcase, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"caZ" = ( +/obj/machinery/sleeper, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/shuttle/escape) +"cbK" = ( +/obj/machinery/computer/communications, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"cct" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"ccF" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/gun/blueshield/pdw9{ + pixel_x = -6 + }, +/obj/item/gun/energy/gun/blueshield/pdw9{ + pixel_x = 6 + }, +/obj/item/gun/energy/gun/blueshield/pdw9, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"cdn" = ( +/turf/simulated/floor/transparent/glass, +/area/centcom/ss220/evac) +"cdt" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/pulse/pistol/m1911{ + pixel_x = -6 + }, +/obj/item/gun/energy/pulse/pistol/m1911{ + pixel_x = 6 + }, +/obj/item/gun/energy/pulse/pistol/m1911, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"cdV" = ( +/obj/structure/table/reinforced, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flashbang, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flashbang/clusterbang/limited, +/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster, +/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkbrown" + }, +/area/centcom/ss220/admin3) +"cex" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"ceC" = ( +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"cff" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/shuttle/escape) +"cgm" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo16" + }, +/obj/effect/turf_decal/siding/black{ + dir = 10 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"cgs" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluealtstrip" + }, +/area/centcom/ss220/admin1) +"cgE" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/gun/nuclear{ + pixel_x = -6 + }, +/obj/item/gun/energy/gun/nuclear{ + pixel_x = 6 + }, +/obj/item/gun/energy/gun/nuclear, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"cgU" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/landmark/spawner/commando_manual, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"cgX" = ( +/obj/structure/closet/secure_closet/clown{ + req_access = null + }, +/obj/item/clothing/suit/soldiercoat, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/syndicate_mothership/infteam) +"chj" = ( +/obj/effect/decal/syndie_logo, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"chA" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warndarkgreycornerred" + }, +/area/syndicate_mothership) +"chG" = ( +/obj/structure/statue/sandstone/assistant{ + anchored = 1; + desc = "Он точно не спит на посту!"; + dir = 4; + icon = 'icons/mob/simple_human.dmi'; + icon_state = "syndicate_smg"; + max_integrity = 9999; + name = "Биба"; + obj_integrity = 9999 + }, +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcorners" + }, +/area/syndicate_mothership/infteam) +"chQ" = ( +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"cie" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo10" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"ciJ" = ( +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"ciP" = ( +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/admin2) +"cji" = ( +/obj/machinery/door/poddoor{ + id_tag = "nukeop_ready"; + layer = 3.11; + name = "Shuttle Dock Door"; + closingLayer = 3.11 + }, +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership) +"cjj" = ( +/obj/structure/chair/comfy/corp{ + dir = 1 + }, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"cjw" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbrown" + }, +/area/centcom/ss220/admin3) +"cjU" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"ckR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/shuttle/trade/sol) +"ckX" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/machinery/ai_status_display/north, +/obj/item/gun/energy/immolator/multi, +/obj/item/gun/energy/immolator/multi, +/obj/item/gun/energy/immolator/multi, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/gamma/space) +"ckZ" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/gun/nuclear{ + pixel_x = -6 + }, +/obj/item/gun/energy/gun/nuclear{ + pixel_x = 6 + }, +/obj/item/gun/energy/gun/nuclear, +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"clx" = ( +/obj/effect/decal/nanotrasen_logo/n3, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"clO" = ( +/obj/structure/light_fake/small, +/obj/structure/sign/poster/contraband/random/south, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"clT" = ( +/obj/machinery/door/airlock/centcom{ + name = "Лазарет"; + req_access_txt = "101" + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"cmL" = ( +/obj/machinery/cryopod/offstation, +/obj/machinery/computer/cryopod{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"cmZ" = ( +/turf/simulated/floor/transparent/glass, +/area/centcom/ss220/bar) +"cnh" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/turf/simulated/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"cns" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warndarkgreycornerred" + }, +/area/syndicate_mothership/elite_squad) +"cnB" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/mask/breath, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/shuttle/escape) +"cnF" = ( +/obj/item/flag/syndi, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + pixel_y = -32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"cnG" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"cob" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"cof" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/escape) +"coE" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"coJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/simulated/floor/carpet/purple, +/area/centcom/ss220/general) +"cqV" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/shuttle/escape) +"cqW" = ( +/obj/structure/sign/double/map/right{ + pixel_y = 32 + }, +/obj/effect/landmark/spawner/syndicate_commando, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"cqX" = ( +/obj/machinery/door/airlock/hatch/syndicate/command, +/obj/effect/turf_decal/miscellaneous/goldensiding, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"crr" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo9" + }, +/obj/effect/turf_decal/siding/black{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"crx" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/shuttle/escape) +"crA" = ( +/obj/structure/chair/sofa/corner, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"crZ" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbluealt" + }, +/area/shuttle/administration) +"csQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/fluff/hugosheet, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"csZ" = ( +/obj/machinery/cryopod/robot/offstation, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"cts" = ( +/obj/mecha/combat/marauder/ares/loaded, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/gamma/space) +"ctL" = ( +/turf/simulated/floor/plasteel/stairs/right, +/area/centcom/ss220/evac) +"ctT" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/syndicate_mothership/outside) +"cuu" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/control) +"cux" = ( +/obj/structure/table, +/obj/item/hand_labeler{ + pixel_y = 7 + }, +/obj/item/hand_labeler, +/obj/effect/turf_decal/stripes/white/full{ + color = "#b59959" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"cuK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/light_fake{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"cvZ" = ( +/obj/machinery/defibrillator_mount/loaded{ + pixel_x = -30 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"cwb" = ( +/obj/machinery/recharger/wallcharger/upgraded{ + pixel_x = 4; + pixel_y = 38 + }, +/obj/machinery/recharger/wallcharger/upgraded{ + pixel_x = 4; + pixel_y = 29 + }, +/obj/machinery/recharger/wallcharger/upgraded{ + pixel_x = 4; + pixel_y = 20 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"cwg" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo5" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"cxe" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/simulated/floor/mineral/abductor, +/area/centcom/ss220/bar) +"cxm" = ( +/obj/structure/table/wood, +/obj/item/storage/bible{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/evac) +"cxD" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"cxO" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/general) +"cyn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"cyD" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"czB" = ( +/obj/structure/rack, +/obj/item/storage/fancy/crayons, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"cAh" = ( +/obj/machinery/economy/vending/dinnerware, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"cBB" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warndarkgreycornerred" + }, +/area/syndicate_mothership/infteam) +"cBN" = ( +/obj/docking_port/stationary/transit{ + dwidth = 1; + height = 4; + id = "pod2_transit"; + name = "pod 2 in transit"; + width = 3 + }, +/turf/space/transit, +/area/space/centcomm) +"cBW" = ( +/obj/machinery/economy/vending/coffee/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"cCu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"cCy" = ( +/obj/machinery/door/airlock/centcom{ + id_tag = "CC_Exterior_2"; + name = "Зона ЦК"; + req_one_access_txt = "101" + }, +/obj/machinery/door/poddoor/impassable{ + id_tag = "СС_BD_Exterior_2"; + layer = 3 + }, +/obj/machinery/door_control/no_emag/west{ + id = "СС_BD_Exterior_2"; + name = "Blast Door Open"; + req_one_access_txt = "101" + }, +/obj/effect/decal/warning_stripes/white, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/general) +"cCA" = ( +/obj/machinery/door_control/no_emag/west{ + color = "#ffbf80"; + id = "CC_DeathSquad"; + name = "Blast Door Control"; + req_one_access_txt = "114" + }, +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"cDb" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/adv, +/obj/effect/landmark/spawner/commando_manual, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"cDe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/elite_squad) +"cDl" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = 30 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"cDV" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"cEr" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/birch, +/area/shuttle/trade/sol) +"cEu" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"cEx" = ( +/obj/structure/table/reinforced, +/obj/item/shield/riot{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/shield/riot{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/shield/riot{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/shield/riot{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/shield/riot{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/shield/riot{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkgreen" + }, +/area/centcom/ss220/admin3) +"cEO" = ( +/obj/structure/table/holotable/wood{ + color = "#996633" + }, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_y = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"cFJ" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Escape Shuttle Cockpit"; + req_access_txt = "19" + }, +/turf/simulated/floor/plasteel, +/area/shuttle/escape) +"cFP" = ( +/obj/effect/turf_decal/plaque{ + layer = 3 + }, +/turf/simulated/floor/redgrid, +/area/syndicate_mothership) +"cFS" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/trash/semki, +/obj/effect/turf_decal/woodsiding{ + dir = 9 + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"cFW" = ( +/obj/machinery/door/airlock/centcom{ + name = "Офисы"; + req_one_access_txt = "101" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"cGC" = ( +/obj/machinery/door_control/no_emag/east{ + color = "#ff8080"; + id = "CC_Armory_Red"; + name = "Оружейная - Уровень 3"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"cGH" = ( +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowalt" + }, +/area/centcom/ss220/supply) +"cHl" = ( +/obj/item/reagent_containers/food/drinks/bottle/rum{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/structure/table/wood/poker, +/obj/item/deck/cards/syndicate, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership) +"cHw" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/candle/eternal/wizard{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/mugwort{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/purple, +/area/wizard_station) +"cHT" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"cIa" = ( +/obj/structure/table, +/obj/item/weldingtool/largetank{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/clothing/glasses/welding{ + pixel_y = 10 + }, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"cIk" = ( +/obj/structure/closet/abductor, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"cIm" = ( +/obj/structure/chair/comfy/purp{ + dir = 1 + }, +/obj/structure/light_fake/spot, +/turf/simulated/floor/carpet/purple, +/area/centcom/ss220/general) +"cIB" = ( +/obj/structure/chair/stool, +/obj/item/clothing/head/bandana{ + pixel_y = -10 + }, +/obj/item/clothing/glasses/sunglasses, +/turf/simulated/floor/beach/away/sand, +/area/ninja/holding) +"cIF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/centcom/ss220/general) +"cIX" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkredalt" + }, +/area/centcom/ss220/jail) +"cJw" = ( +/obj/structure/mirror/magic{ + pixel_x = -28 + }, +/turf/simulated/floor/carpet/black, +/area/wizard_station) +"cKt" = ( +/obj/machinery/economy/vending/boozeomat, +/obj/item/reagent_containers/food/drinks/bottle/cognac{ + initialized = 1; + pixel_x = 9; + pixel_y = 23 + }, +/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium{ + initialized = 1; + pixel_x = -8; + pixel_y = 25 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + initialized = 1; + pixel_y = 23 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"cKO" = ( +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/administration) +"cLj" = ( +/obj/machinery/door/airlock/external{ + id_tag = "syndishuttle_door_ext"; + name = "Ship External Access"; + req_access_txt = "150" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "smindicate"; + layer = 5; + name = "Outer Airlock"; + opacity = 0; + closingLayer = 3.11 + }, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plating, +/area/shuttle/syndicate) +"cLm" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light/directional/east, +/turf/simulated/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"cLo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/elite_squad) +"cLI" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo15" + }, +/obj/effect/turf_decal/siding/black{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"cLO" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel/freezer, +/area/ninja/holding) +"cMK" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"cMS" = ( +/obj/structure/chair/comfy/corp{ + dir = 8 + }, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"cNm" = ( +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"cNn" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/curtain/medical, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"cNI" = ( +/obj/item/flashlight, +/obj/item/gps{ + tracking = 0 + }, +/obj/item/radio{ + pixel_y = 6 + }, +/obj/structure/table/wood, +/obj/item/stock_parts/cell/bluespace, +/obj/item/storage/toolbox/syndicate, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"cNN" = ( +/turf/simulated/wall/mineral/plastitanium, +/area/shuttle/escape) +"cNZ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"cOw" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/obj/effect/turf_decal/siding/blue/corner, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/bar) +"cOJ" = ( +/obj/structure/flora/junglebush/large{ + pixel_x = -15; + pixel_y = -7 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"cOO" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/evac) +"cOS" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "SFBQMLoad" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"cPy" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + color = "red" + }, +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"cPQ" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/bar) +"cQi" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_y = 3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"cQn" = ( +/obj/machinery/economy/vending/syndisnack, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"cRb" = ( +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/bar) +"cRs" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = 30 + }, +/obj/structure/light_fake/small{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"cRZ" = ( +/obj/machinery/door/poddoor/multi_tile/two_tile_ver{ + icon_state = "open" + }, +/obj/machinery/shieldwall{ + dir = 1; + icon = 'icons/effects/beam.dmi'; + icon_state = "n_beam" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"cSv" = ( +/obj/structure/chair/sofa/right, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"cTs" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table{ + color = "#996633" + }, +/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster, +/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster, +/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster, +/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster, +/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster, +/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/generator/nuclear, +/obj/item/mecha_parts/mecha_equipment/generator/nuclear, +/obj/item/mecha_parts/mecha_equipment/generator/nuclear, +/obj/item/mecha_parts/mecha_equipment/generator/nuclear, +/obj/item/mecha_parts/mecha_equipment/generator/nuclear, +/obj/item/mecha_parts/mecha_equipment/generator/nuclear, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"cTG" = ( +/obj/machinery/economy/vending/coffee/free, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/bar) +"cUk" = ( +/obj/structure/chair/wood/wings, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"cUl" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"cUU" = ( +/obj/structure/closet/crate/secure/bin{ + color = "36373a" + }, +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin1) +"cVu" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"cWj" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"cWB" = ( +/obj/machinery/computer/security{ + dir = 8; + network = list("SS13","Telecomms","Research Outpost","Mining Outpost","ERT","CentComm","Thunderdome") + }, +/obj/item/radio/intercom/specops{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/specops) +"cWW" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"cXw" = ( +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"cXK" = ( +/obj/structure/lattice, +/obj/effect/mapping_helpers/light{ + light_power = 10 + }, +/turf/space, +/area/space/centcomm) +"cYp" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/ashtray/glass, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"cYE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/poddoor/impassable{ + id_tag = "syndFB_teleport1" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"cYN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/elite_squad) +"cYS" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"cYU" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/syndicate_mothership/elite_squad) +"cZl" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box/eternal{ + pixel_y = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"cZq" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"cZG" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"cZH" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo6" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"cZM" = ( +/obj/machinery/abductor/console{ + team = 3 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"cZQ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window/full/basic, +/turf/simulated/floor/grass/no_creep, +/area/trader_station/sol) +"cZT" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"dai" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"daq" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"dar" = ( +/obj/effect/turf_decal/plaque{ + layer = 3 + }, +/obj/structure/statue/mooniverse, +/turf/simulated/floor/redgrid, +/area/syndicate_mothership) +"dbh" = ( +/obj/structure/table/reinforced, +/obj/item/aicard, +/obj/item/storage/box/zipties, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"dbI" = ( +/obj/structure/table/abductor, +/obj/effect/spawner/lootdrop/CCfood/meat, +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/turf/simulated/floor/fakespace, +/area/centcom/ss220/bar) +"dbJ" = ( +/obj/structure/curtain/black{ + pixel_x = 32; + pixel_y = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"dcf" = ( +/obj/structure/light_fake/small, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/infteam) +"dcn" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"dcD" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"ddr" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredcornersalt" + }, +/area/syndicate_mothership/jail) +"ddt" = ( +/obj/structure/chair/sofa/corp, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"ddH" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"ddY" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo15" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"dea" = ( +/obj/machinery/economy/vending/tool/free, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowfull" + }, +/area/centcom/ss220/admin3) +"deB" = ( +/obj/effect/decal/warning_stripes/white/partial, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"deV" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warndarkgreycornerred" + }, +/area/syndicate_mothership) +"dfR" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"dgb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/ore_box, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"dgv" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"dgI" = ( +/turf/simulated/floor/plasteel/freezer, +/area/trader_station/sol) +"dgK" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"dhg" = ( +/obj/structure/closet/crate, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/transport) +"dhi" = ( +/obj/machinery/economy/vending/cola/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"dhE" = ( +/obj/machinery/abductor/pad{ + team = 4 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"diL" = ( +/obj/structure/flora/junglebush/large{ + layer = 4.8 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"djc" = ( +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin3) +"djr" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"djY" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"dkr" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/trade_sol/med, +/obj/machinery/light/spot, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"dkB" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/bar) +"dli" = ( +/obj/machinery/cryopod/offstation/right, +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"dlo" = ( +/obj/structure/closet/syndicate/personal, +/obj/structure/light_fake/small, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"dlt" = ( +/obj/machinery/door/airlock/external{ + id_tag = "syndicate_away"; + req_access_txt = "150" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership) +"dlw" = ( +/obj/structure/chair/sofa/left, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/infteam) +"dlQ" = ( +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"dmb" = ( +/obj/machinery/computer/cryopod{ + pixel_y = -32; + req_access_txt = "150" + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"dnm" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"dnp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall/indestructible/opsglass, +/area/syndicate_mothership) +"dnK" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/syndicate_mothership/outside) +"dnW" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor/west{ + id = "QMLoad2" + }, +/turf/simulated/floor/plating, +/area/shuttle/supply) +"don" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"dow" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecornersalt" + }, +/area/syndicate_mothership/elite_squad) +"doy" = ( +/obj/structure/table/wood/poker, +/obj/item/deck/cards/doublecards{ + pixel_y = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"doF" = ( +/obj/machinery/door/poddoor/multi_tile/four_tile_hor{ + id_tag = "SyndFB_prison_outside" + }, +/turf/simulated/floor/plasteel{ + icon_state = "brownoldfull" + }, +/area/syndicate_mothership/jail) +"doZ" = ( +/obj/item/reagent_containers/food/drinks/bottle/goldschlager, +/obj/structure/table/wood/fancy/black, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"dpf" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/bottle/cream{ + pixel_y = 8 + }, +/obj/item/reagent_containers/food/condiment/soysauce{ + pixel_x = 12 + }, +/obj/item/reagent_containers/food/condiment/sugar{ + pixel_x = -9; + pixel_y = -4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"dqv" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "syndie_cargo_left_shuttle_pump" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"dqH" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/trade/sol) +"dqL" = ( +/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated{ + dir = 8 + }, +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"dqP" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/light_fake{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership/infteam) +"drf" = ( +/obj/machinery/computer/shuttle/sst, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/elite_squad) +"drh" = ( +/obj/machinery/door/airlock/hatch/syndicate/command{ + name = "Тюрьма"; + id_tag = "syndicate_jail_airlock_ext"; + autoclose = 0; + locked = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brownoldfull" + }, +/area/syndicate_mothership/jail) +"drl" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/toy/plushie/coffee_fox{ + pixel_y = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"drn" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo19" + }, +/obj/effect/turf_decal/siding/black{ + dir = 6 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"drF" = ( +/obj/effect/decal/remains/human, +/obj/structure/light_fake/small{ + dir = 4; + light_range = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"dso" = ( +/turf/simulated/floor/plasteel/freezer, +/area/ninja/holding) +"dsw" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/mug/med, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/shuttle/escape) +"dtg" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"dti" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/beer/upgraded, +/obj/structure/curtain/black{ + pixel_x = 32; + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/infteam) +"dtn" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/shuttle/escape) +"dts" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"dua" = ( +/obj/machinery/economy/vending/snack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"dub" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 1 + }, +/obj/structure/shuttle/engine/platform{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership/cargo) +"duJ" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 4; + water_overlay_image = null + }, +/area/syndicate_mothership/outside) +"dvg" = ( +/obj/structure/table/wood, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/item/storage/fancy/cigarettes/cigpack_robustgold{ + pixel_x = 9 + }, +/obj/item/gun/projectile/automatic/pistol{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/lighter/zippo/gonzofist, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"dvh" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/flashlight/lamp/green{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/toy/figure/crew/librarian{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/item/paper{ + pixel_x = 3; + pixel_y = -8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"dvG" = ( +/obj/structure/table/wood/fancy/black, +/obj/machinery/chem_dispenser/soda{ + pixel_y = 6 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"dwj" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/simulated/floor/carpet/royalblue, +/area/shuttle/trade/sol) +"dwn" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/ashtray/glass{ + pixel_x = -12 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"dwQ" = ( +/obj/structure/table/abductor, +/obj/item/paper/abductor, +/obj/item/scalpel/alien, +/obj/item/cautery/alien, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"dxk" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet/secure_closet/medical2, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"dxQ" = ( +/obj/structure/table/wood/fancy/red, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/bar) +"dxV" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/light_fake/small, +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"dxX" = ( +/obj/machinery/status_display/directional/east, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"dyA" = ( +/turf/simulated/floor/plasteel{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding."; + icon_state = "plaque"; + name = "Comemmorative Plaque" + }, +/area/centcom/ss220/general) +"dyD" = ( +/obj/docking_port/stationary/transit{ + dir = 4; + dwidth = 1; + height = 4; + id = "pod3_transit"; + name = "pod 3 in transit"; + width = 3 + }, +/turf/space/transit/east{ + dir = 8 + }, +/area/space/centcomm) +"dyK" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding/corner{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"dyS" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/indestructible + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"dzI" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/sliceable/chocolatecake, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/elite_squad) +"dzJ" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkred" + }, +/area/centcom/ss220/admin3) +"dzR" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = -30 + }, +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"dzS" = ( +/obj/structure/light_fake/spot, +/obj/structure/rack/holorack, +/obj/effect/turf_decal/delivery/white, +/obj/item/toy/syndicateballoon{ + pixel_x = -3 + }, +/obj/item/toy/syndicateballoon/contractor{ + pixel_x = 3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"dAd" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"dAm" = ( +/obj/structure/chair/comfy/black, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"dAU" = ( +/obj/structure/table/reinforced, +/obj/item/pizzabox/meat{ + pixel_y = 14 + }, +/obj/item/pizzabox/mushroom{ + pixel_y = 17 + }, +/obj/item/pizzabox/pepperoni{ + pixel_y = 20 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"dBo" = ( +/obj/structure/sink/directional/west, +/obj/structure/mirror{ + pixel_x = 30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/elite_squad) +"dBA" = ( +/obj/structure/table, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Central Command"; + pixel_y = 4; + req_one_access = list(101) + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"dBB" = ( +/obj/structure/table/wood, +/obj/item/storage/backpack/duffel/syndie/med/surgery{ + pixel_y = 6 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"dBF" = ( +/obj/structure/table/glass, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"dCc" = ( +/obj/item/gun/projectile/automatic/shotgun/bulldog{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/projectile/automatic/shotgun/bulldog, +/obj/item/gun/projectile/automatic/shotgun/bulldog{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/rack/gunrack, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"dCq" = ( +/obj/effect/turf_decal/siding/black{ + dir = 1 + }, +/obj/effect/turf_decal/siding/black, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"dCr" = ( +/obj/machinery/door/poddoor{ + id_tag = "SST_ready"; + name = "Shuttle Dock Door"; + layer = 3.11; + closingLayer = 3.11 + }, +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/elite_squad) +"dCB" = ( +/obj/structure/chair/comfy/red{ + dir = 8 + }, +/obj/effect/landmark/spawner/syndie, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership) +"dDW" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/plating/asteroid/ancient + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/infteam) +"dEp" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"dEs" = ( +/obj/machinery/economy/vending/hydroseeds, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"dEN" = ( +/obj/effect/turf_decal/stripes/red/full, +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"dFl" = ( +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/transport) +"dFA" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/centcom/ss220/general) +"dGj" = ( +/obj/structure/chair/sofa/left, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"dGk" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"dGG" = ( +/obj/machinery/door/airlock/centcom{ + name = "Камера"; + req_one_access_txt = "114" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "СС_Jail_2"; + name = "Камера 2" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/jail) +"dGO" = ( +/obj/structure/statue/ell_good{ + layer = 4; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding."; + dir = 4; + icon_state = "plaque"; + name = "Comemmorative Plaque" + }, +/area/centcom/ss220/park) +"dHo" = ( +/obj/machinery/light/spot, +/obj/machinery/economy/atm/south, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"dHM" = ( +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/elite_squad) +"dHW" = ( +/obj/structure/statue/gold/ce{ + anchored = 1; + layer = 4; + pixel_y = 9 + }, +/turf/simulated/floor/plasteel{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding."; + dir = 4; + icon_state = "plaque"; + name = "Comemmorative Plaque" + }, +/area/centcom/ss220/park) +"dIb" = ( +/obj/machinery/economy/vending/security, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredfull" + }, +/area/centcom/ss220/admin3) +"dIr" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/shuttle/escape) +"dII" = ( +/obj/structure/lattice, +/turf/simulated/floor/indestructible/transparent_floor{ + icon_state = "tube" + }, +/area/shuttle/syndicate) +"dIR" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"dIX" = ( +/obj/structure/chair/comfy/teal, +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/carpet/cyan, +/area/centcom/ss220/general) +"dJn" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/syndicate_mothership/outside) +"dJp" = ( +/obj/effect/turf_decal/delivery/white, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"dJr" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/elite_squad) +"dJs" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"dJv" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"dJI" = ( +/obj/structure/table/glass, +/obj/item/folder{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/lighter/zippo/blue{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/red, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"dJJ" = ( +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_elite) +"dJP" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/specops) +"dJX" = ( +/turf/simulated/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"dKh" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/holosign_creator/atmos, +/obj/item/holosign_creator/atmos, +/obj/item/holosign_creator/atmos, +/obj/item/clothing/glasses/meson/fluff, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"dKp" = ( +/obj/structure/flora/rock/pile/largejungle, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"dKq" = ( +/obj/machinery/recharge_station/upgraded, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"dKw" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = 32 + }, +/obj/structure/chair/comfy/shuttle, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/shuttle/escape) +"dKZ" = ( +/obj/structure/rack, +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/item/organ/internal/cyberimp/brain/anti_drop/hardened, +/obj/item/organ/internal/cyberimp/brain/anti_drop/hardened, +/obj/item/organ/internal/cyberimp/brain/anti_drop/hardened, +/obj/item/organ/internal/cyberimp/brain/anti_sleep/hardened, +/obj/item/organ/internal/cyberimp/brain/anti_sleep/hardened, +/obj/item/organ/internal/cyberimp/brain/anti_sleep/hardened, +/obj/item/organ/internal/cyberimp/brain/anti_stam/hardened, +/obj/item/organ/internal/cyberimp/brain/anti_stam/hardened, +/obj/item/organ/internal/cyberimp/brain/anti_stam/hardened, +/obj/item/organ/internal/cyberimp/chest/nutriment/plus/hardened, +/obj/item/organ/internal/cyberimp/chest/nutriment/plus/hardened, +/obj/item/organ/internal/cyberimp/chest/nutriment/plus/hardened, +/obj/item/organ/internal/cyberimp/chest/reviver/hardened, +/obj/item/organ/internal/cyberimp/chest/reviver/hardened, +/obj/item/organ/internal/cyberimp/chest/reviver/hardened, +/obj/item/organ/internal/cyberimp/eyes/hud/diagnostic, +/obj/item/organ/internal/cyberimp/eyes/hud/diagnostic, +/obj/item/organ/internal/cyberimp/eyes/hud/diagnostic, +/obj/item/organ/internal/cyberimp/eyes/hud/medical, +/obj/item/organ/internal/cyberimp/eyes/hud/medical, +/obj/item/organ/internal/cyberimp/eyes/hud/medical, +/obj/item/organ/internal/cyberimp/eyes/hud/security, +/obj/item/organ/internal/cyberimp/eyes/hud/security, +/obj/item/organ/internal/cyberimp/eyes/hud/security, +/obj/item/organ/internal/eyes/cybernetic/thermals/hardened, +/obj/item/organ/internal/eyes/cybernetic/thermals/hardened, +/obj/item/organ/internal/eyes/cybernetic/thermals/hardened, +/obj/item/organ/internal/cyberimp/mouth/breathing_tube, +/obj/item/organ/internal/cyberimp/mouth/breathing_tube, +/obj/item/organ/internal/cyberimp/mouth/breathing_tube, +/obj/item/storage/box/mindshield, +/obj/item/organ/internal/cyberimp/arm/combat/centcom, +/obj/item/organ/internal/cyberimp/arm/combat/centcom, +/obj/item/organ/internal/cyberimp/arm/combat/centcom, +/obj/item/organ/internal/cyberimp/arm/surgery, +/obj/item/organ/internal/cyberimp/arm/toolset, +/obj/item/organ/internal/cyberimp/arm/janitorial, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"dLc" = ( +/obj/item/flag/nt, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"dLK" = ( +/obj/machinery/computer/camera_advanced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredfull" + }, +/area/centcom/ss220/admin2) +"dMb" = ( +/obj/structure/flora/rock/jungle, +/obj/structure/flora/junglebush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"dMg" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/transport) +"dMi" = ( +/obj/mecha/combat/gygax/loaded, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"dMr" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Cargo Shuttle" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"dMZ" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Nuclear Team Shuttle" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"dNj" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/syndicate_mothership/outside) +"dNn" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/seclite, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"dOn" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"dOx" = ( +/obj/structure/safe/floor, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/admin1) +"dOQ" = ( +/obj/structure/statue/elwycco{ + layer = 4; + pixel_y = 9 + }, +/turf/simulated/floor/plasteel{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding."; + dir = 4; + icon_state = "plaque"; + name = "Comemmorative Plaque" + }, +/area/centcom/ss220/park) +"dOS" = ( +/obj/structure/chair/office/dark, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"dPy" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"dPH" = ( +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/general) +"dQy" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/transport) +"dRm" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"dRA" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkbluealtstrip" + }, +/area/centcom/ss220/admin2) +"dRB" = ( +/obj/structure/table/glass, +/obj/item/paper{ + pixel_y = 2 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"dRH" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/kirbyplants, +/obj/structure/light_fake/small, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = -32 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"dRR" = ( +/obj/structure/chair/wheelchair/bike{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"dRV" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot_white, +/obj/item/storage/firstaid/tactical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/tactical, +/obj/item/storage/firstaid/tactical{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"dSj" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"dSM" = ( +/obj/effect/landmark/abductor/agent{ + team = 3 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"dSQ" = ( +/turf/simulated/floor/beach/away/coastline/beachcorner{ + water_overlay_image = null + }, +/area/syndicate_mothership/outside) +"dTw" = ( +/obj/effect/turf_decal/arrows/white{ + color = "#6697cc"; + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"dTz" = ( +/obj/structure/chair/sofa/corner{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"dUl" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/head/kitty, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/shoes/sandal/fancy{ + pixel_y = -11 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"dUy" = ( +/obj/structure/shuttle/engine/platform{ + dir = 1; + layer = 2.9 + }, +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating, +/area/syndicate_mothership/cargo) +"dUV" = ( +/turf/simulated/floor/indestructible/transparent_floor, +/area/shuttle/syndicate) +"dWh" = ( +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership/elite_squad) +"dWA" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/plasteel/freezer, +/area/ninja/holding) +"dXa" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin3) +"dXq" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"dYf" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin1) +"dYv" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "СС_Jail_1"; + name = "Камера 1" + }, +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/jail) +"dYJ" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"dYP" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"dYV" = ( +/obj/machinery/door/airlock/centcom{ + name = "Пилот"; + req_access_txt = "101" + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"dYY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"dZo" = ( +/obj/machinery/door/airlock/centcom{ + id_tag = "СС_Interior_2"; + name = "Зона ЦК"; + req_one_access_txt = "101" + }, +/obj/machinery/door_control/no_emag/west{ + id = "СС_BD_Interior_2"; + name = "Blast Door Open"; + req_one_access_txt = "101" + }, +/obj/effect/decal/warning_stripes/white, +/obj/machinery/door/poddoor/impassable{ + id_tag = "СС_BD_Interior_2"; + layer = 3 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"dZq" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/centcom/ss220/evac) +"dZw" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Escape Shuttle Cockpit"; + req_one_access_txt = "63" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/shuttle/escape) +"dZA" = ( +/obj/item/flag/nt, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"dZG" = ( +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"eaG" = ( +/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"ebp" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/boxing/green, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"ebq" = ( +/obj/machinery/door/airlock/centcom{ + name = "Камера"; + req_one_access_txt = "114" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "СС_Jail_3"; + name = "Камера 3" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/jail) +"ebz" = ( +/obj/machinery/door/poddoor/multi_tile/three_tile_hor{ + closingLayer = 3.2; + id_tag = "SIT_ready"; + layer = 3.02 + }, +/obj/machinery/shieldwall{ + dir = 8; + icon = 'icons/effects/beam.dmi'; + icon_state = "n_beam" + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership/infteam) +"ebN" = ( +/obj/structure/closet/crate/internals, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"eda" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/beach/away/sand, +/area/centcom/ss220/evac) +"edF" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/air, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"edS" = ( +/obj/machinery/suit_storage_unit/syndicate, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"edZ" = ( +/obj/machinery/economy/vending/artvend{ + name = "\improper WizArtVend" + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"eeQ" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcornersalt" + }, +/area/syndicate_mothership/cargo) +"efX" = ( +/obj/machinery/door/airlock/external{ + id_tag = "s_docking_airlock"; + name = "Shuttle Hatch"; + req_access_txt = "31" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/shuttle/supply) +"egO" = ( +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"egV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/holohoop{ + dir = 4; + pixel_x = 5 + }, +/obj/effect/decal/warning_stripes/blue/partial{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"ehR" = ( +/obj/structure/table, +/obj/item/paper_bin/nanotrasen{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen/multi/fountain{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"eie" = ( +/obj/machinery/atmospherics/unary/thermomachine/freezer/on, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"eim" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants, +/obj/effect/turf_decal/siding/black, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"eiJ" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"eiU" = ( +/obj/structure/table/wood, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"ejb" = ( +/turf/simulated/wall/indestructible/fakedoor, +/area/ninja/outpost) +"ejf" = ( +/obj/machinery/door/airlock/centcom{ + name = "Тюрьма"; + req_one_access_txt = "114" + }, +/obj/machinery/door/poddoor/impassable{ + id_tag = "СС_BD_Jail"; + layer = 3 + }, +/obj/machinery/door_control/no_emag/north{ + id = "СС_BD_Jail"; + name = "Blast Door Open"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"ejk" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"ejt" = ( +/turf/simulated/floor/wood/fancy/birch, +/area/shuttle/trade/sol) +"ejv" = ( +/obj/machinery/door/window/classic/normal{ + name = "Коровки" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"ejC" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"ekl" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/toxins, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"elf" = ( +/obj/structure/dresser, +/obj/item/candle/eternal/wizard{ + pixel_y = 11 + }, +/turf/simulated/floor/carpet/purple, +/area/wizard_station) +"elh" = ( +/turf/simulated/wall/r_wall, +/area/start) +"emB" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"eng" = ( +/obj/structure/chair/stool/bar/dark{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/bar) +"ent" = ( +/obj/structure/light_fake, +/turf/simulated/floor/plasteel{ + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"enw" = ( +/obj/machinery/status_display/directional/west, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"enT" = ( +/obj/structure/closet/cabinet{ + req_one_access_txt = "114" + }, +/obj/item/clothing/suit/judgerobe{ + name = "Supreme judge's robe" + }, +/obj/item/clothing/head/powdered_wig{ + desc = null; + name = "Supreme judge wig" + }, +/obj/item/clothing/gloves/color/white{ + desc = null; + name = "Supreme judge gloves" + }, +/obj/item/clothing/shoes/centcom{ + desc = null; + name = "Dress shoes" + }, +/obj/item/card/id/centcom{ + icon_state = "deathsquad"; + name = "Supreme Judge ID card"; + registered_name = "Supreme Judge" + }, +/obj/item/clothing/accessory/blue, +/obj/item/clothing/accessory/black, +/obj/item/clothing/accessory/holster, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"eoe" = ( +/obj/structure/table/reinforced, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion, +/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster, +/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster, +/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/turf/simulated/floor/mech_bay_recharge_floor, +/area/centcom/ss220/admin3) +"eoT" = ( +/obj/machinery/door/airlock/hatch/syndicate/command{ + name = "Тюрьма"; + id_tag = "syndicate_jail_airlock_int"; + autoclose = 0; + locked = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"eoV" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Парк" + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"epd" = ( +/obj/structure/table/wood, +/obj/machinery/smartfridge/disks{ + pixel_y = 2 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"epF" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"epI" = ( +/obj/structure/chair/sofa/corner{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/infteam) +"eqp" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin1) +"eqK" = ( +/obj/structure/decorative_structures/metal/statue/golden_disk, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet/red, +/area/syndicate_mothership/control) +"eqO" = ( +/obj/docking_port/stationary/transit{ + dir = 8; + dwidth = 2; + height = 11; + id = "specops_transit"; + name = "specops in transit"; + turf_type = /turf/space/transit/horizontal; + width = 5 + }, +/turf/space/transit/horizontal, +/area/space/centcomm) +"eqT" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredalt" + }, +/area/centcom/ss220/jail) +"erh" = ( +/obj/structure/window/reinforced, +/obj/structure/sign/poster/official/random/south, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"erG" = ( +/obj/machinery/computer/shuttle/sit, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/infteam) +"erT" = ( +/obj/machinery/door_control/no_emag{ + id = "Aspid_deck"; + wires = 1; + req_access_txt = "153"; + name = "Aspid main storage"; + emagged = 1; + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"esh" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"esp" = ( +/obj/effect/bump_teleporter{ + id = "Synd26"; + id_target = "Synd16" + }, +/turf/simulated/floor/plasteel{ + color = "gray"; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"esG" = ( +/obj/structure/chair/sofa/corp/left, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"esR" = ( +/obj/docking_port/stationary{ + dwidth = 1; + height = 4; + id = "pod4_away"; + name = "recovery ship bay 4"; + width = 3 + }, +/turf/space/transit/horizontal, +/area/space/centcomm) +"etc" = ( +/obj/structure/mirror{ + pixel_x = -30 + }, +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"etr" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/dromedaryco{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/lighter/zippo{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"eup" = ( +/obj/structure/table/wood, +/obj/item/grenade/smokebomb{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/grenade/smokebomb{ + pixel_y = 1 + }, +/obj/item/grenade/smokebomb{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"evc" = ( +/obj/structure/table, +/obj/item/lighter/zippo, +/turf/simulated/floor/plasteel/freezer, +/area/ninja/holding) +"evo" = ( +/obj/machinery/computer/communications{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"evU" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/toy/plushie/marble_fox, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/bar) +"ewa" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/miscellaneous/goldensiding, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"ewz" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/tree/jungle, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"ewE" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/simulated/floor/carpet/orange, +/area/centcom/ss220/general) +"exx" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/soda/upgraded, +/obj/structure/curtain/black{ + pixel_x = 32; + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/infteam) +"exA" = ( +/obj/machinery/economy/vending/coffee/free, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"eyg" = ( +/obj/machinery/light/directional/west, +/obj/structure/chair/comfy/shuttle/dark{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_elite) +"eyy" = ( +/obj/structure/closet/boxinggloves, +/obj/structure/light_fake/spot, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"eyC" = ( +/obj/machinery/computer/sm_monitor{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowfull" + }, +/area/centcom/ss220/admin2) +"ezj" = ( +/obj/effect/decal/nanotrasen_logo/n4, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"ezC" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"ezD" = ( +/obj/item/bedsheet/syndie{ + dir = 1 + }, +/obj/structure/bed{ + dir = 1 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"eAg" = ( +/turf/simulated/floor/plasteel{ + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"eAj" = ( +/obj/machinery/defibrillator_mount/loaded{ + pixel_x = -30 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"eAs" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin2) +"eAy" = ( +/obj/machinery/door/airlock/titanium, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/shuttle/gamma/space) +"eAJ" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/bar) +"eAO" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 1 + }, +/obj/structure/shuttle/engine/platform{ + layer = 2.9 + }, +/obj/structure/shuttle/engine/heater, +/turf/simulated/floor/plating, +/area/syndicate_mothership/cargo) +"eAX" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredalt" + }, +/area/centcom/ss220/jail) +"eBg" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"eBi" = ( +/obj/structure/table/reinforced, +/obj/item/radio{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_y = 6 + }, +/obj/item/radio{ + pixel_y = 6 + }, +/obj/item/radio{ + pixel_y = 6 + }, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkgreen" + }, +/area/centcom/ss220/admin3) +"eBq" = ( +/obj/item/bikehorn/rubberducky, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/plasteel/freezer, +/area/wizard_station) +"eBu" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"eBy" = ( +/obj/structure/curtain/black{ + pixel_x = 32; + anchored = 1 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"eBV" = ( +/turf/simulated/wall/indestructible/abductor, +/area/abductor_ship) +"eCs" = ( +/turf/simulated/wall/mineral/plastitanium/nodiagonal, +/area/shuttle/administration) +"eCC" = ( +/obj/machinery/cryopod/offstation/right, +/obj/machinery/computer/cryopod{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"eDl" = ( +/turf/simulated/floor/plating, +/area/syndicate_mothership/infteam) +"eDn" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster/directional/south, +/obj/item/storage/briefcase{ + pixel_y = 6 + }, +/obj/item/storage/secure/briefcase, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"eDs" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"eDK" = ( +/obj/machinery/conveyor/west{ + id = "SFBQMLoad2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"eDL" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"eEq" = ( +/obj/machinery/door/airlock/titanium/glass{ + req_one_access_txt = "160" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/carpet/orange, +/area/shuttle/trade/sol) +"eEu" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 4 + }, +/obj/machinery/computer/camera_advanced{ + pixel_x = -6; + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"eEz" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/stamp/denied{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stamp, +/obj/effect/turf_decal/stripes/white/full{ + color = "#b59959" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"eFe" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/indestructible + }, +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/admin3) +"eFi" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"eFF" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"eFJ" = ( +/obj/structure/table, +/obj/item/storage/fancy/crayons, +/obj/item/storage/fancy/crayons, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"eFN" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo4" + }, +/obj/effect/turf_decal/siding/black{ + dir = 5 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"eGe" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/shuttle/escape) +"eHa" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 4 + }, +/obj/structure/window/reinforced{ + color = "red"; + dir = 8 + }, +/obj/structure/window/reinforced{ + color = "red" + }, +/obj/structure/grille, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"eHi" = ( +/obj/machinery/door/poddoor/shutters{ + id_tag = "CC_Armory_Blue"; + name = "Blue" + }, +/obj/effect/decal/warning_stripes/white/hollow, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluefull" + }, +/area/centcom/ss220/admin3) +"eHl" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_sit) +"eHy" = ( +/obj/structure/rack, +/obj/item/clothing/head/that{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/clothing/under/suit/black, +/obj/item/clothing/suit/wcoat, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"eHN" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbluealtstrip" + }, +/area/centcom/ss220/admin3) +"eIa" = ( +/obj/machinery/economy/vending/coffee/free, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"eIs" = ( +/obj/effect/landmark/spawner/syndicate_infiltrator, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"eIt" = ( +/obj/machinery/sleeper{ + dir = 4; + pixel_x = 3 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"eIy" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/indestructible + }, +/turf/simulated/wall/indestructible/wood, +/area/trader_station/sol) +"eII" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin3) +"eJc" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Central Command"; + pixel_y = 4; + req_one_access = list(101) + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"eJs" = ( +/obj/effect/decal/syndie_logo, +/obj/effect/turf_decal/woodsiding{ + dir = 9 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"eJx" = ( +/obj/structure/rack, +/obj/item/ammo_casing/rocket{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/ammo_casing/rocket{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/ammo_casing/rocket{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/ammo_casing/rocket{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/ammo_casing/rocket{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/ammo_casing/rocket{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/ammo_casing/rocket{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/ammo_casing/rocket{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/ammo_casing/rocket{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/ammo_casing/rocket{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"eKa" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/structure/curtain/black{ + pixel_x = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"eKz" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/green, +/area/centcom/ss220/general) +"eLA" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"eLW" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"eNb" = ( +/obj/effect/decal/warning_stripes/red, +/obj/machinery/door/poddoor/impassable{ + id_tag = "CC_Armory"; + layer = 3; + name = "Оружейная" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"eNh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table{ + color = "#996633" + }, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/plasma, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/plasma, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/plasma, +/obj/item/mecha_parts/mecha_equipment/cable_layer, +/obj/item/mecha_parts/mecha_equipment/cable_layer, +/obj/item/mecha_parts/mecha_equipment/cable_layer, +/obj/item/mecha_parts/mecha_equipment/extinguisher, +/obj/item/mecha_parts/mecha_equipment/extinguisher, +/obj/item/mecha_parts/mecha_equipment/extinguisher, +/obj/item/mecha_parts/mecha_equipment/rcd, +/obj/item/mecha_parts/mecha_equipment/rcd, +/obj/item/mecha_parts/mecha_equipment/rcd, +/obj/item/mecha_parts/mecha_equipment/mining_scanner, +/obj/item/mecha_parts/mecha_equipment/mining_scanner, +/obj/item/mecha_parts/mecha_equipment/mining_scanner, +/obj/item/mecha_parts/mecha_equipment/drill/diamonddrill, +/obj/item/mecha_parts/mecha_equipment/drill/diamonddrill, +/obj/item/mecha_parts/mecha_equipment/drill/diamonddrill, +/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp, +/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp, +/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"eNi" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/trade/sol) +"eNH" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/bar) +"eNO" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/snacks/birthdaycakeslice, +/obj/item/kitchen/utensil/fork{ + pixel_x = 11; + pixel_y = 8 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"eOh" = ( +/obj/structure/rack, +/obj/item/beach_ball/holoball, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"eOl" = ( +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"eOK" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"eOW" = ( +/turf/simulated/wall/indestructible/syndicate{ + smoothing_flags = 2 + }, +/area/syndicate_mothership/jail) +"ePf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership) +"ePp" = ( +/obj/structure/table/reinforced{ + color = "#996633" + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 4; + pixel_y = 2 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"ePy" = ( +/obj/structure/table/glass, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Central Command"; + pixel_y = 4; + req_one_access = list(101) + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"ePO" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"ePY" = ( +/obj/machinery/computer/communications, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"eQb" = ( +/obj/structure/bed, +/obj/effect/landmark/spawner/soltrader, +/obj/item/bedsheet/brown, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"eQu" = ( +/obj/machinery/shuttle_manipulator{ + pixel_x = -16 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"eRj" = ( +/obj/effect/landmark/abductor/scientist{ + team = 4 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"eRu" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/general) +"eRG" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/escape) +"eRO" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo13" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"eRQ" = ( +/obj/item/flag/species/diona, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"eRW" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"eSh" = ( +/obj/structure/shuttle/engine/platform{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership/cargo) +"eSs" = ( +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/evac) +"eSO" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo16" + }, +/obj/effect/turf_decal/woodsiding{ + dir = 10 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"eSY" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/item/soap/syndie, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership) +"eTb" = ( +/obj/machinery/optable, +/obj/machinery/defibrillator_mount/loaded{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"eTi" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/transport) +"eTP" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/dice, +/obj/effect/turf_decal/woodsiding, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"eTS" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/holosign_creator/atmos, +/obj/item/holosign_creator/atmos, +/obj/item/holosign_creator/atmos, +/obj/item/clothing/glasses/meson/fluff, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"eUn" = ( +/obj/structure/rack/holorack, +/obj/item/organ/internal/cyberimp/brain/anti_drop, +/obj/item/organ/internal/cyberimp/brain/anti_drop, +/obj/item/organ/internal/cyberimp/brain/anti_sleep/hardened, +/obj/item/organ/internal/cyberimp/brain/anti_sleep/hardened, +/obj/item/organ/internal/cyberimp/chest/nutriment/plus, +/obj/item/organ/internal/cyberimp/chest/nutriment/plus, +/obj/item/organ/internal/cyberimp/chest/reviver/hardened, +/obj/item/organ/internal/cyberimp/chest/reviver/hardened, +/obj/item/organ/internal/cyberimp/eyes/hud/medical, +/obj/item/organ/internal/cyberimp/eyes/hud/medical, +/obj/item/organ/internal/cyberimp/mouth/breathing_tube, +/obj/item/organ/internal/cyberimp/mouth/breathing_tube, +/obj/item/implanter/mindshield, +/obj/item/implanter/mindshield, +/obj/item/organ/internal/cyberimp/arm/surgery, +/obj/item/organ/internal/cyberimp/arm/toolset, +/obj/item/organ/internal/cyberimp/arm/janitorial, +/obj/effect/turf_decal/box/white, +/obj/structure/sign/poster/contraband/revolver{ + pixel_y = 32 + }, +/obj/item/organ/internal/cyberimp/arm/combat/centcom{ + color = "#aa9999"; + desc = "An extremely powerful cybernetic implant that contains combat and utility modules not used by NT special forces, i swear"; + icon_state = "tesla"; + name = "Syndie specops cybernetics implant" + }, +/obj/item/organ/internal/cyberimp/arm/combat/centcom{ + color = "#aa9999"; + desc = "An extremely powerful cybernetic implant that contains combat and utility modules not used by NT special forces, i swear"; + icon_state = "tesla"; + name = "Syndie specops cybernetics implant" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"eVk" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine/longrange/syndie{ + department = "Syndicate" + }, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/control) +"eVn" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/flashlight/lamp/green/off{ + layer = 3.1; + pixel_x = -4; + pixel_y = 12 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"eVr" = ( +/obj/structure/rack, +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/item/autosurgeon/organ, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"eVw" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/grass/jungle/no_creep, +/area/centcom/ss220/park) +"eWc" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"eWM" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"eXc" = ( +/obj/structure/light_fake{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"eXj" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"eXq" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo2" + }, +/obj/effect/turf_decal/woodsiding{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"eXA" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"eXO" = ( +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership) +"eYi" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock/titanium{ + req_one_access_txt = "160" + }, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/carpet/orange, +/area/shuttle/trade/sol) +"eYF" = ( +/obj/structure/closet/crate/secure/bin, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"eYN" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion_l" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/syndicate_sit) +"eZe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall/indestructible/syndicate{ + smoothing_flags = 2 + }, +/area/syndicate_mothership) +"faa" = ( +/obj/structure/table/reinforced, +/obj/item/stamp/syndicate{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/stamp/chameleon{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/syndicatedetonator{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/control) +"fah" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"fal" = ( +/obj/structure/closet/crate/hydroponics/prespawned{ + anchored = 1 + }, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"faJ" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = -30 + }, +/obj/machinery/door/poddoor/impassable{ + id_tag = "SST_armory_main"; + name = "SST Armory" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluealtstrip" + }, +/area/syndicate_mothership/elite_squad) +"faU" = ( +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"fba" = ( +/obj/structure/light_fake{ + dir = 4 + }, +/obj/structure/table/holotable/wood{ + color = "#996633" + }, +/obj/item/storage/bag/money{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"fbg" = ( +/obj/structure/ore_box, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"fbl" = ( +/obj/machinery/computer/mech_bay_power_console, +/turf/simulated/floor/plasteel, +/area/shuttle/escape) +"fbq" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/beer/upgraded{ + dir = 8 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership) +"fbJ" = ( +/obj/effect/turf_decal/woodsiding{ + dir = 6 + }, +/turf/simulated/floor/carpet/royalblack, +/area/syndicate_mothership/control) +"fbR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/general) +"fbZ" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"fcL" = ( +/obj/structure/fence/corner{ + color = "#b0b7c6"; + dir = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"ffq" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/structure/toilet, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership) +"ffz" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"ffE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/trade/sol) +"ffJ" = ( +/obj/machinery/door/poddoor/multi_tile/two_tile_hor{ + id_tag = "SIT_ready"; + layer = 3.01 + }, +/obj/machinery/shieldwall{ + dir = 8; + icon = 'icons/effects/beam.dmi'; + icon_state = "n_beam" + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership/infteam) +"fgd" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/space/hardsuit/syndi/elite/sst{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/space/hardsuit/syndi/elite/sst, +/obj/item/clothing/suit/space/hardsuit/syndi/elite/sst{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"fgh" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/food/drinks/cans/beer{ + initialized = 1; + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + initialized = 1; + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + initialized = 1; + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + initialized = 1; + pixel_x = -2; + pixel_y = 4 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"fgl" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"fgG" = ( +/obj/structure/table/reinforced, +/obj/item/kitchen/knife, +/obj/item/kitchen/knife/butcher, +/obj/item/kitchen/knife/butcher/meatcleaver, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"fgJ" = ( +/obj/machinery/economy/vending/nta/medical, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluefull" + }, +/area/centcom/ss220/admin3) +"fgP" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"fgZ" = ( +/obj/machinery/economy/vending/nta/green, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkgreen" + }, +/area/centcom/ss220/admin3) +"fhM" = ( +/obj/machinery/door/poddoor/multi_tile/impassable/three_tile_hor{ + id_tag = "sec"; + name = "CentCom Security" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"fie" = ( +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"fiI" = ( +/obj/structure/chair/comfy/red{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"fiM" = ( +/obj/machinery/door/airlock/bathroom{ + id_tag = "cc_toilet_1"; + name = "Туалет" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/centcom/ss220/evac) +"fiP" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin1) +"fjg" = ( +/turf/space/transit/horizontal, +/area/space/centcomm) +"fjx" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"fjA" = ( +/turf/simulated/floor/carpet/blue, +/area/centcom/ss220/general) +"fkA" = ( +/obj/structure/table{ + color = "#996633" + }, +/obj/machinery/bottler{ + pixel_y = 5 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"fkO" = ( +/obj/machinery/door_control/no_emag/east{ + id = "CC_GammaShuttle"; + name = "Blast Door Control"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin3) +"fkV" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/wall/indestructible/rock/mineral, +/area/syndicate_mothership/outside) +"flk" = ( +/obj/machinery/chem_dispenser/soda/upgraded, +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = 32; + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"fls" = ( +/obj/structure/chair/sofa/bench/right, +/turf/simulated/floor/plasteel{ + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"flD" = ( +/obj/mecha/working/ripley/deathripley, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"flJ" = ( +/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/sst{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_elite) +"fmj" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/bot_white, +/obj/item/card/id/syndicate{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/card/id/syndicate{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/card/id/syndicate, +/obj/item/card/id/syndicate/researcher{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/card/id/syndicate/researcher{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/card/id/syndicate/researcher{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"fmm" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/elite_squad) +"fms" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"fmt" = ( +/obj/machinery/computer/mech_bay_power_console, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/admin2) +"fmQ" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"fmX" = ( +/obj/machinery/bsa/full/admin/east, +/turf/simulated/floor/plating, +/area/centcom/ss220/admin3) +"fnG" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo5" + }, +/obj/effect/turf_decal/siding/black{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"fnQ" = ( +/obj/structure/table/wood, +/obj/item/healthanalyzer/advanced, +/obj/item/healthanalyzer/advanced{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"fnU" = ( +/turf/simulated/wall/indestructible/syndicate{ + smoothing_flags = 2 + }, +/area/syndicate_mothership) +"fog" = ( +/obj/structure/rack, +/obj/item/clothing/accessory/holster{ + pixel_y = 10 + }, +/obj/item/clothing/accessory/holster{ + pixel_y = 8 + }, +/obj/item/clothing/accessory/holster{ + pixel_y = 6 + }, +/obj/item/clothing/accessory/holster{ + pixel_y = 4 + }, +/obj/item/clothing/accessory/holster{ + pixel_y = 2 + }, +/obj/item/clothing/accessory/holster, +/obj/machinery/door_control/no_emag/north{ + color = "#80ff80"; + id = "CC_Armory_Green"; + name = "Оружейная - Уровень 1"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"foF" = ( +/obj/effect/decal/nanotrasen_logo/n4, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"fpi" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"fpt" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/multi{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/green, +/area/centcom/ss220/general) +"fqi" = ( +/obj/structure/table/wood, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 2 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/obj/machinery/newscaster/directional/north, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"fqN" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/bar) +"fqT" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/shuttle/escape) +"frK" = ( +/turf/simulated/wall/mineral/plastitanium, +/area/shuttle/administration) +"fsg" = ( +/obj/item/flag/syndi, +/obj/effect/turf_decal/miscellaneous/goldensiding/corner{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"fsG" = ( +/obj/machinery/economy/vending/nta/green, +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkgreen" + }, +/area/centcom/ss220/admin3) +"fsO" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"fta" = ( +/obj/machinery/computer/shuttle/admin{ + name = "NTV Argos shuttle console" + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"fti" = ( +/obj/effect/mapping_helpers/light, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"ftU" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/obj/structure/bookcase/manuals, +/obj/item/book/manual/random, +/obj/item/book/manual/wiki/security_space_law/black, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"ful" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"fuv" = ( +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"fuU" = ( +/obj/structure/table/glass, +/obj/item/storage/backpack/duffel/syndie/med/surgery{ + pixel_y = 6 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/syndicate) +"fvn" = ( +/obj/machinery/abductor/console{ + team = 2 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"fwQ" = ( +/obj/structure/closet/crate/internals, +/obj/item/tank/internals/oxygen/red, +/obj/item/clothing/mask/gas, +/obj/item/tank/internals/oxygen/red, +/obj/item/clothing/mask/gas, +/obj/item/tank/internals/oxygen/red, +/obj/item/clothing/mask/gas, +/obj/item/tank/internals/oxygen/red, +/obj/item/clothing/mask/gas, +/obj/item/tank/internals/oxygen/red, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"fwR" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "syndieshutters_Aspid"; + name = "Blast Shutters" + }, +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/plating, +/area/syndicate_mothership/cargo) +"fxa" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"fxn" = ( +/obj/effect/spawner/window/reinforced/tinted/grilled, +/turf/simulated/floor/plating, +/area/centcom/ss220/evac) +"fxM" = ( +/turf/simulated/wall/indestructible/syndicate{ + smoothing_flags = 2 + }, +/area/syndicate_mothership/control) +"fxT" = ( +/obj/structure/table/wood/poker, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"fyC" = ( +/obj/structure/flora/rock/jungle, +/obj/structure/flora/junglebush, +/obj/structure/flora/junglebush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"fyD" = ( +/obj/item/flag/syndi, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/control) +"fyJ" = ( +/obj/structure/guillotine, +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"fyY" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/snacks/applepie, +/obj/item/kitchen/utensil/fork{ + pixel_x = -12; + pixel_y = 8 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"fzb" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/elite_squad) +"fzc" = ( +/obj/machinery/computer/account_database{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"fzO" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/syndicate_elite) +"fAs" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"fAu" = ( +/obj/machinery/shieldwall{ + dir = 8; + icon = 'icons/effects/beam.dmi'; + icon_state = "n_beam" + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership/infteam) +"fAH" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"fBm" = ( +/obj/mecha/working/ripley, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"fBu" = ( +/obj/machinery/door_control/no_emag{ + id = "syndicate_elite"; + name = "Blast Doors"; + pixel_x = -30; + pixel_y = -11; + req_access_txt = "150" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_elite) +"fBC" = ( +/obj/effect/turf_decal/delivery, +/obj/mecha/combat/durand/rover/loaded, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"fBM" = ( +/obj/structure/chair/stool, +/obj/machinery/computer/security/telescreen{ + desc = "Damn, they better have /tg/thechannel on these things."; + icon_state = "entertainment"; + name = "Entertainment monitor"; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"fBZ" = ( +/obj/machinery/kitchen_machine/grill/upgraded, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"fCa" = ( +/obj/structure/chair/comfy/red{ + dir = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/trader_station/sol) +"fCs" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Central Command"; + pixel_y = 4; + req_one_access = list(101) + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"fCu" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "SyndFB_prison_stroll_blast"; + layer = 3.1; + closingLayer = 3.1 + }, +/obj/machinery/door/airlock/hatch/syndicate/command{ + name = "Тюрьма" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"fCJ" = ( +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/elite_squad) +"fCL" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Security" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"fDq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/royalblue, +/area/shuttle/trade/sol) +"fDx" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/syndicate_mothership/outside) +"fDF" = ( +/obj/structure/fence{ + color = "#b0b7c6"; + invulnerable = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"fDG" = ( +/obj/structure/flora/tree/jungle{ + pixel_y = -12 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"fEQ" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/paper_bin/nanotrasen{ + pixel_y = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"fEW" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/structure/window/reinforced{ + color = "red" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/syndicate_elite) +"fFo" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/nitrogen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"fFs" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/centcom/ss220/general) +"fFM" = ( +/obj/structure/window/reinforced, +/obj/structure/table/glass, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"fGk" = ( +/obj/effect/decal/nanotrasen_logo/n5, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"fGn" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"fID" = ( +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidwarning"; + name = "floor" + }, +/area/syndicate_mothership/outside) +"fJl" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"fJB" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium_corner"; + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"fJO" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Палата 1" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/centcom/ss220/general) +"fJY" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass/bluespace{ + pixel_x = 16; + pixel_y = 9 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"fKd" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/pointybush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/control) +"fLa" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "podfloor_light" + }, +/area/syndicate_mothership/jail) +"fLI" = ( +/obj/machinery/sleeper/syndie, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"fLS" = ( +/turf/simulated/wall/indestructible/syndishuttle/nodiagonal, +/area/shuttle/assault_pod) +"fMh" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/centcom/ss220/jail) +"fMl" = ( +/obj/structure/light_fake/small, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"fMP" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"fMQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/reinforced/normal{ + dir = 8; + name = "Блокпост"; + req_one_access_txt = "101" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"fNc" = ( +/obj/effect/turf_decal/loading_area/white{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"fNL" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/pen/red, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"fNM" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/carpet, +/area/centcom/ss220/admin3) +"fNW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"fOP" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo19" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"fOS" = ( +/obj/structure/shuttle/engine/large{ + dir = 4; + pixel_x = -33; + pixel_y = -32 + }, +/turf/simulated/floor/indestructible/transparent_floor, +/area/shuttle/trade/sol) +"fPg" = ( +/obj/structure/table/reinforced, +/obj/machinery/kitchen_machine/microwave/upgraded{ + pixel_y = 5 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"fPl" = ( +/obj/structure/chair/comfy/shuttle/dark, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate_sit) +"fPV" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"fQf" = ( +/obj/machinery/recharge_station/upgraded, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkgreen" + }, +/area/centcom/ss220/admin3) +"fQz" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + icon_state = "warndarkgreycornerred" + }, +/area/syndicate_mothership/elite_squad) +"fQI" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"fQN" = ( +/obj/item/flag/nt, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"fQY" = ( +/obj/machinery/economy/vending/cigarette/syndicate/free, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"fRW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/air, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"fRY" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/decorations/sticky_decorations/flammable/pot_of_gold, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/carpet/red, +/area/syndicate_mothership/control) +"fRZ" = ( +/obj/structure/shuttle/engine/large, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/cargo) +"fSb" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_sit) +"fSO" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"fTe" = ( +/obj/effect/turf_decal/delivery/red, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"fTl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership) +"fTQ" = ( +/obj/structure/table/glass, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"fUF" = ( +/obj/structure/flora/tree/jungle/small{ + pixel_x = -16 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"fUW" = ( +/obj/item/flag/syndi, +/obj/item/radio/intercom/syndicate{ + pixel_y = -28; + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/decal/syndie_logo{ + icon_state = "logo16" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"fVu" = ( +/obj/machinery/door/poddoor/multi_tile/three_tile_ver{ + id_tag = "nukeop_storage"; + name = "Storage" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"fVW" = ( +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/ninja/holding) +"fWk" = ( +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/infteam) +"fWz" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo8" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"fWC" = ( +/turf/simulated/floor/carpet/purple, +/area/wizard_station) +"fWG" = ( +/obj/structure/flora/tree/jungle, +/obj/effect/mapping_helpers/light, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"fWV" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"fXY" = ( +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/bar) +"fYu" = ( +/obj/structure/light_fake{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"fYL" = ( +/obj/item/radio/intercom/syndicate{ + pixel_y = -28; + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/line, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"fZS" = ( +/obj/effect/decal/warning_stripes/white, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Жральня" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"gaJ" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"gaK" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"gaZ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/infteam) +"gbc" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"gbe" = ( +/obj/structure/chair/sofa/left, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"gbQ" = ( +/obj/structure/chair/sofa/left, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"gcr" = ( +/obj/structure/chair/sofa/bench/right{ + cover_color = "#68452a"; + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"gcw" = ( +/obj/effect/turf_decal/loading_area/white{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/infteam) +"gcE" = ( +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"gcN" = ( +/obj/machinery/light/spot, +/turf/simulated/floor/wood/fancy/birch, +/area/shuttle/trade/sol) +"gcV" = ( +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"geo" = ( +/obj/structure/fence/door{ + color = "#b0b7c6"; + invulnerable = 1 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"gfa" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"gfg" = ( +/obj/structure/displaycase{ + start_showpiece_type = /obj/item/toy/spinningtoy + }, +/turf/simulated/floor/carpet/purple, +/area/wizard_station) +"gfN" = ( +/obj/effect/bump_teleporter{ + id = "Synd13"; + id_target = "Synd23" + }, +/turf/simulated/floor/plasteel{ + color = "gray"; + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"ggq" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"ggs" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"ggE" = ( +/obj/item/flag/nt, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"ggQ" = ( +/obj/item/kirbyplants, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"ggR" = ( +/obj/structure/chair, +/obj/item/radio/intercom/locked/confessional{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"ggZ" = ( +/obj/structure/table/reinforced, +/obj/item/hand_labeler, +/obj/effect/turf_decal/stripes/white/full{ + color = "#b59959" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"giy" = ( +/obj/item/flag/wiz, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"giO" = ( +/obj/structure/railing, +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"giY" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"gjt" = ( +/obj/machinery/door_control/no_emag/west{ + color = "#8080ff"; + id = "CC_Armory_Blue"; + name = "Оружейная - Уровень 2"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"gka" = ( +/obj/structure/table/reinforced, +/obj/machinery/kitchen_machine/microwave{ + pixel_y = 6 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"gkv" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"gli" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"gln" = ( +/turf/simulated/floor/plasteel{ + icon_state = "browncorner" + }, +/area/shuttle/escape) +"glr" = ( +/obj/structure/closet/secure_closet/mime{ + req_access = null + }, +/obj/structure/light_fake, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/syndicate_mothership/infteam) +"glO" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/trade_sol/eng, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"gmg" = ( +/obj/structure/table/wood/fancy/orange, +/obj/item/stack/packageWrap{ + pixel_y = 9 + }, +/obj/item/stack/packageWrap{ + pixel_y = 5 + }, +/obj/item/stack/packageWrap{ + pixel_y = 1 + }, +/obj/item/stack/packageWrap{ + pixel_y = -3 + }, +/obj/item/hand_labeler{ + pixel_y = -6 + }, +/turf/simulated/floor/carpet/royalblue, +/area/shuttle/trade/sol) +"gmx" = ( +/obj/structure/table/reinforced, +/obj/item/borg/upgrade/selfrepair, +/obj/item/borg/upgrade/selfrepair, +/obj/item/stock_parts/cell/bluespace, +/obj/item/stock_parts/cell/bluespace, +/obj/item/borg/upgrade/vtec, +/obj/item/borg/upgrade/vtec, +/obj/item/storage/toolbox/drone{ + pixel_y = 13 + }, +/obj/machinery/door_control/no_emag/north{ + id = "CC_Armory_Mech"; + name = "Оружейная - Мехи"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"gnt" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/computer/shuttle/trade/sol{ + dir = 4 + }, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/trade/sol) +"gnu" = ( +/obj/structure/chair/comfy/purp{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"gny" = ( +/obj/structure/table/wood, +/obj/item/folder/red{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"gnO" = ( +/turf/simulated/floor/plating, +/area/centcom/ss220/jail) +"gnT" = ( +/obj/item/gun/projectile/automatic/sniper_rifle{ + desc = "На прикладе этой винтовки нацарапано 'гей'"; + name = "Потрёпанная снайперская винтовка" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/infteam) +"goe" = ( +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"gof" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"goZ" = ( +/obj/machinery/flasher{ + id = "syndie_FB_cells"; + pixel_y = -24 + }, +/obj/structure/sink/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"gpb" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"gpi" = ( +/obj/structure/curtain/black{ + pixel_x = -32; + pixel_y = 32; + anchored = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"gps" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/carpet/royalblack, +/area/centcom/ss220/admin1) +"gqe" = ( +/obj/structure/chair/sofa{ + color = "#63009c" + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"gqj" = ( +/mob/living/simple_animal/turkey, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"gqH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"gqL" = ( +/obj/structure/weightmachine/stacklifter, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"gqO" = ( +/obj/structure/chair/comfy/shuttle/dark, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_elite) +"grj" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/projectile/automatic/l6_saw{ + pixel_x = -6 + }, +/obj/item/gun/projectile/automatic/l6_saw{ + pixel_x = 6 + }, +/obj/item/gun/projectile/automatic/l6_saw, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"gsB" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkbluealt" + }, +/area/shuttle/administration) +"gsF" = ( +/obj/effect/bump_teleporter{ + id = "Synd21"; + id_target = "Synd11" + }, +/turf/simulated/floor/plasteel{ + color = "gray"; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"gtk" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/food/drinks/cans/beer{ + initialized = 1; + pixel_x = -14; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + initialized = 1; + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + initialized = 1; + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + initialized = 1; + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + initialized = 1; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + initialized = 1; + pixel_x = -14; + pixel_y = 4 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"gty" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/control) +"guM" = ( +/obj/structure/closet/crate/secure/bin, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"guV" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"gvC" = ( +/obj/structure/table, +/obj/item/reagent_containers/applicator/dual{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/reagent_containers/applicator/dual{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/machinery/defibrillator_mount/loaded{ + pixel_y = 26 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/centcom/ss220/general) +"gvI" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcornersalt" + }, +/area/syndicate_mothership/control) +"gvS" = ( +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/bar) +"gwz" = ( +/obj/structure/fence{ + color = "#b0b7c6"; + dir = 4; + invulnerable = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"gwS" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/bar) +"gxg" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/machinery/computer/library{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"gxh" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/obj/structure/bookcase/manuals, +/obj/item/book/manual/random, +/obj/item/book/manual/random, +/obj/item/book/manual/random, +/obj/item/book/manual/wiki/security_space_law/black, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"gxo" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "СС_Jail_4"; + name = "Камера 4" + }, +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/jail) +"gxy" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen/multi{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/cyan, +/area/centcom/ss220/general) +"gxS" = ( +/obj/structure/fence/corner{ + color = "#b0b7c6"; + invulnerable = 1 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"gxV" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/drinkingglasses, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"gyr" = ( +/obj/structure/light_fake/small{ + light_range = 6 + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/item/stamp/syndicate{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/stamp/chameleon{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"gyx" = ( +/obj/item/reagent_containers/food/snacks/grown/cannabis/rainbow, +/obj/item/reagent_containers/food/snacks/grown/cannabis/rainbow, +/obj/item/reagent_containers/food/snacks/grown/cannabis/rainbow, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"gzd" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/folder/yellow, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"gze" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/trader_station/sol) +"gzn" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 4 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + pixel_y = -32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/carpet/arcade, +/area/syndicate_mothership/infteam) +"gzG" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen/multi{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/orange, +/area/centcom/ss220/general) +"gAa" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/carpet, +/area/centcom/ss220/admin3) +"gAs" = ( +/obj/effect/bump_teleporter{ + id = "Synd14"; + id_target = "Synd24" + }, +/turf/simulated/floor/plasteel{ + color = "gray"; + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"gAD" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen/multi{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"gAO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/kirbyplants, +/obj/structure/light_fake/small{ + dir = 1 + }, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"gAP" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"gBb" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/indestructible + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"gBw" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"gBP" = ( +/obj/structure/chair/comfy/lime{ + dir = 4 + }, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"gCV" = ( +/obj/structure/rack, +/obj/item/grenade/chem_grenade/teargas{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/item/grenade/chem_grenade/teargas{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/grenade/chem_grenade/teargas{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/teargas{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade/teargas{ + pixel_x = 8; + pixel_y = 14 + }, +/obj/item/grenade/chem_grenade/teargas{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/grenade/chem_grenade/teargas{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/teargas{ + pixel_x = 8; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"gDb" = ( +/obj/structure/light_fake/small, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"gDq" = ( +/obj/machinery/light/spot, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"gDv" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkredcornersalt" + }, +/area/syndicate_mothership/jail) +"gDW" = ( +/turf/simulated/floor/carpet/green, +/area/centcom/ss220/general) +"gEl" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"gEK" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 1 + }, +/obj/structure/railing/cap/reversed, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"gFk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/delivery/red, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"gFH" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"gFP" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluealtstrip" + }, +/area/centcom/ss220/admin3) +"gFS" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo17" + }, +/obj/effect/turf_decal/siding/black, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"gGk" = ( +/obj/machinery/door/airlock/centcom{ + name = "Развед. центр"; + req_access_txt = "101" + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"gGW" = ( +/turf/simulated/wall/indestructible/fakeglass/brass, +/area/wizard_station) +"gGZ" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"gHg" = ( +/obj/structure/statue/sandstone/assistant{ + pixel_y = 10 + }, +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding."; + icon_state = "plaque"; + name = "Comemmorative Plaque" + }, +/area/centcom/ss220/general) +"gHo" = ( +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"gHP" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"gIb" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/structure/window/reinforced{ + color = "red" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/syndicate_sit) +"gIY" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"gJj" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"gJs" = ( +/obj/structure/reagent_dispensers/beerkeg{ + desc = "Собственность Шерлока Субботина" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"gJu" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"gJB" = ( +/obj/machinery/economy/vending/cola/free, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"gJM" = ( +/obj/effect/turf_decal/arrows/white{ + color = "#6697cc"; + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"gJX" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/effect/spawner/lootdrop/CCfood/alcohol, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"gKg" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 4 + }, +/obj/structure/window/reinforced{ + color = "red"; + dir = 8 + }, +/obj/structure/window/reinforced{ + color = "red"; + dir = 1 + }, +/obj/structure/grille, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/control) +"gKj" = ( +/obj/structure/curtain/black{ + pixel_x = 32; + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"gKr" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/o2{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"gKE" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"gKF" = ( +/turf/simulated/wall/indestructible/opsglass, +/area/syndicate_mothership/elite_squad) +"gMt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"gMN" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/curtain/black{ + pixel_x = 32; + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"gNr" = ( +/obj/machinery/recharger/wallcharger/upgraded{ + pixel_x = 32 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/gamma/space) +"gNW" = ( +/obj/structure/light_fake/small, +/obj/structure/sign/poster/contraband/random/south, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"gOa" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/bar) +"gOQ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"gPe" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/supplycomp{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowfull" + }, +/area/centcom/ss220/admin2) +"gPD" = ( +/obj/structure/table/holotable/wood{ + color = "#996633" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"gPJ" = ( +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/cargo) +"gPL" = ( +/obj/structure/chair/comfy{ + color = "orange"; + dir = 1 + }, +/obj/structure/light_fake/spot, +/turf/simulated/floor/carpet/orange, +/area/centcom/ss220/general) +"gRz" = ( +/obj/machinery/door/airlock/external{ + name = "Шаттл доставки"; + opacity = 0; + req_one_access_txt = "106" + }, +/turf/simulated/floor/plating, +/area/centcom/ss220/supply) +"gRN" = ( +/turf/simulated/wall/indestructible/opsglass, +/area/syndicate_mothership/infteam) +"gSb" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/syndicate_mothership/infteam) +"gSu" = ( +/obj/structure/table/glass, +/obj/item/flashlight/lamp/green{ + pixel_x = -4; + pixel_y = 12 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"gSz" = ( +/obj/effect/landmark/spawner/teleport_scroll, +/obj/structure/table/wood/fancy/black, +/obj/item/paper/crumpled/bloody/ruins/lavaland/clown_planet{ + info = "Deliver five cream pies to the agreed place or your apprentice gets honked again"; + name = "our demands" + }, +/turf/simulated/floor/carpet/purple, +/area/wizard_station) +"gSF" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/syndicate_mothership/outside) +"gTa" = ( +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership/elite_squad) +"gTe" = ( +/obj/machinery/door/airlock/external{ + id_tag = "s_docking_airlock" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel, +/area/shuttle/escape) +"gTg" = ( +/obj/item/trash/tastybread, +/turf/simulated/floor/carpet/purple, +/area/wizard_station) +"gTz" = ( +/obj/effect/bump_teleporter{ + id = "Synd16"; + id_target = "Synd26" + }, +/turf/simulated/floor/plasteel{ + color = "gray"; + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"gTE" = ( +/obj/machinery/gameboard, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"gTX" = ( +/obj/machinery/computer/robotics, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/shuttle/escape) +"gUG" = ( +/obj/structure/statue/uranium/nuke, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"gUH" = ( +/obj/item/flag/syndi, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"gVh" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"gVj" = ( +/obj/machinery/abductor/pad{ + team = 3 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"gVr" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave/upgraded, +/turf/simulated/floor/plasteel/freezer, +/area/ninja/holding) +"gVv" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo8" + }, +/obj/effect/turf_decal/woodsiding{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"gVF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"gVQ" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/plating/asteroid/ancient + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"gWn" = ( +/obj/machinery/economy/vending/coffee/free, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"gWI" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"gWM" = ( +/obj/structure/table/reinforced{ + color = "#444444" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet/red, +/area/syndicate_mothership/control) +"gXs" = ( +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"gXA" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mug/novelty, +/obj/item/candle/eternal/wizard{ + pixel_y = 11 + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"gXS" = ( +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"gYI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"gZg" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Central Command"; + pixel_y = 4; + req_one_access = list(101) + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/admin1) +"gZt" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/landmark/spawner/syndie, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership) +"gZH" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding/corner{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"hax" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/administration) +"haI" = ( +/obj/effect/turf_decal/delivery/red, +/obj/effect/spawner/random_spawners/syndicate/loot{ + spawn_inside = null + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership) +"hbm" = ( +/obj/item/storage/firstaid/o2, +/obj/structure/table, +/obj/machinery/light/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"hbC" = ( +/obj/structure/table/glass, +/obj/item/paper_bin/nanotrasen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/multi/gold{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/stamp/granted{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/stamp/centcom{ + pixel_x = -8; + pixel_y = -2 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"hbG" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 1 + }, +/obj/structure/shuttle/engine/platform{ + dir = 1; + layer = 2.9 + }, +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating, +/area/syndicate_mothership/cargo) +"hcI" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"hdf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/spotlight/jade, +/turf/simulated/floor/indestructible/transparent_floor{ + icon_state = "router_dir"; + dir = 6 + }, +/area/shuttle/syndicate) +"hdo" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo17" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"hdv" = ( +/obj/item/gun/projectile/automatic/c20r{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/projectile/automatic/c20r, +/obj/item/gun/projectile/automatic/c20r{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/light_fake/small, +/obj/effect/turf_decal/bot_white, +/obj/structure/rack/gunrack, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"hdC" = ( +/obj/machinery/bluespace_beacon/syndicate, +/obj/effect/turf_decal/box/red, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + color = "red"; + icon_state = "rightsecure"; + name = "Riot Control"; + req_access_txt = "156" + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"hdY" = ( +/obj/machinery/door/airlock/hatch/syndicate/command{ + name = "Тюрьма"; + id_tag = "syndicate_jail_cell" + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"heh" = ( +/obj/structure/chair/comfy/shuttle, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/transport) +"heV" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'FOURTH WALL'."; + name = "\improper FOURTH WALL"; + pixel_x = -32 + }, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"hfb" = ( +/obj/effect/decal/nanotrasen_logo/n6, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"hfq" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin1) +"hfw" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"hgw" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/clipboard{ + pixel_y = 4 + }, +/obj/item/folder/blue{ + pixel_y = 4 + }, +/obj/item/stamp/centcom{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"hgR" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"hhA" = ( +/obj/structure/table, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Central Command"; + pixel_y = 4; + req_one_access = list(101) + }, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/administration) +"hhK" = ( +/turf/simulated/wall/indestructible/fakedoor, +/area/ninja/holding) +"hii" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 1 + }, +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"hiV" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"hjo" = ( +/obj/machinery/door_control/no_emag/west{ + id = "cc_toilet_1"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/centcom/ss220/evac) +"hjy" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/miscellaneous/goldensiding/corner{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"hjC" = ( +/obj/structure/fence{ + color = "#b0b7c6"; + invulnerable = 1 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"hjZ" = ( +/obj/machinery/suit_storage_unit/syndicate, +/obj/structure/curtain/black{ + pixel_x = -32; + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"hkc" = ( +/obj/structure/chair/sofa/bench/left{ + cover_color = "#68452a"; + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"hki" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS" + }, +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/admin1) +"hkS" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"hlh" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Ship External Access"; + req_access_txt = "153" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"hlj" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor/east{ + id = "QMLoad" + }, +/turf/simulated/floor/plating, +/area/shuttle/supply) +"hlH" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"hlS" = ( +/obj/machinery/computer/camera_advanced/abductor{ + team = 1 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"hlZ" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"hns" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"hnt" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/ashtray/glass{ + pixel_x = 16 + }, +/obj/item/reagent_containers/food/snacks/sliceable/turkey{ + pixel_y = 6 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"hnz" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel/dark{ + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"hnM" = ( +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/specops) +"hnP" = ( +/turf/simulated/floor/plating/lava/smooth/airless, +/area/wizard_station) +"hnT" = ( +/obj/machinery/economy/vending/wallmed/syndicate{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"hoH" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo19" + }, +/obj/effect/turf_decal/woodsiding{ + dir = 6 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"hoY" = ( +/obj/structure/table/glass, +/obj/item/folder{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/lighter/zippo/blue{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/red, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 8; + pixel_y = -10 + }, +/obj/machinery/newscaster/directional/east, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"hpe" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/centcom/ss220/evac) +"hpJ" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin3) +"hqi" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/holywater/hell{ + pixel_y = 2 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/evac) +"hqz" = ( +/obj/structure/chair/comfy/red{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"hqL" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkbluealtstrip" + }, +/area/centcom/ss220/admin1) +"hqY" = ( +/obj/effect/turf_decal/plaque{ + layer = 3 + }, +/obj/structure/statue/furukai, +/turf/simulated/floor/redgrid, +/area/syndicate_mothership) +"hra" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/bar) +"hrY" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/cowboy/white, +/obj/item/clothing/shoes/cowboy/white, +/obj/item/clothing/shoes/fluff/noble_boot{ + pixel_y = -5 + }, +/obj/item/clothing/shoes/fluff/noble_boot{ + pixel_y = -5 + }, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots/jacksandals{ + pixel_y = -5 + }, +/obj/item/clothing/shoes/jackboots/jacksandals{ + pixel_y = -5 + }, +/obj/item/clothing/shoes/leather{ + pixel_y = -3 + }, +/obj/item/clothing/shoes/leather{ + pixel_y = -3 + }, +/obj/item/clothing/shoes/white{ + pixel_y = -3 + }, +/obj/item/clothing/shoes/white{ + pixel_y = -3 + }, +/obj/item/clothing/shoes/centcom{ + pixel_y = -6 + }, +/obj/item/clothing/shoes/centcom{ + pixel_y = -6 + }, +/obj/item/clothing/glasses/hud/security/sunglasses{ + pixel_y = 6 + }, +/obj/item/clothing/glasses/hud/security/sunglasses{ + pixel_y = 6 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"hrZ" = ( +/obj/machinery/sleeper/syndie, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"hsa" = ( +/obj/structure/table, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/melee/icepick, +/obj/item/radio/intercom/syndicate{ + pixel_x = 28; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"hse" = ( +/obj/structure/table, +/obj/machinery/door/window/brigdoor{ + color = "red"; + req_access_txt = "150" + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"hsh" = ( +/turf/simulated/wall/indestructible/fakeglass, +/area/ninja/holding) +"hsv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/simulated/floor/carpet/royalblue, +/area/shuttle/trade/sol) +"htr" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"htP" = ( +/obj/structure/table/glass, +/obj/item/paper_bin/nanotrasen{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen/multi/gold{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/stamp/granted{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/stamp/centcom{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"huN" = ( +/obj/effect/mapping_helpers/light, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/syndicate_mothership/outside) +"hvm" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_elite) +"hwb" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"hwc" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/window/full/basic, +/turf/simulated/floor/grass/no_creep, +/area/trader_station/sol) +"hwj" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/admin3) +"hxf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"hxQ" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/combat{ + pixel_y = 9 + }, +/obj/item/clothing/gloves/combat{ + pixel_y = 6 + }, +/obj/item/clothing/gloves/combat{ + pixel_y = 3 + }, +/obj/item/clothing/gloves/combat, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"hxU" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/delivery/white, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"hyf" = ( +/obj/structure/table, +/obj/item/storage/box/handcuffs, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"hyg" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"hyh" = ( +/obj/structure/table/holotable/wood{ + color = "#996633" + }, +/turf/simulated/floor/carpet/black, +/area/trader_station/sol) +"hzk" = ( +/obj/structure/window/reinforced, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/green, +/area/centcom/ss220/general) +"hAC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet/royalblue, +/area/shuttle/trade/sol) +"hAD" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 1; + layer = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership) +"hBd" = ( +/turf/simulated/floor/beach/away/sand, +/area/ninja/holding) +"hBO" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Стационар" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/centcom/ss220/general) +"hCi" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcornersalt" + }, +/area/syndicate_mothership/control) +"hCC" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"hCK" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"hDe" = ( +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/supply) +"hDK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"hDW" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/effect/mapping_helpers/light, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"hEf" = ( +/obj/machinery/sleeper/syndie, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/syndicate) +"hEp" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo6" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"hER" = ( +/obj/machinery/conveyor/south{ + id = "SFBQMLoad" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/cargo) +"hFb" = ( +/turf/simulated/floor/plating, +/area/centcom/ss220/supply) +"hFw" = ( +/obj/structure/table/reinforced, +/obj/machinery/door_control/no_emag{ + id = "syndieshutters"; + name = "remote shutter control"; + req_access_txt = "150" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"hFJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"hFK" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_x = -8; + pixel_y = 16 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_x = -1; + pixel_y = 16 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_x = -1; + pixel_y = 10 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_x = 6; + pixel_y = 16 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"hFO" = ( +/obj/structure/flora/junglebush/large{ + layer = 4.7 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"hFS" = ( +/obj/structure/statue/gold/hop{ + anchored = 1; + layer = 5; + pixel_y = 9 + }, +/turf/simulated/floor/plasteel{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding."; + icon_state = "plaque"; + name = "Comemmorative Plaque" + }, +/area/centcom/ss220/park) +"hFV" = ( +/obj/structure/rack/holorack, +/obj/effect/turf_decal/box/white, +/obj/item/teleporter/admin{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/teleporter/admin, +/obj/item/teleporter/admin{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/sign/poster/contraband/c20r{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"hGl" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/shuttle/escape) +"hGn" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating/airless, +/area/shuttle/supply) +"hGz" = ( +/obj/structure/curtain/open/shower/security, +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/bar) +"hGG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/computer/security/camera_bug{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredfull" + }, +/area/centcom/ss220/admin2) +"hGW" = ( +/obj/structure/bed/abductor, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"hHg" = ( +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"hHD" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warndarkgreycornerred" + }, +/area/syndicate_mothership/elite_squad) +"hHE" = ( +/obj/structure/sink/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"hHK" = ( +/obj/structure/table/wood, +/obj/item/paicard{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/general) +"hIe" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredalt" + }, +/area/syndicate_mothership/control) +"hIM" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "QMLoad2" + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowalt" + }, +/area/centcom/ss220/supply) +"hJh" = ( +/obj/machinery/door/window/brigdoor{ + color = "red"; + dir = 8; + req_access_txt = "150" + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/infteam) +"hJi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/impassable{ + color = "#9999ff"; + id_tag = "SST_armory_mech_rover"; + name = "SST Armory Mech Rover" + }, +/obj/effect/mapping_helpers/light{ + light_range = 3 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"hJt" = ( +/obj/structure/table/reinforced{ + color = "#444444" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet/red, +/area/syndicate_mothership/control) +"hJM" = ( +/obj/machinery/sleeper{ + dir = 4; + pixel_x = 3 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"hJN" = ( +/obj/structure/curtain/open/shower/security, +/obj/machinery/shower{ + pixel_y = 20 + }, +/obj/effect/turf_decal/miscellaneous/plumbing{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/infteam) +"hKa" = ( +/obj/machinery/door/poddoor/multi_tile/four_tile_ver{ + icon_state = "open" + }, +/obj/machinery/shieldwall{ + dir = 1; + icon = 'icons/effects/beam.dmi'; + icon_state = "n_beam" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"hKh" = ( +/obj/structure/mirror{ + pixel_y = 30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/infteam) +"hLd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"hLH" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"hLU" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo17" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"hMj" = ( +/obj/machinery/smartfridge/secure/chemistry/preloaded/syndicate, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"hMm" = ( +/obj/structure/barricade{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "diagonalWall3"; + name = "diagonal shields"; + proj_pass_rate = 0; + max_integrity = 200; + armor = list(melee = 10, bullet = 50, laser = 50, energy = 50, bomb = 10, rad = 100, fire = 10, acid = 0); + stacktype = null; + dir = 8 + }, +/turf/simulated/floor/indestructible/transparent_floor, +/area/shuttle/syndicate_sit) +"hMQ" = ( +/obj/structure/light_fake/small, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership) +"hNd" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"hNH" = ( +/obj/machinery/porta_turret/syndicate/interior, +/obj/structure/window/plasmareinforced{ + color = "red" + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"hNI" = ( +/obj/item/flag/solgov, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"hNP" = ( +/obj/machinery/computer/card{ + dir = 4 + }, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/administration) +"hOf" = ( +/obj/structure/light_fake{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/syndicate_mothership/elite_squad) +"hOo" = ( +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership) +"hOq" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"hOy" = ( +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/centcom/ss220/evac) +"hPu" = ( +/obj/structure/flora/tree/jungle, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"hPC" = ( +/obj/structure/closet/cabinet{ + req_one_access_txt = "114" + }, +/obj/item/storage/box/centcomofficer, +/obj/item/radio/headset/centcom, +/obj/item/card/id/centcom, +/obj/item/door_remote/centcomm, +/obj/item/clothing/accessory/medal/gold{ + desc = null; + name = "Supreme commander's gold medal" + }, +/obj/item/gun/projectile/revolver/mateba, +/obj/item/ammo_box/a357, +/obj/item/ammo_box/a357, +/obj/item/ammo_box/a357, +/obj/item/clothing/glasses/hud/security/sunglasses, +/obj/item/clothing/head/beret/fluff/sigholt, +/obj/item/storage/backpack/satchel, +/obj/item/clothing/under/color/black, +/obj/item/clothing/accessory/blue, +/obj/item/clothing/accessory/black, +/obj/item/clothing/accessory/holster, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"hPF" = ( +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"hPK" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/light_fake{ + dir = 1 + }, +/obj/item/flag/syndi, +/obj/machinery/door_control/no_emag{ + wires = 1; + emagged = 1; + req_access_txt = "150"; + pixel_y = 30; + id = "nukeop_storage"; + name = "ATOM Storage" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"hPO" = ( +/obj/structure/table/reinforced, +/obj/item/grenade/clusterbuster, +/obj/item/grenade/chem_grenade/incendiary{ + name = "Incendiary Grenade" + }, +/obj/item/kitchen/knife/combat, +/obj/item/kitchen/knife/combat, +/obj/item/kitchen/knife/combat, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/gamma/space) +"hQe" = ( +/obj/structure/chair/sofa/bench/right{ + cover_color = "#404144"; + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"hRt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/sign/vacuum{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "syndishuttle_vent"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"hSm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"hSN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"hTJ" = ( +/obj/structure/closet/crate/can, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership/elite_squad) +"hUn" = ( +/obj/machinery/icemachine{ + dir = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"hUz" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo17" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"hVc" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo18" + }, +/obj/effect/turf_decal/siding/black, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"hVo" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/toy/nuke{ + pixel_y = 7 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"hVs" = ( +/obj/docking_port/stationary/transit{ + dir = 8; + dwidth = 8; + height = 20; + id = "freegolem_transit"; + name = "free golem in transit"; + width = 16 + }, +/turf/space/transit/horizontal{ + dir = 4 + }, +/area/space/centcomm) +"hVt" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5; + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"hVJ" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/machinery/economy/atm/north, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"hWx" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"hWD" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/shuttle/escape) +"hXd" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "nukeop_outside"; + name = "Outside Blast Door" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"hXq" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/centcom/ss220/general) +"hXC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"hXZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/general) +"hYp" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"hYE" = ( +/obj/structure/rack, +/obj/item/toy/sword, +/obj/item/gun/projectile/revolver/capgun, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"hYP" = ( +/obj/machinery/light/directional/east, +/obj/structure/window/reinforced{ + color = "red" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate_sit) +"hZc" = ( +/obj/structure/closet/emcloset, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/centcom/ss220/admin1) +"hZP" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo5" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"iaf" = ( +/obj/structure/fence{ + color = "#b0b7c6"; + dir = 4; + invulnerable = 1 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"iav" = ( +/turf/simulated/wall/mineral/titanium/nodiagonal, +/area/shuttle/trade/sol) +"iaF" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/wood/fancy/birch, +/area/shuttle/trade/sol) +"ibG" = ( +/obj/machinery/dna_scannernew/upgraded, +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"ibI" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/shuttle/escape) +"icd" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"icT" = ( +/obj/structure/sink/directional/east, +/obj/structure/mirror{ + pixel_x = -30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership) +"idU" = ( +/obj/structure/railing/cap/normal, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/syndicate_mothership/outside) +"ieu" = ( +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"ieC" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/crate/sci, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"ieX" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"ifc" = ( +/obj/machinery/economy/vending/hydronutrients, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"ifC" = ( +/obj/effect/bump_teleporter{ + id = "Synd23"; + id_target = "Synd13" + }, +/turf/simulated/floor/plasteel{ + color = "gray"; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"ifH" = ( +/obj/structure/table/reinforced, +/obj/item/robot_parts/robot_component/armour{ + pixel_x = -4 + }, +/obj/item/stack/nanopaste{ + pixel_x = 5 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"ifL" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"igF" = ( +/obj/machinery/door/airlock/external{ + id_tag = "s_docking_airlock"; + name = "Shuttle Hatch" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbluealt" + }, +/area/shuttle/administration) +"igI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"iht" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/admin1) +"ihK" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/candle/eternal{ + pixel_x = 1; + pixel_y = 4; + start_lit = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"ihY" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcornersalt" + }, +/area/syndicate_mothership/cargo) +"iiw" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"iiz" = ( +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock" + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/fans/tiny, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 7; + height = 18; + id = "trade_sol_base"; + name = "docking bay 2 at Jupiter Station"; + width = 15; + dheight = 1 + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 7; + height = 18; + id = "trade_sol"; + name = "sol trade shuttle"; + width = 15; + dheight = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"ijw" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "CC_DeathSquad"; + layer = 3; + name = "Отряд Специальных Операций" + }, +/obj/effect/decal/warning_stripes/white, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"ijz" = ( +/obj/machinery/flasher_button{ + id = "syndie_FB_cells"; + layer = 4; + name = "Prison Flasher"; + pixel_x = -26; + req_access_txt = "150" + }, +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"ijR" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo9" + }, +/obj/effect/turf_decal/woodsiding{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"ika" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkbrown" + }, +/area/centcom/ss220/admin3) +"ikt" = ( +/turf/simulated/wall/indestructible/syndicate{ + smoothing_flags = 2 + }, +/area/syndicate_mothership/elite_squad) +"ikL" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/spawner/ertdirector, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/carpet/royalblack, +/area/centcom/ss220/admin2) +"ikR" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo12" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"ilv" = ( +/obj/structure/chair/sofa/bench/left{ + cover_color = "#68452a"; + dir = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"ilB" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"ilV" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/book/manual/wiki/faxes, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"imp" = ( +/obj/structure/beebox, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"imQ" = ( +/obj/machinery/recharger/wallcharger/upgraded{ + pixel_x = -24 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/gamma/space) +"ink" = ( +/obj/effect/decal/warning_stripes/white, +/obj/machinery/door/poddoor/impassable{ + id_tag = "СС_BD_Exterior_1"; + layer = 3 + }, +/obj/machinery/door/airlock/centcom{ + id_tag = "CC_Exterior_1"; + name = "Зона ЦК"; + req_one_access_txt = "101" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"inv" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/effect/decal/syndie_logo{ + icon_state = "logo3" + }, +/obj/effect/turf_decal/siding/black{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"inP" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/trade_sol/minerals, +/turf/simulated/floor/wood/fancy/birch, +/area/shuttle/trade/sol) +"inT" = ( +/obj/machinery/cryopod/offstation{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"ios" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"iot" = ( +/obj/machinery/cryopod/offstation/right, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"ipi" = ( +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/jail) +"ipl" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/paper_bin/nanotrasen{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/pen/multi/gold{ + pixel_y = 3 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"ipn" = ( +/obj/machinery/door_control/no_emag{ + pixel_x = -32; + wires = 1; + id = "nukeop_ready"; + name = "Shuttle Dock Door"; + req_access_txt = "151"; + specialfunctions = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"ipI" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/snacks/appletart{ + pixel_x = -16; + pixel_y = -10 + }, +/obj/item/reagent_containers/food/snacks/applecakeslice{ + pixel_y = 4 + }, +/obj/item/kitchen/utensil/fork{ + pixel_x = 11; + pixel_y = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"ipZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet/royalblue, +/area/shuttle/trade/sol) +"iqg" = ( +/obj/structure/flora/junglebush/large{ + layer = 5 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"iqn" = ( +/turf/simulated/floor/carpet/royalblack, +/area/centcom/ss220/admin2) +"iqM" = ( +/obj/structure/barricade{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "diagonalWall3"; + name = "diagonal shields"; + proj_pass_rate = 0; + max_integrity = 200; + armor = list(melee = 10, bullet = 50, laser = 50, energy = 50, bomb = 10, rad = 100, fire = 10, acid = 0); + stacktype = null + }, +/turf/simulated/floor/indestructible/transparent_floor, +/area/shuttle/syndicate) +"iri" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs/pinkcuffs, +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/jail) +"irm" = ( +/obj/machinery/computer/cloning{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"iry" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"irE" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"irK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/airlock_controller/air_cycler{ + pixel_x = -25; + req_access_txt = "150"; + vent_link_id = "syndishuttle_vent"; + ext_door_link_id = "syndishuttle_door_ext"; + int_door_link_id = "syndishuttle_door_int"; + ext_button_link_id = "syndishuttle_btn_ext"; + int_button_link_id = "syndishuttle_btn_int" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"irT" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"irV" = ( +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock" + }, +/obj/docking_port/mobile{ + dir = 2; + dwidth = 2; + height = 12; + id = "ferry"; + name = "ferry shuttle"; + width = 5 + }, +/obj/docking_port/stationary{ + dir = 2; + dwidth = 2; + height = 12; + id = "ferry_away"; + name = "centcom bay 2"; + width = 5 + }, +/turf/simulated/floor/plating, +/area/shuttle/transport) +"isa" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"ise" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/air, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"isB" = ( +/obj/structure/table, +/obj/item/clothing/accessory/medal/gold{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/gold/heroism{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/gold{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/gold{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/gold/heroism{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/gold/heroism{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/effect/turf_decal/stripes/white/full{ + color = "#b59959" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"isJ" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/admin1) +"ita" = ( +/obj/structure/flora/tree/jungle, +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"itv" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"itw" = ( +/obj/structure/weightmachine/weightlifter, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"itB" = ( +/turf/simulated/floor/plasteel/dark, +/area/shuttle/escape) +"itU" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/beach/away/sand, +/area/ninja/holding) +"iuD" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/centcom/ss220/jail) +"iuG" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/shuttle/escape) +"iuJ" = ( +/obj/item/flag/nt, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkgreen" + }, +/area/centcom/ss220/admin3) +"iuR" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/cans/beer{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"ivd" = ( +/obj/machinery/computer/arcade/battle{ + dir = 4 + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + pixel_y = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/turf/simulated/floor/carpet/arcade, +/area/syndicate_mothership/infteam) +"ivf" = ( +/obj/machinery/computer/camera_advanced/abductor{ + team = 4 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"ivy" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 11; + pixel_y = 13 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/structure/light_fake{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random/west, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"ivH" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"ivP" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/shuttle/escape) +"ivS" = ( +/obj/effect/turf_decal/delivery/red, +/obj/structure/ore_box, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"iwe" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/syndicate{ + pixel_y = 7 + }, +/obj/item/storage/toolbox/syndicate, +/obj/machinery/recharger/wallcharger{ + pixel_x = 30 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"iwf" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/chocolatecakeslice, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/elite_squad) +"iwk" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/crate/engineering, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"iwE" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"iwL" = ( +/obj/item/flag/nt, +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin3) +"iwO" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + color = "red" + }, +/obj/machinery/atmospherics/portable/canister/air, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"ixq" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 10; + water_overlay_image = null + }, +/area/centcom/ss220/evac) +"ixG" = ( +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"iyK" = ( +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"iyT" = ( +/obj/machinery/door/poddoor/multi_tile/two_tile_hor{ + id_tag = "nukeop_ready" + }, +/obj/machinery/shieldwall{ + dir = 8; + icon = 'icons/effects/beam.dmi'; + icon_state = "n_beam" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"ize" = ( +/obj/structure/table, +/obj/item/storage/firstaid/surgery{ + pixel_y = 6 + }, +/obj/item/clothing/gloves/color/latex/nitrile, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"izl" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"iAz" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/infteam) +"iAT" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -30 + }, +/obj/effect/landmark/spawner/syndie, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership) +"iAV" = ( +/obj/structure/closet/crate/secure/bin{ + color = "36373a" + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"iBn" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin3) +"iBK" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"iBV" = ( +/obj/effect/turf_decal/siding/black{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + color = "gray"; + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership/outside) +"iCa" = ( +/obj/effect/landmark/spawner/prisonwarp, +/turf/simulated/floor/plating, +/area/centcom/ss220/jail) +"iCF" = ( +/obj/structure/railing, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"iCR" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warndarkgreycornerred" + }, +/area/syndicate_mothership/elite_squad) +"iDh" = ( +/obj/structure/closet/syndicate/personal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"iFn" = ( +/obj/structure/chair/sofa/bench{ + cover_color = "#68452a"; + layer = 3.1 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"iFr" = ( +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/bar) +"iFH" = ( +/obj/item/kirbyplants, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel, +/area/shuttle/escape) +"iGx" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/flashlight/lamp/green{ + pixel_x = 4; + pixel_y = 12 + }, +/obj/machinery/button/windowtint{ + id = "CC_Conf"; + pixel_x = 4; + pixel_y = -4; + range = 10 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"iGF" = ( +/obj/structure/flora/tree/jungle, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"iHt" = ( +/obj/item/flag/nt{ + layer = 2.9 + }, +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"iHK" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"iHL" = ( +/obj/effect/turf_decal/arrows/white{ + color = "#6697cc" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"iIw" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/item/paper{ + info = "Переговорить с командованием о трёхзначных числах." + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"iIC" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluecornersalt" + }, +/area/centcom/ss220/admin1) +"iIH" = ( +/obj/structure/safe/floor, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"iII" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin1) +"iJi" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"iJu" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CC_Conf" + }, +/turf/simulated/floor/plating, +/area/centcom/ss220/admin1) +"iJD" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo7" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"iJH" = ( +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/syndicate_mothership/outside) +"iKK" = ( +/obj/structure/light_fake, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"iKN" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "SFBQMLoad2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"iKO" = ( +/obj/structure/chair/sofa/bench/left{ + cover_color = "#68452a"; + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"iLT" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"iNy" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/laser/instakill/blue{ + pixel_x = -6 + }, +/obj/item/gun/energy/laser/instakill/blue{ + pixel_x = 6 + }, +/obj/item/gun/energy/laser/instakill/blue, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"iNH" = ( +/obj/structure/chair/comfy/shuttle, +/turf/simulated/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"iNW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/carbon_dioxide, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"iOx" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"iOM" = ( +/obj/machinery/conveyor/west{ + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id_tag = "QMLoaddoor2"; + name = "Supply Dock Loading Door" + }, +/turf/simulated/floor/plating, +/area/centcom/ss220/supply) +"iPk" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/projectile/automatic/m90{ + pixel_x = -6 + }, +/obj/item/gun/projectile/automatic/m90{ + pixel_x = 6 + }, +/obj/item/gun/projectile/automatic/m90, +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"iQW" = ( +/obj/structure/closet/crate/medical, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/storage/box/beakers, +/obj/item/robot_parts/l_arm, +/obj/item/robot_parts/r_arm, +/obj/item/clothing/mask/surgical, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/robot_parts/l_leg, +/obj/item/robot_parts/r_leg, +/obj/item/radio/intercom/syndicate{ + pixel_x = -28; + dir = 4 + }, +/obj/item/reagent_containers/iv_bag/blood/OMinus, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/syndicate) +"iRI" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/shuttle/escape) +"iRY" = ( +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/centcom/ss220/general) +"iSp" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/syndicate) +"iSW" = ( +/obj/structure/table{ + color = "#996633" + }, +/obj/machinery/chem_dispenser/soda/upgraded{ + dir = 4; + pixel_y = 2 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"iTG" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/cargo) +"iTH" = ( +/obj/structure/rack/holorack, +/obj/effect/turf_decal/delivery/white, +/obj/item/circuitboard/autolathe/syndi, +/obj/item/circuitboard/autolathe/syndi, +/obj/item/circuitboard/sleeper/syndicate, +/obj/item/circuitboard/sleeper/syndicate, +/obj/item/borg/upgrade/syndicate, +/obj/item/borg/upgrade/syndicate, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"iTO" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/jail) +"iUu" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/paper_bin/syndicate{ + pixel_y = 7 + }, +/obj/item/pen/multi/gold{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"iUy" = ( +/obj/effect/bump_teleporter{ + id = "Synd12"; + id_target = "Synd22" + }, +/turf/simulated/floor/plasteel{ + color = "gray"; + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"iUA" = ( +/obj/machinery/economy/vending/tool/free, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"iUB" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "SIT_outside" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership/infteam) +"iUD" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Стойка выдачи" + }, +/obj/item/reagent_containers/food/snacks/sliceable/braincake{ + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"iVd" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"iVj" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/centcom/ss220/evac) +"iVu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/ore_box, +/obj/effect/turf_decal/delivery/white, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"iXk" = ( +/obj/structure/mirror{ + pixel_x = 30 + }, +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"iXp" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"iXx" = ( +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Бджолы" + }, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 8 + }, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"iXE" = ( +/obj/structure/window/plasmareinforced{ + color = "red" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/administration) +"iXO" = ( +/obj/structure/holohoop{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"iXQ" = ( +/obj/structure/table/glass, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Central Command"; + pixel_y = 4; + req_one_access = list(101) + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin3) +"iYI" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Жральня" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"iZU" = ( +/obj/effect/turf_decal/stripes/red/full, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"jak" = ( +/obj/machinery/door/airlock/external{ + name = "Ship External Access"; + req_access_txt = "153" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"jaz" = ( +/turf/simulated/floor/carpet/purple, +/area/centcom/ss220/general) +"jaD" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel/freezer, +/area/ninja/holding) +"jaR" = ( +/obj/item/robot_parts/robot_component{ + desc = "Некая блюспейс сущность, обещала когда нибудь его доделать..."; + name = "Недоделанный бот" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/infteam) +"jaZ" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/bar) +"jbl" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"jcg" = ( +/obj/structure/light_fake/spot, +/obj/machinery/door_control/no_emag{ + id = "Aspid_main_storage"; + wires = 1; + req_access_txt = "153"; + name = "Aspid main storage"; + emagged = 1; + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"jcM" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/centcom/ss220/evac) +"jdM" = ( +/obj/structure/light_fake/small, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"jdR" = ( +/turf/simulated/floor/plasteel{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding."; + icon_state = "plaque"; + name = "Comemmorative Plaque" + }, +/area/centcom/ss220/evac) +"jeH" = ( +/obj/structure/table/glass, +/obj/item/clipboard{ + pixel_y = 4 + }, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/folder/blue{ + pixel_y = 5 + }, +/obj/item/lighter/zippo/blue{ + pixel_x = -12; + pixel_y = 6 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"jfm" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"jfw" = ( +/obj/effect/mapping_helpers/light, +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor"; + name = "floor" + }, +/area/syndicate_mothership/outside) +"jfZ" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets, +/obj/structure/table/wood{ + color = "#996633" + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership) +"jgu" = ( +/obj/structure/closet/crate/engineering, +/obj/item/storage/toolbox/electrical{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"jgz" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Escape Shuttle Infirmary" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/shuttle/escape) +"jgC" = ( +/obj/structure/chair/comfy/black, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"jhd" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/syndicate_mothership/elite_squad) +"jhI" = ( +/obj/machinery/washing_machine, +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"jig" = ( +/turf/simulated/floor/plasteel/grimy, +/area/ninja/outpost) +"jir" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"jis" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/centcom/ss220/general) +"jiu" = ( +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/admin3) +"jjX" = ( +/obj/machinery/recharge_station/upgraded, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkgreen" + }, +/area/centcom/ss220/admin3) +"jkk" = ( +/obj/structure/table/wood/fancy/orange, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen/fancy{ + pixel_y = 4 + }, +/turf/simulated/floor/wood/fancy/birch, +/area/shuttle/trade/sol) +"jkN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"jlp" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/transport) +"jmk" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = -30 + }, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"jms" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin2) +"jmF" = ( +/obj/item/storage/toolbox/fluff/lunchbox{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/simulated/floor/beach/away/sand, +/area/syndicate_mothership/outside) +"jnv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock/titanium/glass{ + req_one_access_txt = "160" + }, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/carpet/orange, +/area/shuttle/trade/sol) +"jnA" = ( +/obj/structure/bookcase/random, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"jnR" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/escape) +"joa" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"jof" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_elite) +"joz" = ( +/obj/structure/bookcase/manuals, +/obj/item/book/manual/random, +/obj/item/book/manual/random, +/obj/item/book/manual/wiki/security_space_law, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"joD" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/plating/asteroid/ancient + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"joW" = ( +/obj/machinery/computer/card/centcom{ + dir = 8 + }, +/obj/structure/light_fake/small{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"jpY" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/obj/machinery/economy/vending/syndicigs, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"jqd" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo9" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"jqk" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/head/kitty, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/shoes/sandal/fancy{ + pixel_y = -11 + }, +/turf/simulated/floor/carpet/blue, +/area/centcom/ss220/general) +"jqw" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"jrf" = ( +/obj/structure/light_fake{ + dir = 8 + }, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"jrk" = ( +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"jrr" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/gun/energy/gun/nuclear, +/obj/item/gun/energy/gun/nuclear, +/obj/item/gun/energy/gun/nuclear, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/gamma/space) +"jrC" = ( +/obj/machinery/door/poddoor/multi_tile/three_tile_hor{ + closingLayer = 3.2; + id_tag = "SST_ready"; + layer = 3.02 + }, +/obj/machinery/shieldwall{ + dir = 8; + icon = 'icons/effects/beam.dmi'; + icon_state = "n_beam" + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership/elite_squad) +"jsg" = ( +/obj/structure/ore_box, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"jsp" = ( +/obj/structure/chair/comfy/purp{ + name = "wizard council throne" + }, +/turf/simulated/floor/carpet/red, +/area/wizard_station) +"jss" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = 32 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkyellow" + }, +/area/shuttle/escape) +"jsB" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "SST_armory_mech_maintenance"; + name = "SST Armory Mech Maintenance" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"jsD" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo14" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"jsR" = ( +/obj/machinery/computer/mech_bay_power_console, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"jtg" = ( +/obj/machinery/computer/crew, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/shuttle/escape) +"jtp" = ( +/obj/structure/rack, +/obj/item/storage/backpack/satchel{ + pixel_y = 12 + }, +/obj/item/storage/backpack/satchel{ + pixel_y = 5 + }, +/obj/item/storage/backpack/satcheldeluxe{ + pixel_y = 9 + }, +/obj/item/storage/backpack/satcheldeluxe{ + pixel_y = 9 + }, +/obj/item/storage/belt/fannypack/black, +/obj/item/storage/belt/fannypack/black, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"jtX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"jud" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/ore_box, +/obj/effect/turf_decal/delivery/white, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"juv" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"juJ" = ( +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"jvw" = ( +/obj/machinery/conveyor/east{ + id = "QMLoad" + }, +/obj/machinery/door/poddoor{ + id_tag = "QMLoaddoor"; + name = "Supply Dock Loading Door" + }, +/turf/simulated/floor/plating, +/area/centcom/ss220/supply) +"jvC" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"jvF" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/machinery/flasher{ + id = "soltraderflash"; + pixel_x = 24 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"jvG" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"jvO" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/extinguisher/mini, +/obj/structure/curtain/black{ + pixel_x = -32; + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"jvX" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/paper_bin/nanotrasen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/multi/gold{ + pixel_x = -2 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"jwn" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"jwq" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"jww" = ( +/obj/structure/window/reinforced/mazeglass, +/obj/structure/window/reinforced/mazeglass{ + dir = 1 + }, +/obj/item/soap, +/obj/structure/mopbucket{ + dir = 4 + }, +/obj/item/mop, +/turf/simulated/floor/plasteel/freezer, +/area/trader_station/sol) +"jwK" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy/birch, +/area/shuttle/trade/sol) +"jwT" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"jxt" = ( +/obj/structure/ore_box, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership) +"jxO" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredalt" + }, +/area/syndicate_mothership/cargo) +"jyq" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkredalt" + }, +/area/syndicate_mothership/control) +"jyU" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "nukeop_outside"; + name = "Outside Blast Door" + }, +/obj/effect/turf_decal/siding/black, +/obj/effect/turf_decal/siding/black{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"jyV" = ( +/obj/structure/chair/sofa/corner{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/infteam) +"jyZ" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"jzh" = ( +/mob/living/silicon/decoy/syndicate{ + desc = "Мышь в естественной среде обитания"; + icon_state = "ai-fuzz"; + name = "R.A.T.G.E." + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership/control) +"jzn" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"jAn" = ( +/obj/machinery/kitchen_machine/oven, +/obj/item/reagent_containers/food/snacks/rawcookies/chocochips{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"jAt" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/toxins, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"jAU" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/newspaper, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"jBg" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"jBo" = ( +/obj/structure/window/reinforced, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"jBE" = ( +/obj/structure/table/wood, +/obj/item/paicard{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"jBO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/infteam) +"jCl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/sofa/bench/right, +/obj/structure/sign/double/map/left{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/infteam) +"jDz" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin3) +"jDQ" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"jEj" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + color = "#aa2222" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcornersalt" + }, +/area/syndicate_mothership/cargo) +"jFQ" = ( +/obj/structure/chair/sofa/right, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"jGA" = ( +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"jHd" = ( +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/gamma/space) +"jHp" = ( +/obj/effect/landmark/spawner/ert, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"jHG" = ( +/obj/structure/flora/rock/jungle, +/obj/item/flashlight/lantern{ + anchored = 1; + layer = 5; + light_color = "#FF9F40"; + on = 1; + pixel_x = -2; + pixel_y = 11 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"jHR" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/carpet/royalblack, +/area/centcom/ss220/admin2) +"jIb" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"jIP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/delivery/white, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"jJa" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"jJu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/impassable{ + color = "#99ff99"; + id_tag = "SST_armory_basic"; + name = "SST Armory Basic Weapons" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"jJQ" = ( +/obj/machinery/economy/vending/toyliberationstation, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"jKa" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/full/basic, +/turf/simulated/floor/grass/no_creep, +/area/trader_station/sol) +"jKB" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"jKD" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkredalt" + }, +/area/centcom/ss220/jail) +"jKF" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "navybluefull" + }, +/area/centcom/ss220/admin3) +"jKT" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + color = "#aa2222" + }, +/obj/machinery/door_control/no_emag{ + pixel_x = 32; + id = "Aspid_poddor_right"; + wires = 1; + req_access_txt = "153"; + name = "Aspid poddor"; + emagged = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcornersalt" + }, +/area/syndicate_mothership/cargo) +"jLf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/light_fake/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"jLy" = ( +/obj/item/flag/nt, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"jLT" = ( +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"jLZ" = ( +/obj/item/flag/syndi, +/obj/structure/light_fake/small, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership/elite_squad) +"jMn" = ( +/obj/machinery/computer/bsa_control/admin, +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"jMu" = ( +/obj/structure/closet/crate/freezer, +/obj/machinery/iv_drip, +/obj/item/reagent_containers/iv_bag/salglu, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/nitrogen, +/obj/item/tank/internals/emergency_oxygen/plasma, +/obj/structure/curtain/black{ + pixel_x = 32; + pixel_y = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"jMw" = ( +/turf/simulated/floor/beach/away/water, +/area/ninja/holding) +"jML" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"jMU" = ( +/turf/simulated/wall/mineral/plastitanium, +/area/shuttle/syndicate_elite) +"jNh" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"jNk" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/candle/eternal/wizard, +/turf/simulated/floor/carpet/red, +/area/wizard_station) +"jNn" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/carpet/royalblack, +/area/centcom/ss220/admin2) +"jNw" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluefull" + }, +/area/centcom/ss220/admin2) +"jNJ" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel/freezer, +/area/ninja/holding) +"jOb" = ( +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/supply) +"jOe" = ( +/obj/structure/table/glass, +/obj/item/circular_saw, +/obj/item/surgicaldrill, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/structure/sink/directional/south, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/syndicate) +"jOk" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "rampbottom" + }, +/area/syndicate_mothership/infteam) +"jOB" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"jPg" = ( +/obj/machinery/photocopier, +/obj/machinery/newscaster/directional/north, +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"jPy" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Escape Shuttle Cell"; + req_access_txt = "63" + }, +/turf/simulated/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"jQa" = ( +/obj/structure/flora/rock, +/turf/simulated/floor/beach/away/sand, +/area/syndicate_mothership/outside) +"jRv" = ( +/obj/machinery/economy/vending/chinese/free, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"jSz" = ( +/obj/machinery/shower{ + dir = 8; + pixel_x = -5 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/centcom/ss220/evac) +"jTq" = ( +/obj/machinery/mech_bay_recharge_port/upgraded{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/admin2) +"jUW" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/simulated/floor/carpet/orange, +/area/centcom/ss220/general) +"jVd" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/centcom/ss220/supply) +"jVL" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"jVM" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/white, +/obj/item/pen/blue, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"jWb" = ( +/obj/structure/light_fake/spot, +/obj/structure/table, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"jWd" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/elite_squad) +"jWg" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8; + invisibility = 101; + layer = 1.6 + }, +/turf/simulated/wall/mineral/plastitanium, +/area/shuttle/syndicate) +"jXb" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkyellowaltstrip" + }, +/area/centcom/ss220/supply) +"jXc" = ( +/obj/structure/flora/tree/jungle{ + pixel_y = -12 + }, +/obj/item/flashlight/lantern{ + anchored = 1; + light_color = "#FF9F40"; + on = 1; + pixel_x = 10; + pixel_y = 14 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"jXk" = ( +/obj/effect/decal/nanotrasen_logo/n3, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"jXy" = ( +/obj/structure/chair/stool/bar/dark{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"jXU" = ( +/obj/machinery/prize_counter, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"jYa" = ( +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"jYJ" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkbluecornersalt" + }, +/area/centcom/ss220/admin1) +"jZg" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/tofukabob, +/obj/item/reagent_containers/food/snacks/tofukabob, +/obj/item/reagent_containers/food/snacks/tofukabob, +/obj/item/reagent_containers/food/snacks/tofukabob, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"jZr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"jZB" = ( +/obj/item/flag/nt, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"kaQ" = ( +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"kaX" = ( +/obj/machinery/door/airlock/public{ + name = "Кухня" + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"kcH" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "CC_Armory_Red"; + name = "Red" + }, +/obj/effect/decal/warning_stripes/white/hollow, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredfull" + }, +/area/centcom/ss220/admin3) +"kcQ" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/delivery/white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"kdg" = ( +/obj/structure/table/abductor, +/obj/effect/spawner/lootdrop/CCfood/desert, +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/turf/simulated/floor/fakespace, +/area/centcom/ss220/bar) +"kdG" = ( +/obj/machinery/kitchen_machine/candy_maker/upgraded, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"kep" = ( +/obj/structure/dresser, +/turf/simulated/floor/carpet/orange, +/area/centcom/ss220/general) +"keH" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/ore_box, +/obj/effect/turf_decal/delivery/white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"keO" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/syndicate{ + pixel_x = 5 + }, +/obj/item/clothing/head/welding{ + pixel_x = -9; + pixel_y = 10 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"keY" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"kfk" = ( +/obj/structure/table/reinforced, +/obj/item/t_scanner, +/obj/item/rpd, +/obj/item/multitool/ai_detect, +/obj/item/storage/toolbox/syndicate, +/obj/item/storage/belt/chameleon, +/obj/item/radio/headset/syndicate/alt, +/obj/item/radio/headset/syndicate/alt, +/obj/item/radio/headset/syndicate/alt, +/obj/item/radio/headset/syndicate/alt, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"kfn" = ( +/obj/structure/chair/comfy/shuttle/dark, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"khe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"khr" = ( +/obj/structure/table/reinforced, +/obj/item/storage/backpack/medic, +/obj/item/storage/belt/medical, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/shuttle/escape) +"kin" = ( +/obj/structure/rack, +/obj/item/camera, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"kiC" = ( +/obj/item/trash/chips, +/turf/simulated/floor/carpet/purple, +/area/wizard_station) +"kiN" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/cargo) +"kiQ" = ( +/obj/structure/table/holotable/wood{ + color = "#996633" + }, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen/multi{ + pixel_y = 5 + }, +/turf/simulated/floor/carpet/black, +/area/trader_station/sol) +"kiY" = ( +/obj/machinery/computer/shuttle/sst{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_elite) +"kjx" = ( +/obj/effect/turf_decal/delivery/white, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership) +"kjH" = ( +/obj/structure/table/wood/fancy/black, +/obj/structure/chair/stool/bar{ + icon = 'icons/obj/lighting.dmi'; + icon_state = "lantern-on"; + light_color = "#FFBF00"; + light_range = 6; + name = "lantern"; + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/simulated/floor/carpet/red, +/area/syndicate_mothership/control) +"kjY" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 30 + }, +/obj/machinery/door/poddoor/impassable{ + id_tag = "SST_armory_main"; + name = "SST Armory" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluealtstrip" + }, +/area/syndicate_mothership/elite_squad) +"kkM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/poddoor/impassable{ + id_tag = "syndFB_med" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"kkN" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/syndicate_mothership/elite_squad) +"kkT" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/deck/cards/black, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/bar) +"klj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/trade/sol) +"klm" = ( +/obj/machinery/computer/shuttle/syndicate/recall, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"klt" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/syndicate_mothership/elite_squad) +"klL" = ( +/obj/structure/light_fake/small, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/centcom/ss220/evac) +"kmg" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"kmp" = ( +/obj/structure/flora/rock/jungle, +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"kmE" = ( +/obj/structure/sink/directional/north, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"kni" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"kns" = ( +/turf/simulated/wall/mineral/plastitanium/nodiagonal, +/area/shuttle/assault_pod) +"knO" = ( +/obj/machinery/economy/vending/medical/syndicate_access, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"knR" = ( +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"kof" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"kok" = ( +/obj/machinery/door/airlock/external{ + aiControlDisabled = 1; + hackProof = 1; + name = "Arrival Airlock" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/bar) +"kol" = ( +/obj/machinery/door/window/classic/normal{ + dir = 8; + name = "Индейки" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 8 + }, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"kow" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/gas, +/obj/effect/landmark/spawner/commando_manual, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"kox" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo12" + }, +/obj/effect/turf_decal/woodsiding{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"koA" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership) +"kpq" = ( +/obj/structure/dresser, +/turf/simulated/floor/carpet/green, +/area/centcom/ss220/general) +"kpt" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"kpC" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/bar) +"kpJ" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"kpL" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 1; + pixel_y = -2 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/plasteel/freezer, +/area/wizard_station) +"kqr" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 8 + }, +/obj/item/storage/fancy/donut_box, +/obj/structure/table/wood/fancy/black, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"kqx" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"kqP" = ( +/obj/structure/chair/comfy/purp{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/wizard_station) +"ksa" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/paper, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"ksk" = ( +/obj/structure/chair/sofa/bench/left{ + cover_color = "#68452a"; + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"kth" = ( +/obj/machinery/bodyscanner{ + dir = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"ktJ" = ( +/obj/structure/chair/sofa/bench/right, +/obj/structure/sign/double/map/left{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/elite_squad) +"ktL" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"ktP" = ( +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"kue" = ( +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/plating, +/area/shuttle/administration) +"kuJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/syndicate/command, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"kvd" = ( +/obj/effect/mapping_helpers/light, +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"kvk" = ( +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"kvA" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/general) +"kvP" = ( +/obj/machinery/economy/vending/cola/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"kwP" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkyellowcornersalt" + }, +/area/centcom/ss220/supply) +"kxn" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/trash/candle, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/evac) +"kxw" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"kxZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 4; + water_overlay_image = null + }, +/area/centcom/ss220/evac) +"kyp" = ( +/obj/effect/landmark/abductor/agent, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"kyT" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "СС_Jail_3"; + name = "Камера 3" + }, +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/jail) +"kyU" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"kzo" = ( +/obj/structure/rack, +/obj/item/storage/backpack/duffel/syndie/x4{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/backpack/duffel/syndie/x4, +/obj/item/storage/backpack/duffel/syndie/x4{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"kzp" = ( +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/obj/machinery/economy/arcade/claw, +/turf/simulated/floor/carpet/arcade, +/area/syndicate_mothership/infteam) +"kzy" = ( +/obj/structure/chair/sofa/corp/right, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"kAL" = ( +/obj/item/flashlight/lantern{ + anchored = 1; + layer = 6; + light_color = "#FF9F40"; + on = 1; + pixel_x = -7; + pixel_y = 15 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"kAS" = ( +/turf/simulated/wall/indestructible/opsglass, +/area/syndicate_mothership/jail) +"kBq" = ( +/obj/machinery/sleeper{ + dir = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"kBX" = ( +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/plating, +/area/shuttle/syndicate) +"kCg" = ( +/obj/machinery/economy/vending/cigarette/syndicate/free, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"kCK" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"kCY" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/carpet/arcade, +/area/syndicate_mothership/infteam) +"kDc" = ( +/obj/structure/window/full/reinforced/polarized{ + id = "SSTprivateroom"; + color = "red" + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership/elite_squad) +"kDg" = ( +/obj/machinery/flasher_button{ + id = "syndie_FB_cells"; + layer = 4; + name = "Prison Flasher"; + pixel_x = 26; + req_access_txt = "150" + }, +/obj/structure/light_fake/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"kDm" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/obj/structure/chair/comfy/shuttle/dark, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"kDD" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/simulated/floor/carpet/green, +/area/centcom/ss220/general) +"kDN" = ( +/obj/structure/table/abductor, +/obj/item/surgicaldrill/alien, +/obj/item/circular_saw/alien, +/obj/item/FixOVein/alien, +/obj/item/bonesetter/alien, +/obj/item/bonegel/alien, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"kEs" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"kEt" = ( +/obj/machinery/door/airlock/centcom{ + name = "Конференц зал"; + req_one_access_txt = "101" + }, +/obj/effect/decal/warning_stripes/blue, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"kEE" = ( +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"kEZ" = ( +/obj/machinery/door/airlock/external{ + id_tag = "s_docking_airlock"; + name = "Shuttle Airlock"; + req_access_txt = "150" + }, +/obj/machinery/door_control/no_emag{ + id = "syndicate_sit_1"; + name = "Blast Doors"; + pixel_x = -25; + req_access_txt = "150" + }, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "syndicate_sit_1"; + name = "Front Hull Door"; + opacity = 0; + req_access_txt = "150" + }, +/turf/simulated/floor/plating, +/area/shuttle/syndicate_sit) +"kFg" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"kFl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/white, +/obj/effect/spawner/random_spawners/syndicate/loot{ + spawn_inside = null + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"kFK" = ( +/obj/structure/sink/kitchen/west, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"kGA" = ( +/obj/machinery/cryopod/offstation/right, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"kGC" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Central Command"; + pixel_y = 4; + req_one_access = list(101) + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"kGL" = ( +/turf/simulated/floor/carpet, +/area/centcom/ss220/evac) +"kGT" = ( +/obj/machinery/optable, +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"kHk" = ( +/obj/effect/mapping_helpers/light, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"kHq" = ( +/obj/machinery/teleport/hub/upgraded{ + admin_usage = 1 + }, +/obj/effect/decal/warning_stripes/white/hollow{ + color = "76643a" + }, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"kIl" = ( +/obj/machinery/newscaster/directional/west, +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"kIB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"kIS" = ( +/obj/machinery/door/airlock/external{ + id_tag = "s_docking_airlock"; + name = "Shuttle Airlock"; + req_access_txt = "150" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "syndicate_sit_1"; + name = "Side Hull Door"; + opacity = 0; + req_access_txt = "150" + }, +/obj/structure/fans/tiny, +/obj/machinery/door_control/no_emag{ + id = "syndicate_sit_1"; + name = "Blast Doors"; + pixel_y = -23; + req_access_txt = "150"; + wires = 1 + }, +/obj/docking_port/mobile{ + dir = 4; + dwidth = 7; + height = 5; + id = "sit"; + name = "SIT shuttle"; + roundstart_move = "sit_away"; + width = 11 + }, +/obj/docking_port/stationary/transit{ + dir = 4; + dwidth = 7; + height = 5; + id = "sit_transit"; + name = "sit in transit"; + pixel_x = -32; + width = 11 + }, +/turf/simulated/floor/plating, +/area/shuttle/syndicate_sit) +"kJs" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"kJF" = ( +/obj/machinery/optable, +/obj/machinery/light/directional/west, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/syndicate) +"kKp" = ( +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"kKs" = ( +/obj/machinery/recharge_station/upgraded, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/administration) +"kKO" = ( +/obj/machinery/porta_turret/syndicate{ + pixel_y = 2 + }, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/spotlight/jade, +/turf/simulated/floor/indestructible/transparent_floor{ + icon_state = "router_dir"; + dir = 4 + }, +/area/shuttle/syndicate) +"kKV" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkbluecornersalt" + }, +/area/centcom/ss220/admin3) +"kKX" = ( +/obj/structure/chair/comfy/corp{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"kMv" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "syndie_cargo_right_shuttle_pump" + }, +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"kMD" = ( +/obj/structure/table/abductor, +/obj/effect/spawner/lootdrop/CCfood/meat, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/turf/simulated/floor/fakespace, +/area/centcom/ss220/bar) +"kNW" = ( +/obj/effect/decal/nanotrasen_logo/n2, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"kOi" = ( +/obj/effect/turf_decal/woodsiding{ + dir = 1 + }, +/obj/structure/mineral_door/wood{ + name = "Main chamber" + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"kOF" = ( +/obj/structure/table/holotable/wood{ + color = "#996633" + }, +/obj/machinery/chem_dispenser/soda/upgraded{ + pixel_y = 6 + }, +/turf/simulated/floor/carpet/black, +/area/trader_station/sol) +"kOR" = ( +/obj/structure/light_fake{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"kPo" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/bikehorn/airhorn, +/turf/simulated/floor/plasteel/goonplaque/nosey, +/area/wizard_station) +"kPK" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"kQr" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/overlay/coconut, +/turf/simulated/floor/beach/away/sand, +/area/ninja/holding) +"kQG" = ( +/obj/item/kirbyplants, +/obj/structure/mirror/magic{ + desc = null; + name = "mirror"; + pixel_y = 25 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"kQR" = ( +/obj/machinery/door/airlock/centcom{ + name = "Склад"; + req_one_access_txt = "106" + }, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/obj/machinery/door/poddoor/impassable{ + id_tag = "CC_Cargo"; + layer = 3; + name = "Склад" + }, +/obj/machinery/door_control/no_emag/north{ + id = "CC_Cargo"; + name = "Blast Door Control"; + req_one_access_txt = "106" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"kRT" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkbluecorners" + }, +/area/centcom/ss220/bar) +"kSJ" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "SyndFB_prison_stroll_blast"; + layer = 3.1; + closingLayer = 3.1 + }, +/obj/machinery/door/airlock/hatch/syndicate/command{ + name = "Тюрьма" + }, +/turf/simulated/floor/plasteel{ + icon_state = "brownoldfull" + }, +/area/syndicate_mothership/jail) +"kSM" = ( +/obj/structure/light_fake, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"kTp" = ( +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"kTs" = ( +/obj/machinery/economy/vending/cola/free{ + name = "\improper Wizbust Softdrinks" + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"kTZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/trash/candle, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/evac) +"kUd" = ( +/obj/structure/table/reinforced, +/obj/machinery/processor{ + pixel_y = 10; + dir = 8 + }, +/obj/structure/light_fake{ + dir = 4 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"kWj" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"kWD" = ( +/obj/effect/landmark/spawner/holding_facility, +/turf/simulated/floor/engine, +/area/ninja/holding) +"kXh" = ( +/turf/space/transit/east{ + dir = 8 + }, +/area/space/centcomm) +"kXn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/impassable{ + color = "#ff9999"; + id_tag = "SST_armory_mech_mauler"; + name = "SST Armory Mech Mauler" + }, +/obj/effect/mapping_helpers/light{ + light_range = 3 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"kXx" = ( +/obj/mecha/combat/marauder/loaded, +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "darkbrown" + }, +/area/centcom/ss220/admin3) +"kZg" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" + }, +/area/centcom/ss220/bar) +"lae" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo16" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"lap" = ( +/turf/simulated/wall/indestructible/riveted, +/area/start) +"laR" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "SyndFB_prison_stroll_blast"; + layer = 3.1; + closingLayer = 3.1 + }, +/obj/machinery/door/airlock/hatch/syndicate/command{ + name = "Тюрьма" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"lbU" = ( +/obj/structure/punching_bag, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"lci" = ( +/obj/effect/turf_decal/siding/red{ + color = "#aa2222" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"lcm" = ( +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"lcv" = ( +/obj/effect/spawner/lootdrop/trade_sol/largeitem, +/turf/simulated/floor/wood/fancy/birch, +/area/shuttle/trade/sol) +"lcG" = ( +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"lcH" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"lde" = ( +/obj/machinery/suit_storage_unit/syndicate{ + pixel_y = 6 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"ldu" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership) +"lek" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/bar) +"leo" = ( +/obj/structure/closet/crate/secure/bin{ + anchored = 1; + color = "#996633" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"leH" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/storage/box/matches, +/obj/effect/turf_decal/woodsiding{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"leS" = ( +/obj/structure/chair/comfy/purp, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"leW" = ( +/obj/machinery/economy/vending/magivend, +/turf/simulated/floor/carpet/black, +/area/wizard_station) +"lfl" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "syndFB_teleport" + }, +/turf/simulated/wall/indestructible/opsglass, +/area/syndicate_mothership/control) +"lfO" = ( +/obj/structure/table/wood, +/obj/item/card/id/prisoner/random, +/obj/item/camera_bug, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"lgu" = ( +/obj/item/radio/intercom/syndicate{ + pixel_x = -28; + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"lgH" = ( +/turf/space/transit, +/area/space/centcomm) +"lgV" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"lhx" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/machinery/recharger/wallcharger/upgraded{ + pixel_x = -28 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/specops) +"lhH" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"liu" = ( +/obj/structure/table/reinforced, +/obj/machinery/kitchen_machine/microwave{ + pixel_x = -1; + pixel_y = 7 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"liO" = ( +/obj/machinery/computer/security/wooden_tv{ + network = list("SS13","Research Outpost","Mining Outpost") + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"liW" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/food/drinks/trophy/gold_cup, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/carpet/red, +/area/syndicate_mothership/control) +"ljl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/poddoor/impassable{ + id_tag = "syndFB_baseright"; + layer = 3.11; + closingLayer = 3.11 + }, +/obj/machinery/door/airlock/hatch/syndicate/command, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"ljn" = ( +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"ljK" = ( +/obj/machinery/status_display/supply_display/east, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"ljX" = ( +/obj/effect/landmark/spawner/nuclear_bomb/death_squad, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"lkx" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership) +"lkU" = ( +/turf/simulated/floor/plating, +/area/syndicate_mothership/control) +"llM" = ( +/obj/effect/turf_decal/siding/brown, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"lmc" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"lmy" = ( +/obj/item/storage/bible, +/turf/simulated/floor/carpet/green, +/area/centcom/ss220/park) +"lnr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"los" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"loL" = ( +/obj/structure/table, +/obj/item/kitchen/knife/butcher, +/obj/item/clothing/mask/muzzle{ + pixel_y = 8 + }, +/obj/item/melee/baseball_bat/homerun, +/obj/item/melee/baseball_bat/ablative{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"lpx" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + color = "#aa2222"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcornersalt" + }, +/area/syndicate_mothership/cargo) +"lpN" = ( +/obj/structure/table/wood, +/obj/item/candle/eternal{ + start_lit = 1 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/evac) +"lqf" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/syndicate_mothership/infteam) +"lqw" = ( +/obj/machinery/door_control/no_emag{ + id = "syndFB_baseleft"; + name = "Forward Base Access"; + pixel_y = -25; + req_access_txt = "153"; + wires = 1; + emagged = 1 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"lra" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/projectile/automatic/sniper_rifle{ + pixel_x = -6 + }, +/obj/item/gun/projectile/automatic/sniper_rifle{ + pixel_x = 6 + }, +/obj/item/gun/projectile/automatic/sniper_rifle, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"lrc" = ( +/obj/docking_port/stationary{ + dwidth = 8; + height = 22; + id = "syndicate_away"; + name = "Syndicate Base"; + width = 18; + turf_type = /turf/simulated/floor/plating; + area_type = /area/syndicate_mothership + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership) +"lre" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"lry" = ( +/obj/machinery/door/airlock/hatch/syndicate/command{ + name = "Тюрьма" + }, +/turf/simulated/floor/plasteel{ + icon_state = "brownoldfull" + }, +/area/syndicate_mothership/jail) +"lrI" = ( +/obj/machinery/computer/camera_advanced/shuttle_docker/admin{ + name = "NTV Argos shuttle navigation computer" + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"lrX" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"lsg" = ( +/obj/structure/table/reinforced, +/obj/item/pizzabox/garlic{ + pixel_y = 9 + }, +/obj/item/pizzabox/hawaiian{ + pixel_y = 12 + }, +/obj/item/pizzabox/margherita{ + pixel_y = 15 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"lsh" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"lsx" = ( +/obj/structure/closet/secure_closet/guncabinet{ + layer = 2.9; + name = "LMG M249 SAW"; + req_access_txt = "114" + }, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/ammo_box/magazine/mm556x45/ap, +/obj/item/gun/projectile/automatic/l6_saw{ + desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'."; + name = "M249 SAW" + }, +/obj/item/gun/projectile/automatic/l6_saw{ + desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'."; + name = "M249 SAW" + }, +/obj/item/gun/projectile/automatic/l6_saw{ + desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'."; + name = "M249 SAW" + }, +/obj/item/gun/projectile/automatic/l6_saw{ + desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'."; + name = "M249 SAW" + }, +/obj/item/gun/projectile/automatic/l6_saw{ + desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'."; + name = "M249 SAW" + }, +/obj/item/gun/projectile/automatic/l6_saw{ + desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'."; + name = "M249 SAW" + }, +/obj/item/gun/projectile/automatic/l6_saw{ + desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'."; + name = "M249 SAW" + }, +/obj/item/gun/projectile/automatic/l6_saw{ + desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'."; + name = "M249 SAW" + }, +/obj/item/gun/projectile/automatic/l6_saw{ + desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'."; + name = "M249 SAW" + }, +/obj/item/gun/projectile/automatic/l6_saw{ + desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'."; + name = "M249 SAW" + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"lsy" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/storage/fancy/cigarettes/cigpack_robustgold{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/matches{ + pixel_x = 4; + pixel_y = -10 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"ltc" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"ltd" = ( +/obj/structure/spider/terrorweb/gray, +/turf/simulated/floor/plating, +/area/syndicate_mothership/control) +"ltk" = ( +/obj/structure/bookcase/random, +/turf/simulated/floor/carpet/red, +/area/wizard_station) +"ltE" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/bar) +"ltN" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/item/soap/syndie, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/elite_squad) +"ltU" = ( +/obj/item/storage/box/drinkingglasses, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 30 + }, +/obj/structure/table/wood{ + color = "#996633" + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership) +"luW" = ( +/obj/structure/chair/comfy/purp{ + dir = 1; + name = "wizard council throne" + }, +/turf/simulated/floor/carpet/red, +/area/wizard_station) +"lvb" = ( +/obj/structure/table, +/obj/item/clothing/head/that{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel/freezer, +/area/ninja/holding) +"lve" = ( +/obj/machinery/sleeper{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"lvh" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"lvp" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/bar) +"lvt" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin1) +"lvM" = ( +/obj/structure/window/reinforced, +/obj/structure/table/glass, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = -2; + pixel_y = 8 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"lwb" = ( +/obj/structure/table/glass, +/obj/item/paper_bin/nanotrasen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/multi/gold{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/stamp/granted{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/stamp/centcom{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/machinery/newscaster/directional/south, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"lwp" = ( +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/admin2) +"lwu" = ( +/obj/structure/dresser, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 9 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"lxo" = ( +/obj/effect/landmark/spawner/syndicate_commando, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"lxq" = ( +/obj/effect/landmark/spawner/ds, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"lxO" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"lxW" = ( +/obj/effect/turf_decal/arrows/white, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluealt" + }, +/area/syndicate_mothership/elite_squad) +"lys" = ( +/obj/item/clothing/glasses/meson{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/clothing/glasses/meson{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = -2 + }, +/obj/item/clothing/glasses/meson{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/item/clothing/glasses/meson{ + pixel_x = 6; + pixel_y = -8 + }, +/obj/structure/rack, +/obj/structure/curtain/black{ + pixel_x = -32; + pixel_y = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"lyW" = ( +/obj/structure/chair/comfy/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/administration) +"lzj" = ( +/obj/machinery/computer/shuttle/sit{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_sit) +"lzl" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"lAi" = ( +/obj/machinery/economy/slot_machine, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/bar) +"lAx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/sleeper/upgraded, +/turf/simulated/floor/plasteel/grimy, +/area/ninja/outpost) +"lAC" = ( +/turf/simulated/floor/indestructible/grass/no_creep, +/area/syndicate_mothership/outside) +"lAY" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"lBj" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcornersalt" + }, +/area/syndicate_mothership/control) +"lBT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"lCh" = ( +/obj/item/toy/figure/crew/syndie, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"lCi" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/tree/jungle/small{ + pixel_x = -20 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"lCD" = ( +/mob/living/simple_animal/mouse/brown{ + desc = "Секретная разработка синдиката. Сидит тут потому, что сам хочет"; + name = "Мышедемон" + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"lDh" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"lDI" = ( +/obj/mecha/combat/marauder/loaded, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbrown" + }, +/area/centcom/ss220/admin3) +"lEt" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/syndicate_recruitment{ + pixel_x = 32 + }, +/obj/effect/decal/syndie_logo{ + icon_state = "logo12" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"lEw" = ( +/obj/structure/table, +/obj/machinery/door_control/no_emag{ + id = "CC_Exterior_2"; + name = "Открыть выход"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 8; + req_one_access_txt = "101" + }, +/obj/machinery/door_control/no_emag{ + id = "СС_BD_Exterior_2"; + name = "Blast Door Open"; + pixel_x = 6; + pixel_y = 8; + req_one_access_txt = "101" + }, +/obj/machinery/door_control/no_emag{ + id = "СС_BD_Interior_2"; + name = "Blast Door Open"; + pixel_x = 6; + pixel_y = -2; + req_one_access_txt = "101" + }, +/obj/machinery/door_control/no_emag{ + id = "СС_BD_Interior_2"; + name = "Blast Door Open"; + pixel_x = -6; + pixel_y = -2; + req_one_access_txt = "101" + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"lEI" = ( +/obj/structure/rack, +/obj/item/gun/rocketlauncher{ + pixel_y = 6 + }, +/obj/item/gun/rocketlauncher{ + pixel_y = 3 + }, +/obj/item/gun/rocketlauncher, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"lFa" = ( +/obj/structure/window/plasmareinforced{ + color = "red" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/shuttle/administration) +"lFy" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/table/wood/fancy/orange, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/trade/sol) +"lGl" = ( +/obj/structure/bookcase/manuals, +/obj/item/book/manual/wiki/sop_service, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/admin1) +"lGp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"lGw" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/bar) +"lGW" = ( +/obj/item/flag/solgov, +/obj/machinery/door_control/no_emag/east{ + id = "soltrader_north"; + name = "Trade Deposits Door"; + normaldoorcontrol = 1; + pixel_y = 8; + req_access_txt = "160"; + req_one_access_txt = "160" + }, +/obj/machinery/door_control/no_emag/east{ + id = "trader_privacy"; + name = "Privacy Shutters Control"; + pixel_y = -8; + req_access_txt = "160"; + req_one_access_txt = "160" + }, +/obj/machinery/flasher_button{ + id = "soltraderflash"; + pixel_x = 24; + req_one_access_txt = "160" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"lHj" = ( +/obj/structure/table/reinforced, +/obj/item/toy/plushie/marble_fox{ + pixel_y = 8 + }, +/obj/item/paper_bin/syndicate{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/pen/fancy{ + pixel_x = 8 + }, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/control) +"lHw" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"lHU" = ( +/obj/machinery/economy/vending/coffee/free, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"lIT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet/green, +/area/shuttle/trade/sol) +"lIU" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/obj/machinery/economy/vending/toyliberationstation{ + contraband = null; + products = list(/obj/item/gun/projectile/automatic/toy=10,/obj/item/gun/projectile/automatic/toy/pistol=10,/obj/item/gun/projectile/shotgun/toy=10,/obj/item/toy/sword=10,/obj/item/ammo_box/foambox=20,/obj/item/toy/foamblade=10,/obj/item/toy/syndicateballoon=10,/obj/item/clothing/suit/syndicatefake=5,/obj/item/clothing/head/syndicatefake=5,/obj/item/gun/projectile/shotgun/toy/crossbow=10,/obj/item/gun/projectile/automatic/c20r/toy/riot=10,/obj/item/gun/projectile/automatic/l6_saw/toy/riot=10,/obj/item/gun/projectile/automatic/sniper_rifle/toy=10,/obj/item/ammo_box/foambox/riot=20,/obj/item/toy/katana=10) + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"lIZ" = ( +/obj/structure/table/glass, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/general) +"lJk" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/escape) +"lJp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table{ + color = "#996633" + }, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/pulse, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/pulse, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/pulse, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/tesla, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/tesla, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/tesla, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/xray, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/xray, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/xray, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/immolator, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/immolator, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/immolator, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/disabler, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/disabler, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/disabler, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/carbine, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/carbine, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/carbine, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/bola, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/bola, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/bola, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/heavy, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/heavy, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/heavy, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"lJz" = ( +/obj/structure/light_fake/small, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"lJO" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall/mineral/titanium, +/area/shuttle/escape) +"lJU" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/lighter/zippo/blue{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/pen/multi/fountain{ + pixel_x = 8; + pixel_y = 9 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/admin3) +"lJY" = ( +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"lKj" = ( +/obj/structure/table, +/obj/item/storage/firstaid, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"lKp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"lKs" = ( +/obj/machinery/door/poddoor{ + id_tag = "nukeop_ready"; + layer = 2.71; + name = "Shuttle Dock Door" + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"lKt" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random_spawners/syndicate/loot{ + spawn_inside = null + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"lLh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/trade/sol) +"lLn" = ( +/obj/item/gun/projectile/automatic/m90{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/projectile/automatic/m90, +/obj/item/gun/projectile/automatic/m90{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/effect/turf_decal/bot_white, +/obj/structure/rack/gunrack, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"lLq" = ( +/turf/simulated/floor/plasteel, +/area/shuttle/escape) +"lMl" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"lMv" = ( +/obj/item/paper/syndimemo{ + info = "ТАК ТЫ ПОЛУЧИЛ ЭТОТ ЧЕРТОВ ДИСК?
ЕСЛИ НЕТ ТО ПОЛУЧИ ЕГО!"; + name = "paper- '?'" + }, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"lMG" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkyellowalt" + }, +/area/centcom/ss220/supply) +"lMN" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo19" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"lMX" = ( +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluefull" + }, +/area/centcom/ss220/admin2) +"lNa" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "150" + }, +/obj/item/storage/box/beakers/bluespace, +/obj/item/storage/box/beakers/bluespace, +/obj/item/storage/box/beakers/bluespace, +/obj/item/grenade/bananade/casing, +/obj/item/grenade/bananade/casing, +/obj/item/grenade/bananade/casing, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/storage/bag/chemistry, +/obj/item/storage/bag/chemistry, +/obj/structure/curtain/black{ + pixel_x = 32; + pixel_y = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"lNA" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 7 + }, +/obj/structure/table/wood, +/obj/item/candle/eternal{ + start_lit = 1 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/evac) +"lNI" = ( +/obj/structure/light_fake{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"lOi" = ( +/obj/structure/rack/holorack, +/obj/effect/turf_decal/box/white, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/obj/item/clothing/under/misc/acj{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/under/misc/acj{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/under/misc/acj{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/clothing/under/misc/acj, +/obj/item/clothing/under/misc/acj{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"lOq" = ( +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/obj/machinery/cryopod/offstation{ + icon_state = "sleeper_s"; + occupied_icon_state = "sleeper_s"; + dir = 2; + base_icon_state = "sleeper_s-open" + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"lOr" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers/bluespace, +/obj/item/reagent_scanner/adv, +/turf/simulated/floor/plasteel{ + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"lOJ" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"lOY" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/item/bedsheet/green{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/centcom/ss220/general) +"lPf" = ( +/obj/machinery/door/poddoor/multi_tile/two_tile_ver{ + id_tag = "Aspid_poddor_left" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"lPo" = ( +/obj/machinery/economy/vending/nta/red, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"lPt" = ( +/turf/simulated/wall/indestructible/opsglass, +/area/syndicate_mothership/control) +"lPV" = ( +/obj/structure/chair/stool/bar/dark, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/bar) +"lPW" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership/elite_squad) +"lQk" = ( +/obj/machinery/economy/vending/cola, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"lRi" = ( +/obj/structure/light_fake, +/obj/machinery/optable, +/turf/simulated/floor/plasteel{ + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"lRr" = ( +/obj/structure/table/wood/poker, +/obj/item/deck/cards/doublecards{ + pixel_y = 2 + }, +/turf/simulated/floor/carpet/arcade, +/area/trader_station/sol) +"lRu" = ( +/obj/structure/table, +/obj/item/paper/syndimemo{ + info = "Пришлось срочно вылететь на задание. Печенье доделаете сами. - Джордж"; + name = "Записка'"; + pixel_x = 3 + }, +/obj/item/paicard/syndicate{ + pixel_x = -4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"lRO" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"lSi" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "podfloor_light" + }, +/area/syndicate_mothership/jail) +"lSz" = ( +/obj/item/kirbyplants, +/obj/machinery/computer/cryopod{ + pixel_y = 28 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"lSO" = ( +/obj/structure/chair/sofa/right{ + color = "#63009c" + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"lSU" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/radio/intercom/locked/confessional{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"lTh" = ( +/obj/structure/closet/cabinet{ + req_one_access_txt = "153" + }, +/obj/item/clothing/gloves/combat, +/obj/item/radio/headset/syndicate/alt/syndteam, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/shoes/centcom{ + desc = null; + name = "Dress shoes" + }, +/obj/item/clothing/under/syndicate, +/obj/item/card/id/syndicate/command, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"lTD" = ( +/obj/docking_port/stationary{ + dwidth = 1; + height = 4; + id = "pod1_away"; + name = "recovery ship bay 1"; + width = 3 + }, +/turf/space/transit/horizontal, +/area/space/centcomm) +"lTL" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkredalt" + }, +/area/syndicate_mothership/control) +"lUD" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"lVw" = ( +/obj/structure/closet/crate, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/transport) +"lVF" = ( +/obj/structure/rack, +/obj/item/grenade/smokebomb{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/grenade/smokebomb{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/grenade/smokebomb{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/grenade/smokebomb{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/grenade/smokebomb{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/grenade/smokebomb{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"lVQ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"lVR" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin3) +"lWm" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo2" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"lWx" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo19" + }, +/obj/effect/turf_decal/siding/black{ + dir = 6 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"lWH" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"lWU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"lXe" = ( +/obj/machinery/sleeper/syndie, +/obj/structure/curtain/black{ + pixel_x = 32; + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"lXi" = ( +/obj/effect/turf_decal/siding/red{ + color = "#aa2222" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"lXo" = ( +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"lXw" = ( +/obj/structure/statue/gold/hos{ + anchored = 1; + layer = 5; + pixel_y = 9 + }, +/turf/simulated/floor/plasteel{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding."; + icon_state = "plaque"; + name = "Comemmorative Plaque" + }, +/area/centcom/ss220/park) +"lXX" = ( +/obj/machinery/door/airlock/titanium{ + req_one_access_txt = "160" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/carpet/orange, +/area/shuttle/trade/sol) +"lYn" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/carpet/arcade, +/area/syndicate_mothership/infteam) +"lYs" = ( +/obj/structure/table/wood, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/infteam) +"lZs" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/escape) +"lZQ" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"maY" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/light_fake/small, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -30 + }, +/obj/machinery/recharge_station/upgraded, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"mbB" = ( +/obj/mecha/combat/gygax, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"mbQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/white, +/obj/structure/ore_box, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"mcm" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "QMLoad" + }, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/centcom/ss220/supply) +"mcp" = ( +/obj/machinery/abductor/pad{ + team = 1 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"mcq" = ( +/obj/structure/chair/sofa/pew/right{ + dir = 1 + }, +/obj/item/candle/eternal{ + layer = 4; + pixel_x = 13; + pixel_y = 17; + start_lit = 1 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/evac) +"mcG" = ( +/obj/structure/flora/junglebush/large, +/turf/simulated/floor/grass/jungle/no_creep, +/area/centcom/ss220/park) +"mcR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"mcX" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "SyndFB_prison_outside" + }, +/turf/simulated/floor/plasteel{ + icon_state = "brownoldfull" + }, +/area/syndicate_mothership/jail) +"mdy" = ( +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"meG" = ( +/obj/effect/turf_decal/woodsiding{ + dir = 4 + }, +/turf/simulated/floor/carpet/royalblack, +/area/syndicate_mothership/control) +"meX" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/window/full/shuttle, +/turf/simulated/floor/grass/no_creep, +/area/shuttle/escape) +"mfh" = ( +/obj/effect/decal/warning_stripes/white/hollow, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"mgd" = ( +/obj/structure/sign/vacuum/external, +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/admin1) +"mgo" = ( +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"mgv" = ( +/obj/machinery/economy/vending/syndicigs, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"mhd" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet, +/area/centcom/ss220/evac) +"mhk" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"mhw" = ( +/obj/structure/light_fake{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/syndicate_mothership/elite_squad) +"mhM" = ( +/obj/machinery/door/poddoor/multi_tile/four_tile_hor{ + id_tag = "Aspid_main_storage" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"mhV" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"miA" = ( +/obj/structure/noticeboard{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/item/paper/syndimemo{ + info = "Дней без рассекречивания Тайпана: 0" + }, +/obj/effect/decal/syndie_logo, +/obj/effect/turf_decal/siding/black{ + dir = 9 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"mjb" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"mjx" = ( +/obj/structure/table/glass, +/obj/item/pizzabox/pizza_bomb/autoarm{ + pixel_y = 10 + }, +/obj/item/pizzabox/garlic{ + pixel_y = 14 + }, +/obj/item/pizzabox/hawaiian{ + pixel_y = 18 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"mjE" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"mjL" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warndarkgreycornerred" + }, +/area/syndicate_mothership) +"mjQ" = ( +/obj/machinery/computer/shuttle/sit, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"mjW" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/syndicate/loot{ + spawn_inside = null + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"mkf" = ( +/obj/structure/chair/comfy/red{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/control) +"mkF" = ( +/obj/structure/chair/comfy/corp, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin3) +"mkU" = ( +/obj/item/target, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"mlh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/shuttle/engine/platform{ + layer = 2.9; + dir = 4 + }, +/obj/structure/shuttle/engine/heater{ + icon_state = "heater2x2_side"; + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/trade/sol) +"mln" = ( +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/centcom/ss220/admin3) +"mlq" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar/large, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/gloves/combat, +/obj/item/storage/box/lights/mixed, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"mlS" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"mlX" = ( +/obj/effect/landmark/abductor/agent{ + team = 4 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"mmu" = ( +/obj/structure/table, +/obj/item/storage/lockbox/mindshield, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"mmG" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbluealtstrip" + }, +/area/centcom/ss220/admin1) +"mmT" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants, +/obj/effect/turf_decal/siding/black{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"mna" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"mnr" = ( +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/bar) +"mns" = ( +/obj/structure/loom, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"mnx" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/bar) +"mnU" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo3" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"mpn" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"mpq" = ( +/obj/effect/turf_decal/stripes/line, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"mpu" = ( +/obj/structure/closet/crate/internals, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"mpv" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/structure/curtain/black{ + pixel_x = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"mpO" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo13" + }, +/obj/effect/turf_decal/siding/black{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"mpP" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/admin1) +"mpV" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + autolink_id = "syndie_cargo_right_shuttle_pump" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"mqf" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/bar) +"mqw" = ( +/obj/docking_port/stationary/transit{ + dir = 4; + dwidth = 1; + height = 4; + id = "pod4_transit"; + name = "pod 4 in transit"; + width = 3 + }, +/turf/space/transit/east{ + dir = 8 + }, +/area/space/centcomm) +"mqD" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"mqM" = ( +/obj/effect/decal/syndie_logo, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"mrL" = ( +/obj/structure/statue/sandstone/assistant{ + anchored = 1; + desc = "Он точно не спит на посту!"; + dir = 8; + icon = 'icons/mob/simple_human.dmi'; + icon_state = "syndicate_smg"; + max_integrity = 9999; + name = "Биба"; + obj_integrity = 9999 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkred" + }, +/area/syndicate_mothership/elite_squad) +"mrZ" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowcornersalt" + }, +/area/centcom/ss220/supply) +"msb" = ( +/obj/structure/table, +/obj/item/storage/box/handcuffs, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/jail) +"mti" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin3) +"mtm" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"mtH" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkredalt" + }, +/area/syndicate_mothership/control) +"muB" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"mvf" = ( +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"mvw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"mwa" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/item/paper_bin/nanotrasen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/multi/gold{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/stamp/granted{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/stamp/centcom{ + pixel_x = -8; + pixel_y = -2 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"mwf" = ( +/obj/structure/light_fake, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/cryopod{ + pixel_y = -32; + req_access_txt = "150" + }, +/obj/machinery/cryopod/offstation{ + icon_state = "sleeper_s"; + occupied_icon_state = "sleeper_s"; + dir = 1; + base_icon_state = "sleeper_s-open" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"mws" = ( +/obj/machinery/bodyscanner, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"mxp" = ( +/obj/structure/table/wood, +/obj/item/clothing/glasses/hud/hydroponic{ + pixel_y = 8 + }, +/obj/item/clothing/glasses/hud/hydroponic{ + pixel_y = 4 + }, +/obj/item/clothing/glasses/hud/hydroponic, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"mxY" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"myw" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/bar) +"mzc" = ( +/obj/structure/chair/comfy/corp{ + dir = 1 + }, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"mzf" = ( +/obj/structure/dresser, +/turf/simulated/floor/carpet/cyan, +/area/centcom/ss220/general) +"mzp" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "syndFB_teleport" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership/control) +"mzs" = ( +/obj/machinery/door/window/brigdoor{ + color = "red"; + req_access_txt = "150" + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"mzJ" = ( +/obj/structure/dresser, +/turf/simulated/floor/carpet/purple, +/area/centcom/ss220/general) +"mAo" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/tree/jungle, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"mAN" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"mAS" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red{ + color = "#aa2222"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcornersalt" + }, +/area/syndicate_mothership/cargo) +"mBg" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/syndicate, +/obj/item/multitool, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"mBi" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/admin1) +"mBD" = ( +/obj/machinery/door/airlock/hatch/syndicate/command{ + name = "Тюрьма"; + id_tag = "syndicate_jail_airlock_ext"; + autoclose = 0; + locked = 1 + }, +/obj/machinery/access_button{ + autolink_id = "syndicate_jail_button_ext"; + name = "Jail Access Button"; + req_access_txt = "153"; + pixel_x = -25 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brownoldfull" + }, +/area/syndicate_mothership/jail) +"mCj" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/centcom/ss220/evac) +"mEb" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"mEk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"mED" = ( +/obj/item/folder{ + pixel_x = -4 + }, +/obj/item/folder/blue{ + pixel_y = 3 + }, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/table, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"mFZ" = ( +/turf/simulated/floor/mineral/titanium, +/area/shuttle/syndicate) +"mGe" = ( +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/elite_squad) +"mGK" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/effect/turf_decal/woodsiding, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"mGP" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"mGW" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/lwap{ + pixel_x = -6 + }, +/obj/item/gun/energy/lwap{ + pixel_x = 6 + }, +/obj/item/gun/energy/lwap, +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"mHs" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"mIc" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/machinery/shower{ + pixel_y = 20 + }, +/obj/effect/turf_decal/miscellaneous/plumbing{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/elite_squad) +"mJj" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowfull" + }, +/area/centcom/ss220/admin2) +"mKA" = ( +/obj/structure/table/reinforced, +/obj/item/stamp/syndicate, +/obj/item/stamp/chameleon{ + pixel_x = 10; + pixel_y = 10 + }, +/obj/item/syndicatedetonator{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/control) +"mKP" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen/multi{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/clipboard{ + pixel_x = 3; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"mLi" = ( +/obj/structure/shuttle/engine/propulsion/burst/left, +/turf/simulated/floor/plating/airless, +/area/shuttle/specops) +"mLx" = ( +/turf/simulated/floor/carpet/black, +/area/wizard_station) +"mLC" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/kitchen/utensil/spoon{ + pixel_x = 6 + }, +/obj/item/kitchen/utensil/fork{ + pixel_x = -6 + }, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/admin1) +"mLO" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater, +/turf/simulated/floor/plating/airless, +/area/shuttle/supply) +"mMq" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/structure/bed, +/obj/item/bedsheet/centcom, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/administration) +"mMv" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = 10; + pixel_y = 10 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/stack/sheet/mineral/gold, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/carpet/red, +/area/syndicate_mothership/control) +"mMF" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id_tag = "CC_Armory_Advanced"; + name = "Дополнительный арсенал" + }, +/obj/effect/decal/warning_stripes/red, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"mND" = ( +/obj/machinery/mech_bay_recharge_port, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"mNR" = ( +/turf/simulated/floor/plasteel/dark, +/area/ninja/outpost) +"mNS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"mNX" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/tape_roll, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"mOo" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/musician/piano, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/bar) +"mPw" = ( +/obj/machinery/door/airlock/centcom{ + name = "Офис"; + req_one_access_txt = "101" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"mQn" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/transport) +"mQq" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo13" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"mRd" = ( +/obj/structure/closet/syndicate/sst, +/obj/item/ammo_box/magazine/mm556x45/bleeding, +/obj/item/ammo_box/magazine/mm556x45, +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"mRf" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowaltstrip" + }, +/area/centcom/ss220/supply) +"mRk" = ( +/obj/machinery/door/poddoor/multi_tile/four_tile_hor{ + id_tag = "nukeop_ready" + }, +/obj/machinery/shieldwall{ + dir = 8; + icon = 'icons/effects/beam.dmi'; + icon_state = "n_beam" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"mRM" = ( +/turf/simulated/floor/plasteel{ + color = "gray"; + dir = 4; + icon_state = "rampbottom" + }, +/area/syndicate_mothership/outside) +"mRS" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/centcom/ss220/general) +"mSm" = ( +/obj/effect/decal/nanotrasen_logo/n2, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"mSq" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Казино" + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/bar) +"mSA" = ( +/turf/simulated/wall/indestructible/fakeglass, +/area/ninja/outpost) +"mSP" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"mTB" = ( +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/syndicate_mothership/outside) +"mTN" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkbluecornersalt" + }, +/area/centcom/ss220/admin3) +"mTZ" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/bar) +"mUc" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"mUz" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"mVr" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"mXk" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "СС_Jail_2"; + name = "Камера 2" + }, +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/jail) +"mXp" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/paper{ + info = "Комната копипастнута с парашизы. Много чего что есть в билде, тут может отсутствовать, потому что всем лень изучать, особенно мне. /Если ты заметишь что тут чего-то нет, напиши мне в карточную или разрабскую. /-Aylong"; + name = "Напоминалка" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"mXv" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/decorations/sticky_decorations/flammable/googlyeyes, +/turf/simulated/floor/carpet/purple, +/area/wizard_station) +"mZw" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/stack/telecrystal/fifty{ + amount = 115; + desc = null + }, +/obj/item/stack/telecrystal/fifty{ + amount = 115; + desc = null + }, +/obj/item/reagent_containers/food/snacks/soup/beetsoup{ + desc = "Со вкусом политических убийств"; + name = "Борщ"; + pixel_y = 16 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/stack/spacecash{ + amount = 1e+006; + desc = "Баксоны максона. Возможно кто-то приобретет пропуск."; + name = "100.000 �������� �������"; + max_amount = 1e+006 + }, +/turf/simulated/floor/carpet/red, +/area/syndicate_mothership/control) +"mZx" = ( +/obj/machinery/computer/camera_advanced/shuttle_docker/ert{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/specops) +"mZG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "syndishuttle_vent"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"mZR" = ( +/obj/machinery/computer/shuttle/ferry{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"nar" = ( +/obj/machinery/cryopod/offstation{ + dir = 2 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"naF" = ( +/obj/structure/table/wood, +/obj/item/candle, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/infteam) +"naJ" = ( +/obj/machinery/door/airlock/titanium{ + aiControlDisabled = 1; + hackProof = 1; + id_tag = "s_docking_airlock"; + name = "Shuttle Hatch" + }, +/turf/simulated/floor/plating, +/area/shuttle/escape) +"nbj" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"nbm" = ( +/obj/machinery/computer/account_database{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark{ + icon_state = "navybluefull" + }, +/area/centcom/ss220/admin2) +"nbn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"nby" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo17" + }, +/obj/effect/turf_decal/woodsiding, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"nbL" = ( +/turf/simulated/floor/mech_bay_recharge_floor, +/area/shuttle/escape) +"nbM" = ( +/obj/machinery/door/airlock/external{ + id_tag = "trade_sol_base"; + name = "Docking Port" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"nbQ" = ( +/obj/structure/chair/sofa/right, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"nbX" = ( +/obj/machinery/cryopod/offstation, +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"ncb" = ( +/obj/machinery/computer/message_monitor{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark{ + icon_state = "navybluefull" + }, +/area/centcom/ss220/admin2) +"nce" = ( +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"ncH" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_r" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/supply) +"ncI" = ( +/obj/structure/light_fake/spot, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"ndh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/spotlight/jade, +/turf/simulated/floor/indestructible/transparent_floor{ + icon_state = "router_dir"; + dir = 8 + }, +/area/shuttle/syndicate) +"ndi" = ( +/obj/effect/bump_teleporter{ + id = "Synd24"; + id_target = "Synd14" + }, +/turf/simulated/floor/plasteel{ + color = "gray"; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"ndl" = ( +/obj/structure/fence/corner{ + invulnerable = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"neF" = ( +/obj/item/gun/rocketlauncher, +/obj/item/gun/rocketlauncher, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/effect/turf_decal/delivery/white, +/obj/structure/rack/gunrack, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"neJ" = ( +/obj/effect/spawner/random_spawners/syndicate/loot{ + spawn_inside = null + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"nfj" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin1) +"nfA" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_r" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/administration) +"nfG" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/box, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"ngM" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcornersalt" + }, +/area/syndicate_mothership/cargo) +"ngT" = ( +/obj/structure/table, +/obj/item/assembly/signaler{ + code = 2; + frequency = 1449; + pixel_x = 8 + }, +/obj/item/restraints/handcuffs{ + pixel_y = 10 + }, +/obj/item/restraints/handcuffs{ + pixel_y = 10 + }, +/obj/item/electropack, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"niG" = ( +/obj/structure/table, +/obj/item/ashtray/glass, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"niK" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/infteam) +"niY" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/delivery/white, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"njR" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + icon_state = "warndarkgreycornerred" + }, +/area/syndicate_mothership) +"nkK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"nkM" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/superbiteburger, +/obj/item/reagent_containers/food/snacks/superbiteburger, +/obj/item/reagent_containers/food/snacks/superbiteburger, +/obj/item/reagent_containers/food/snacks/superbiteburger, +/obj/item/reagent_containers/food/snacks/superbiteburger, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"nkS" = ( +/obj/structure/bookcase/sop, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"nkW" = ( +/obj/structure/rack/holorack, +/obj/item/storage/belt/chameleon{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/belt/chameleon, +/obj/item/storage/belt/chameleon{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/box/white, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"nlb" = ( +/obj/effect/spawner/random_spawners/syndicate/loot{ + spawn_inside = null + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership) +"nlc" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/gamma/space) +"nlm" = ( +/obj/structure/flora/rock/pile/largejungle, +/turf/simulated/floor/grass/jungle/no_creep, +/area/wizard_station) +"nlQ" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/indestructible + }, +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/evac) +"nlX" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkbluecorners" + }, +/area/centcom/ss220/bar) +"nmC" = ( +/obj/machinery/economy/vending/nta, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredfull" + }, +/area/centcom/ss220/admin3) +"nmP" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin1) +"nnF" = ( +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"nnM" = ( +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowfull" + }, +/area/centcom/ss220/admin2) +"nnO" = ( +/obj/machinery/door_control/no_emag{ + wires = 1; + emagged = 1; + req_access_txt = "153"; + pixel_y = -30; + id = "nukeop_outside"; + name = "ATOM Outside Doors" + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"nnU" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"noC" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Библиотека" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"noE" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"noT" = ( +/obj/structure/table/abductor, +/obj/effect/spawner/lootdrop/CCfood/desert, +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/turf/simulated/floor/fakespace, +/area/centcom/ss220/bar) +"noX" = ( +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"npf" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"npy" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo15" + }, +/obj/effect/turf_decal/woodsiding{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"npS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/kirbyplants, +/obj/structure/window/reinforced{ + layer = 4.2 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/bar) +"npT" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 8 + }, +/obj/item/paper_bin/syndicate{ + pixel_y = 7 + }, +/obj/item/pen/multi/gold, +/obj/structure/table/wood/fancy/black, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"nqg" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"nrf" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo12" + }, +/obj/effect/turf_decal/siding/black{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"nrg" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"nrh" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/syndicate{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/multitool{ + pixel_x = 11; + pixel_y = 5 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"nrC" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Cargo Shuttle" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"nrJ" = ( +/obj/item/flag/nt, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/bar) +"nse" = ( +/obj/structure/table/reinforced, +/obj/machinery/kitchen_machine/microwave{ + layer = 5; + pixel_x = -1; + pixel_y = 7 + }, +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"nsJ" = ( +/obj/machinery/economy/vending/nta/blue, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"ntq" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "darkyellowalt" + }, +/area/centcom/ss220/supply) +"ntK" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warndarkgreycornerred" + }, +/area/syndicate_mothership/infteam) +"ntY" = ( +/obj/machinery/computer/communications{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"nuK" = ( +/obj/structure/rack, +/obj/item/grenade/empgrenade{ + pixel_x = -5; + pixel_y = 13 + }, +/obj/item/grenade/empgrenade{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/grenade/empgrenade{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/grenade/empgrenade{ + pixel_x = 8; + pixel_y = 13 + }, +/obj/item/grenade/empgrenade{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/grenade/empgrenade{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/machinery/door_control/no_emag/south{ + id = "CC_Armory_Advanced"; + name = "Оружейная - Дополнительный аренал"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"nuW" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/decal/syndie_logo{ + icon_state = "logo14" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"nvA" = ( +/obj/structure/table/glass, +/obj/item/pizzabox/margherita{ + pixel_y = 10 + }, +/obj/item/pizzabox/meat{ + pixel_y = 14 + }, +/obj/item/pizzabox/pepperoni{ + pixel_y = 18 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"nwi" = ( +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership) +"nwV" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"nyb" = ( +/obj/structure/flora/junglebush/large{ + pixel_y = -8 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"nyl" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/centcom/ss220/evac) +"nyC" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/o2{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/shuttle/escape) +"nyE" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/clothing/gloves/ring/gold{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/clothing/gloves/ring/gold, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/carpet/red, +/area/syndicate_mothership/control) +"nzh" = ( +/obj/structure/chair/stool/bar/dark{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership/elite_squad) +"nzr" = ( +/obj/structure/bookcase/manuals, +/obj/item/book/manual/wiki/sop_service, +/obj/item/book/manual/wiki/sop_security, +/obj/item/book/manual/wiki/sop_science, +/obj/item/book/manual/wiki/sop_medical, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"nzJ" = ( +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/general) +"nAj" = ( +/obj/machinery/door/airlock/bathroom{ + name = "Туалеты" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/centcom/ss220/evac) +"nAJ" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/machinery/computer/camera_advanced{ + dir = 4 + }, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/administration) +"nBx" = ( +/obj/structure/table/reinforced, +/obj/item/borg/upgrade/selfrepair, +/obj/item/borg/upgrade/selfrepair, +/obj/item/stock_parts/cell/bluespace, +/obj/item/stock_parts/cell/bluespace, +/obj/item/borg/upgrade/vtec, +/obj/item/borg/upgrade/vtec, +/obj/item/storage/toolbox/drone{ + pixel_y = 14 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"nBZ" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/shuttle/escape) +"nCv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"nCM" = ( +/obj/structure/light_fake{ + dir = 1 + }, +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warndarkgreycornerred" + }, +/area/syndicate_mothership) +"nCS" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "navybluecorners" + }, +/area/centcom/ss220/admin3) +"nCV" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"nDd" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/specops) +"nDq" = ( +/obj/item/kirbyplants, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/shuttle/escape) +"nDw" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin2) +"nDz" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/snacks/bananacakeslice{ + pixel_y = 4 + }, +/obj/item/kitchen/utensil/fork{ + pixel_x = -12; + pixel_y = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"nEq" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredalt" + }, +/area/centcom/ss220/jail) +"nFa" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs/cable/zipties, +/obj/item/flash, +/obj/effect/landmark/spawner/commando_manual, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"nFp" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/trader_station/sol) +"nFN" = ( +/obj/structure/mirror{ + pixel_x = -30 + }, +/obj/structure/sink/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership) +"nGa" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/monitor{ + dir = 4; + name = "Grid Power Monitoring Computer" + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowfull" + }, +/area/centcom/ss220/admin2) +"nGg" = ( +/obj/machinery/door_control/no_emag/east{ + id = "CC_Armory"; + name = "Оружейная"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"nGl" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"nGr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/delivery/white, +/obj/effect/spawner/random_spawners/syndicate/loot{ + spawn_inside = null + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"nGz" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"nGA" = ( +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"nGB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"nHr" = ( +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"nHv" = ( +/obj/structure/table/glass, +/obj/item/storage/secure/briefcase, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"nHx" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"nHO" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"nHX" = ( +/obj/structure/table/reinforced{ + color = "#444444" + }, +/obj/item/storage/toolbox/syndicate{ + pixel_y = 7 + }, +/obj/item/stack/sheet/glass{ + amount = 10 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"nID" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/toy/plushie/orange_fox, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/bar) +"nIM" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel/freezer, +/area/trader_station/sol) +"nJs" = ( +/obj/structure/chair/sofa/corner{ + dir = 8 + }, +/obj/effect/turf_decal/box/red/corners, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"nKl" = ( +/turf/simulated/floor/carpet/royalblack, +/area/centcom/ss220/admin1) +"nKL" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluecorners" + }, +/area/centcom/ss220/bar) +"nLl" = ( +/obj/machinery/chem_dispenser/upgraded, +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"nLF" = ( +/obj/structure/sink/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"nMa" = ( +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/syndicate_mothership/outside) +"nMt" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"nML" = ( +/obj/machinery/door/poddoor/impassable{ + density = 0; + icon_state = "open"; + id_tag = "syndFB_lockdown"; + opacity = 0 + }, +/turf/simulated/wall/indestructible/opsglass, +/area/syndicate_mothership/control) +"nMU" = ( +/obj/item/flag/nt, +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "darkgreen" + }, +/area/centcom/ss220/admin3) +"nNd" = ( +/obj/structure/closet/syndicate/sst, +/obj/item/ammo_box/magazine/mm556x45/bleeding, +/obj/item/ammo_box/magazine/mm556x45, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"nNB" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredfull" + }, +/area/centcom/ss220/admin2) +"nNU" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin/syndicate{ + pixel_y = 7 + }, +/obj/item/pen/fancy, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/control) +"nOa" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"nOJ" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"nOK" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo6" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"nPa" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo11" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"nPy" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"nPB" = ( +/obj/machinery/computer/emergency_shuttle, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"nPO" = ( +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/admin3) +"nPQ" = ( +/obj/structure/table/wood/fancy/black, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"nQx" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/soda/upgraded{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"nRk" = ( +/obj/machinery/kitchen_machine/oven/upgraded, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"nRE" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/syndicate_mothership/outside) +"nRS" = ( +/obj/effect/turf_decal/delivery/white, +/obj/effect/spawner/random_spawners/syndicate/loot{ + spawn_inside = null + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"nSc" = ( +/obj/effect/decal/warning_stripes/white, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "CC_Armory_Green"; + name = "Amber" + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkgreenfull" + }, +/area/centcom/ss220/admin3) +"nSk" = ( +/obj/structure/chair/comfy/purp{ + dir = 4 + }, +/obj/effect/decal/syndie_logo{ + icon_state = "logo8" + }, +/obj/effect/landmark/spawner/syndicateofficer, +/obj/effect/turf_decal/siding/black{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"nSl" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/carpet/royalblue, +/area/shuttle/trade/sol) +"nSN" = ( +/obj/structure/chair/sofa/left, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"nSZ" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/flashlight/lamp/green/off{ + layer = 3.1; + pixel_x = 4; + pixel_y = 12 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"nTf" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -30 + }, +/obj/effect/decal/syndie_logo{ + icon_state = "logo9" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"nTz" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"nUg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/syndicate) +"nUA" = ( +/obj/structure/table/wood, +/obj/machinery/kitchen_machine/microwave/upgraded{ + pixel_y = 5 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership) +"nUM" = ( +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"nVW" = ( +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership/infteam) +"nWw" = ( +/obj/machinery/abductor/pad{ + team = 2 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"nWQ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/toxins, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"nWT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/box/white, +/obj/machinery/door/poddoor/impassable{ + id_tag = "SST_armory_mech_maintenance"; + name = "SST Armory Mech Maintenance" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"nXD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"nXJ" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"nZe" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/beer/upgraded{ + pixel_y = 6 + }, +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"nZh" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 5; + water_overlay_image = null + }, +/area/centcom/ss220/evac) +"nZk" = ( +/obj/structure/table/reinforced, +/obj/structure/light_fake/spot{ + dir = 8 + }, +/obj/item/reagent_containers/food/snacks/sliceable/limecake{ + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"nZB" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredaltstrip" + }, +/area/centcom/ss220/jail) +"nZX" = ( +/obj/machinery/shieldwall{ + dir = 8; + icon = 'icons/effects/beam.dmi'; + icon_state = "n_beam" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"oah" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/ore_box, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"oaz" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/syndicate_mothership/outside) +"obm" = ( +/obj/structure/chair/comfy/red{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcade, +/area/trader_station/sol) +"obD" = ( +/obj/structure/flora/rock/jungle, +/obj/structure/flora/junglebush, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"ocR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/delivery/white, +/obj/structure/ore_box, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"ocT" = ( +/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/sit{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_sit) +"odq" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"odA" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo17" + }, +/obj/effect/turf_decal/siding/black, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"oea" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo11" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"ofZ" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin3) +"ogD" = ( +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/elite_squad) +"ogO" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 8 + }, +/obj/machinery/photocopier/faxmachine/longrange/syndie{ + department = "Syndicate" + }, +/obj/structure/table/wood/fancy/black, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"ohc" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"ohV" = ( +/obj/machinery/computer/shuttle/sst, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"ois" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CC_Conf" + }, +/turf/simulated/floor/plating, +/area/centcom/ss220/admin2) +"oiH" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/structure/chair/comfy/shuttle, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/shuttle/administration) +"oiT" = ( +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/syndicatedetonator{ + pixel_x = 4 + }, +/obj/structure/table/wood/poker, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership) +"oju" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/delivery/white, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"okp" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion_r" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/syndicate_sit) +"oks" = ( +/obj/structure/statue/mooniverse{ + layer = 4; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding."; + dir = 4; + icon_state = "plaque"; + name = "Comemmorative Plaque" + }, +/area/centcom/ss220/park) +"okW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"olw" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/crate/medical, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"olA" = ( +/obj/structure/statue/sandstone/venus{ + color = "#5c5c5c"; + desc = "She lies just out of reach, as always. She somehow has your only toolbox."; + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/basalt/airless, +/area/wizard_station) +"olQ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/infteam) +"omf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"omq" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/obj/item/flag/syndi, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"omY" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/spawner/aroomwarp, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/admin1) +"ond" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredalt" + }, +/area/centcom/ss220/jail) +"onr" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo11" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"onu" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"onE" = ( +/obj/machinery/door/airlock/bathroom{ + id_tag = "cc_toilet_3"; + name = "Туалет" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/centcom/ss220/evac) +"onI" = ( +/obj/machinery/door_control/no_emag/west{ + id = "cc_toilet_3"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/centcom/ss220/evac) +"onL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/economy/vending/boozeomat/syndicate_access, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership) +"ooR" = ( +/obj/structure/closet/crate/internals, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"opo" = ( +/obj/machinery/door/airlock/external{ + aiControlDisabled = 1; + hackProof = 1; + name = "Arrival Airlock" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"opB" = ( +/obj/mecha/combat/marauder/mauler/loaded, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"oqn" = ( +/obj/machinery/door/airlock{ + name = "Кошерная спальна" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"oqA" = ( +/obj/machinery/computer/cryopod{ + pixel_x = 32; + req_access_txt = "150" + }, +/obj/structure/light_fake/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"orn" = ( +/turf/simulated/wall/mineral/plastitanium, +/area/shuttle/syndicate) +"orK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/door_control/no_emag{ + id = "smindicate"; + name = "External Shutters Control"; + pixel_x = -25; + req_access_txt = "150" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "syndishuttle_vent"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"orQ" = ( +/obj/structure/chair/sofa/pew/left{ + dir = 1 + }, +/obj/item/candle/eternal{ + layer = 4; + pixel_x = -12; + pixel_y = 17; + start_lit = 1 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/evac) +"osb" = ( +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/bar) +"osy" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"otw" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin1) +"otG" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"otU" = ( +/obj/machinery/conveyor/west{ + id = "SFBQMLoad" + }, +/obj/machinery/conveyor/east{ + id = "SFBQMLoad" + }, +/obj/machinery/conveyor/south{ + id = "SFBQMLoad" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/cargo) +"ouy" = ( +/turf/simulated/floor/grass/jungle/no_creep, +/area/wizard_station) +"ouY" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"ovn" = ( +/obj/structure/fence/end{ + color = "#b0b7c6"; + dir = 1; + invulnerable = 1 + }, +/obj/structure/fence/post{ + color = "#b0b7c6"; + dir = 4; + invulnerable = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"ovo" = ( +/obj/machinery/optable/abductor, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"ovr" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"ovu" = ( +/obj/structure/fans/tiny/invisible, +/obj/machinery/door/poddoor/impassable{ + id_tag = "SST_pod_ready"; + layer = 2.8; + name = "Shuttle Dock Door" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"ovy" = ( +/obj/machinery/kitchen_machine/grill{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"ovP" = ( +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"ovZ" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/item/bedsheet/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"owu" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo18" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"oxa" = ( +/obj/item/flag/syndi, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"oxb" = ( +/obj/effect/decal/warning_stripes/white, +/obj/machinery/door/airlock/public/glass{ + name = "Жральня" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"oxt" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"oxA" = ( +/obj/structure/bed, +/turf/simulated/floor/plating, +/area/centcom/ss220/jail) +"oyn" = ( +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership/elite_squad) +"oyE" = ( +/obj/machinery/door/airlock/external{ + id_tag = "syndishuttle_door_ext"; + name = "Ship External Access"; + req_access_txt = "150" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "smindicate"; + layer = 5; + name = "Outer Airlock"; + opacity = 0; + closingLayer = 3.11 + }, +/obj/structure/fans/tiny/invisible, +/obj/docking_port/mobile{ + dwidth = 8; + height = 22; + id = "syndicate"; + name = "syndicate shuttle"; + roundstart_move = "syndicate_away"; + width = 18 + }, +/obj/docking_port/stationary/transit{ + dheight = 9; + dwidth = 5; + height = 22; + id = "syndicate_transit"; + name = "syndicate in transit"; + pixel_y = -32; + turf_type = /turf/space/transit/north; + width = 18 + }, +/turf/simulated/floor/plating, +/area/shuttle/syndicate) +"oyM" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/shuttle/escape) +"oyR" = ( +/obj/machinery/computer/shuttle/syndicate, +/obj/effect/decal/syndie_logo{ + icon_state = "logo3" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"oyT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/ore_box, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"ozt" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id_tag = "syndieshutters"; + name = "Blast Shutters" + }, +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/plating, +/area/shuttle/syndicate) +"ozy" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"ozU" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"oAn" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/obj/structure/table, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"oAD" = ( +/obj/mecha/combat/gygax/dark/loaded, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbrown" + }, +/area/centcom/ss220/admin3) +"oAL" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/plating/asteroid/ancient + }, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"oAY" = ( +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"oBa" = ( +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = 32; + pixel_y = -32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = 32; + anchored = 1 + }, +/obj/item/kirbyplants, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 6 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"oBl" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/filingcabinet, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"oCQ" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"oCS" = ( +/obj/machinery/economy/vending/nta/yellow, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkbrown" + }, +/area/centcom/ss220/admin3) +"oCU" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/recharge_station, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"oDo" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo2" + }, +/obj/effect/turf_decal/siding/black{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"oDu" = ( +/obj/structure/railing, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/syndicate_mothership/outside) +"oEC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/delivery/red, +/obj/effect/spawner/random_spawners/syndicate/loot{ + spawn_inside = null + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"oFt" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "podfloor_light" + }, +/area/syndicate_mothership/jail) +"oFZ" = ( +/obj/structure/chair/sofa/right, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"oGb" = ( +/obj/structure/weightmachine/weightlifter, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"oGg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/simulated/floor/carpet/green, +/area/shuttle/trade/sol) +"oGq" = ( +/obj/structure/table/holotable/wood{ + color = "#996633" + }, +/obj/item/reagent_containers/food/snacks/cheeseburger, +/turf/simulated/floor/carpet/black, +/area/trader_station/sol) +"oGr" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"oGx" = ( +/obj/structure/chair/comfy/red{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"oGz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/royalblue, +/area/shuttle/trade/sol) +"oGA" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"oGH" = ( +/obj/structure/table/reinforced, +/obj/item/ammo_box/magazine/m556/arg{ + pixel_y = 4 + }, +/obj/item/ammo_box/magazine/m556/arg{ + pixel_y = 4 + }, +/obj/item/ammo_box/magazine/m556/arg{ + pixel_y = 4 + }, +/obj/item/ammo_box/magazine/m556/arg{ + pixel_y = 4 + }, +/obj/item/ammo_box/magazine/m556/arg{ + pixel_y = 4 + }, +/obj/item/ammo_box/magazine/m556/arg{ + pixel_y = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"oGJ" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredalt" + }, +/area/syndicate_mothership/cargo) +"oGQ" = ( +/obj/structure/table, +/obj/structure/closet/walllocker/medlocker/south, +/obj/item/reagent_containers/applicator/dual{ + pixel_y = 4 + }, +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"oHm" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"oHW" = ( +/obj/effect/turf_decal/box/red, +/obj/machinery/door/window/brigdoor{ + color = "red"; + name = "Riot Control"; + req_access_txt = "156" + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"oHY" = ( +/obj/structure/closet/walllocker/firelocker/east, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"oIt" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"oJk" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowalt" + }, +/area/centcom/ss220/supply) +"oJG" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Библиотекарь" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"oJP" = ( +/obj/structure/table/reinforced, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flashbang, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flashbang/clusterbang/limited, +/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster, +/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkbrown" + }, +/area/centcom/ss220/admin3) +"oJS" = ( +/obj/structure/flora/junglebush, +/turf/simulated/floor/grass/jungle/no_creep, +/area/wizard_station) +"oKb" = ( +/obj/structure/table, +/obj/item/reagent_containers/applicator/dual{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/reagent_containers/applicator/dual{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"oKw" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"oKL" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 4 + }, +/obj/machinery/computer/crew{ + pixel_x = -6; + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"oMj" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo15" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"oMo" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/purple, +/area/centcom/ss220/general) +"oMN" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/pen/multi/fountain, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"oMY" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/carpet, +/area/centcom/ss220/evac) +"oOM" = ( +/obj/machinery/computer/emergency_shuttle, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/shuttle/escape) +"oOS" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 1 + }, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"oPH" = ( +/obj/structure/closet/emcloset, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/ss220/admin1) +"oPO" = ( +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"oPQ" = ( +/obj/structure/light_fake{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership) +"oQC" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/trader_station/sol) +"oQS" = ( +/obj/effect/decal/nanotrasen_logo/n1, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"oQT" = ( +/obj/mecha/combat/durand, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"oRl" = ( +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"oRq" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo13" + }, +/obj/effect/turf_decal/woodsiding{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"oRM" = ( +/obj/machinery/door/airlock/external{ + aiControlDisabled = 1; + hackProof = 1; + id_tag = "emergency_away"; + name = "Arrival Airlock" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"oSk" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/infteam) +"oSz" = ( +/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"oSJ" = ( +/obj/structure/statue/sandstone/assistant{ + anchored = 1; + desc = "Он точно не спит на посту"; + icon = 'icons/mob/simple_human.dmi'; + icon_state = "syndicate_smg"; + max_integrity = 9999; + name = "Биба"; + obj_integrity = 9999 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"oTb" = ( +/obj/structure/chair/sofa/bench/right{ + cover_color = "#68452a"; + dir = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"oTu" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbluecornersalt" + }, +/area/centcom/ss220/admin1) +"oTz" = ( +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"oTA" = ( +/turf/simulated/wall/indestructible/wood, +/area/wizard_station) +"oTB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/recharge_station/upgraded, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"oTI" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/plasteel/freezer, +/area/trader_station/sol) +"oUn" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/centcom/ss220/evac) +"oUG" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/bar) +"oUL" = ( +/turf/simulated/wall/indestructible/wood, +/area/ninja/outpost) +"oUP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"oUX" = ( +/obj/machinery/computer/camera_advanced{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"oVv" = ( +/obj/structure/chair/sofa/corp/left, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"oVH" = ( +/obj/machinery/door/airlock/centcom{ + name = "Блокпост"; + req_one_access_txt = "101" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"oWo" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcornersalt" + }, +/area/syndicate_mothership/jail) +"oWC" = ( +/obj/structure/chair/sofa/bench/left{ + cover_color = "#404144"; + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"oWM" = ( +/obj/machinery/economy/vending/syndisnack, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"oXh" = ( +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"oXo" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"oYe" = ( +/obj/structure/toilet, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"oYp" = ( +/obj/structure/flora/tree/jungle, +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"oYr" = ( +/obj/effect/spawner/random_spawners/syndicate/loot{ + spawn_inside = null + }, +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"oYs" = ( +/obj/structure/table/glass, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Central Command"; + pixel_y = 4; + req_one_access = list(101) + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"oYJ" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/stack/tape_roll{ + pixel_x = -11 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"oYY" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/indestructible + }, +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/general) +"oZd" = ( +/obj/structure/light_fake, +/obj/machinery/door_control/no_emag{ + pixel_y = -32; + id = "SST_armory_main"; + emagged = 1; + wires = 1; + req_access_txt = "153"; + name = "SST Armory" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"oZO" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"oZQ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Покер" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"oZX" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/blue{ + dir = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/general) +"pag" = ( +/obj/item/implanter/adrenalin{ + pixel_x = 12; + pixel_y = -12 + }, +/obj/item/implanter/emp{ + pixel_x = 9; + pixel_y = -9 + }, +/obj/item/implanter/explosive{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/implanter/explosive_macro{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/implanter/freedom, +/obj/item/implanter/krav_maga{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/implanter/mindshield{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/implanter/storage{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/structure/rack/holorack, +/obj/effect/turf_decal/box/white, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"pai" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/candle/eternal/wizard, +/obj/effect/turf_decal/woodsiding{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"paM" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding/corner{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"pbw" = ( +/obj/structure/table/reinforced{ + color = "#444444" + }, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_sit) +"pbI" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkbluecornersalt" + }, +/area/syndicate_mothership/elite_squad) +"pbV" = ( +/obj/machinery/iv_drip, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/syndicate) +"pcg" = ( +/obj/structure/chair/sofa, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"pcj" = ( +/obj/effect/decal/warning_stripes/yellow, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"pcm" = ( +/obj/machinery/economy/vending/wallmed/syndicate{ + pixel_y = -30 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"pcL" = ( +/obj/machinery/abductor/experiment{ + team = 2 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"pcT" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"pda" = ( +/obj/machinery/fishtank/wall{ + opacity = 1 + }, +/obj/structure/sign/barsign{ + icon_state = "syndibarsign"; + pixel_y = 32; + tag = "syndibarsign" + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership/elite_squad) +"pdj" = ( +/obj/machinery/economy/vending/snack, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"pdv" = ( +/obj/structure/chair/comfy/corp, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"pdx" = ( +/obj/structure/light_fake/small, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"pdR" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/syndicate_mothership/outside) +"pez" = ( +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"pfz" = ( +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/evac) +"pfP" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/turf/simulated/floor/plasteel/freezer, +/area/ninja/holding) +"pfZ" = ( +/turf/simulated/floor/plasteel{ + color = "gray"; + dir = 8; + icon_state = "rampbottom" + }, +/area/syndicate_mothership/outside) +"pgS" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/shuttle/escape) +"pgY" = ( +/obj/machinery/bodyscanner{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"phh" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"phi" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/nitrogen, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"phn" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin2) +"phM" = ( +/obj/structure/bookcase/manuals/medical, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"piG" = ( +/obj/effect/turf_decal/loading_area, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/cargo) +"pkq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/poddoor/impassable{ + id_tag = "syndFB_tool" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"plv" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/spawner/syndie, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership) +"plL" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + pixel_y = 7 + }, +/obj/structure/table/wood, +/obj/item/candle/eternal{ + start_lit = 1 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/evac) +"pmM" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/economy/vending/wallmed/syndicate{ + pixel_y = -30 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"pmY" = ( +/obj/structure/curtain/open/shower/security, +/turf/simulated/wall/indestructible/fakeglass, +/area/trader_station/sol) +"pnR" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecornersalt" + }, +/area/syndicate_mothership/elite_squad) +"poB" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/carbon_dioxide, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"poD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/infteam) +"ppK" = ( +/obj/machinery/economy/vending/coffee/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/general) +"ppW" = ( +/obj/structure/flora/junglebush, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"pqD" = ( +/obj/machinery/porta_turret/centcom{ + color = "#666666"; + faction = "syndicate"; + lethal = 1; + name = "Syndicate Defence Laser Turret"; + reqpower = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/cargo) +"pqN" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/curtain/medical, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"pqS" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/machinery/status_display/directional/north, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/item/ammo_box/shotgun/buck, +/obj/item/ammo_box/shotgun/buck, +/obj/item/ammo_box/shotgun/buck, +/obj/item/gun/projectile/shotgun/automatic/combat, +/obj/item/gun/projectile/shotgun/automatic/combat, +/obj/item/gun/projectile/shotgun/automatic/combat, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/gamma/space) +"pqU" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/reagent_containers/food/drinks/bottle/wine, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 8 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -5 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"pqW" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"pri" = ( +/obj/machinery/door/poddoor/multi_tile/two_tile_ver{ + id_tag = "nukeop_outside" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"psX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"ptx" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/evac) +"ptF" = ( +/obj/effect/turf_decal/box/red, +/obj/machinery/door/window/brigdoor{ + color = "red"; + name = "Riot Control"; + req_access_txt = "156" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"ptP" = ( +/obj/item/flag/syndi, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"pub" = ( +/obj/structure/chair/stool, +/obj/effect/decal/syndie_logo{ + icon_state = "logo7" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"puf" = ( +/obj/effect/decal/warning_stripes/red/partial{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"pur" = ( +/obj/machinery/cryopod/offstation, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"puM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/access_button{ + autolink_id = "syndishuttle_btn_ext"; + pixel_x = -25 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"pvL" = ( +/obj/structure/table/wood, +/obj/item/candle/eternal/wizard{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/simulated/floor/carpet/black, +/area/wizard_station) +"pvN" = ( +/obj/structure/rack, +/obj/item/grenade/clusterbuster/emp{ + pixel_y = 12 + }, +/obj/item/grenade/clusterbuster/emp{ + pixel_y = 8 + }, +/obj/item/grenade/clusterbuster/emp{ + pixel_y = 4 + }, +/obj/machinery/door_control/no_emag/north{ + color = "#ffbf80"; + id = "CC_Armory_Epsilon"; + name = "Оружейная - Уровень 4"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"pwb" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/effect/landmark/spawner/soltrader, +/obj/item/bedsheet/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"pwc" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"pwe" = ( +/obj/structure/closet/l3closet/security, +/obj/item/watertank/janitor, +/obj/item/watertank/janitor, +/obj/item/watertank/janitor, +/obj/item/watertank/janitor, +/obj/item/reagent_containers/spray/cleaner/advanced, +/obj/item/reagent_containers/spray/cleaner/advanced, +/obj/item/reagent_containers/spray/cleaner/advanced, +/obj/item/reagent_containers/spray/cleaner/advanced, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkpurplefull" + }, +/area/centcom/ss220/admin3) +"pwz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"pwL" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"pxu" = ( +/obj/effect/turf_decal/siding/black{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + color = "gray"; + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership/outside) +"pxW" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/soda/upgraded{ + dir = 8 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership) +"pxZ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"pyl" = ( +/obj/structure/closet/crate/secure/bin{ + color = "36373a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"pyC" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/trade_sol/civ, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"pzc" = ( +/obj/structure/chair/sofa/bench{ + cover_color = "#404144"; + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"pzN" = ( +/obj/machinery/door_control/no_emag/west{ + id = "CC_Armory"; + name = "Оружейная"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkbluealtstrip" + }, +/area/centcom/ss220/admin3) +"pAE" = ( +/obj/machinery/pdapainter, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"pAW" = ( +/obj/docking_port/stationary/transit{ + dwidth = 3; + height = 7; + id = "steel_rain_transit"; + name = "steel_rain in transit"; + width = 7 + }, +/turf/space/transit/horizontal, +/area/space/centcomm) +"pBC" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 1 + }, +/obj/effect/decal/syndie_logo{ + icon_state = "logo7" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"pBG" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"pBP" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"pCf" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding/corner{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"pCJ" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"pCO" = ( +/obj/item/grenade/spawnergrenade/manhacks, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/infteam) +"pCS" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/elite_squad) +"pCX" = ( +/obj/item/flag/nt, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"pEW" = ( +/obj/machinery/suit_storage_unit/syndicate, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"pEY" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"pFk" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/jail) +"pFM" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/bar) +"pGe" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/syndicate_mothership/outside) +"pGu" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"pGW" = ( +/obj/structure/chair/sofa/bench/right{ + cover_color = "#68452a"; + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"pHV" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"pIL" = ( +/obj/machinery/door/airlock/centcom{ + name = "Брифинг"; + req_one_access_txt = "109" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"pIZ" = ( +/obj/machinery/computer/card/minor/cmo{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluefull" + }, +/area/centcom/ss220/admin2) +"pJf" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/bar) +"pJi" = ( +/obj/machinery/autolathe/upgraded/gamma, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/gamma/space) +"pJy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"pJU" = ( +/obj/structure/table/wood, +/obj/item/tank/internals/emergency_oxygen/double/vox, +/obj/item/clothing/mask/breath/vox, +/obj/item/candle/eternal/wizard{ + pixel_y = 11 + }, +/turf/simulated/floor/carpet/black, +/area/wizard_station) +"pKe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/royalblue, +/area/shuttle/trade/sol) +"pKg" = ( +/obj/item/flag/syndi, +/obj/machinery/door_control/no_emag{ + id = "syndFB_teleport1"; + name = "Teleporter"; + wires = 1; + specialfunctions = 4; + req_access_txt = "153"; + pixel_y = 32; + emagged = 1 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding/corner{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"pKm" = ( +/obj/item/kirbyplants, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/elite_squad) +"pLm" = ( +/obj/structure/table, +/obj/item/circular_saw, +/obj/item/surgicaldrill{ + pixel_y = 5 + }, +/obj/item/kitchen/utensil/fork, +/obj/item/kitchen/utensil/spoon, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/structure/light_fake/small{ + dir = 4; + light_range = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"pMa" = ( +/obj/machinery/computer/shuttle/syndicate/drop_pod, +/turf/simulated/wall/mineral/plastitanium, +/area/shuttle/assault_pod) +"pMf" = ( +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership/infteam) +"pMg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"pMK" = ( +/obj/effect/spawner/lootdrop/trade_sol/vehicle, +/turf/simulated/floor/wood/fancy/birch, +/area/shuttle/trade/sol) +"pMO" = ( +/obj/structure/closet/cabinet{ + req_one_access_txt = "153" + }, +/obj/item/clothing/gloves/combat, +/obj/item/radio/headset/syndicate/alt/syndteam, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/shoes/centcom{ + desc = null; + name = "Dress shoes" + }, +/obj/item/clothing/under/syndicate, +/obj/item/card/id/syndicate/command, +/obj/structure/light_fake{ + dir = 1 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"pMS" = ( +/obj/structure/flora/tree/jungle, +/obj/item/flashlight/lantern{ + anchored = 1; + light_color = "#FF9F40"; + on = 1; + pixel_x = 10; + pixel_y = 14 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"pMU" = ( +/obj/effect/decal/cleanable/molten_object/large, +/obj/effect/decal/remains/human, +/turf/simulated/floor/grass/jungle/no_creep, +/area/wizard_station) +"pNh" = ( +/obj/structure/shuttle/engine/propulsion/burst/right, +/turf/simulated/floor/plating/airless, +/area/shuttle/specops) +"pNo" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"pNp" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/hud/security/sunglasses{ + pixel_y = 10 + }, +/obj/item/clothing/glasses/hud/security/sunglasses{ + pixel_y = 6 + }, +/obj/item/clothing/glasses/hud/security/sunglasses{ + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/security/sunglasses{ + pixel_y = -2 + }, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"pNx" = ( +/obj/structure/table/wood, +/obj/item/kitchen/knife, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/elite_squad) +"pNy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/sofa/bench/left, +/obj/structure/sign/double/map/right{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/elite_squad) +"pOi" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"pOA" = ( +/obj/docking_port/stationary/transit{ + dir = 8; + dwidth = 2; + height = 11; + id = "trade_sol_transit"; + name = "trade_sol in transit"; + turf_type = /turf/space/transit/horizontal; + width = 5 + }, +/turf/space/transit/horizontal, +/area/space/centcomm) +"pON" = ( +/obj/structure/rack, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/obj/item/gun/energy/mindflayer{ + pixel_y = 12 + }, +/obj/item/gun/energy/mindflayer{ + pixel_y = 6 + }, +/obj/item/gun/energy/mindflayer, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"pOU" = ( +/obj/structure/safe, +/obj/item/stack/spacecash{ + amount = 1000000; + max_amount = 1000000; + name = "Мильён" + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"pOV" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -30 + }, +/obj/item/pizzabox/pepperoni, +/obj/item/pizzabox/margherita, +/obj/item/kitchen/knife, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership) +"pPb" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Зоопарк" + }, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"pPs" = ( +/obj/machinery/computer/camera_advanced{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"pPv" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"pPJ" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/plating/asteroid/ancient + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"pQc" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/snacks/bigbiteburger{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"pQt" = ( +/obj/structure/rack, +/obj/item/clothing/under/plasmaman/wizard, +/obj/item/clothing/head/helmet/space/plasmaman/wizard, +/obj/item/clothing/mask/breath, +/obj/item/tank/internals/plasmaman/belt/full, +/turf/simulated/floor/carpet/black, +/area/wizard_station) +"pQE" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id_tag = "syndieshutters"; + name = "Blast Shutters" + }, +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/plating, +/area/shuttle/syndicate) +"pQR" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"pRh" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/ammo_box/magazine/smgm9mm, +/obj/item/ammo_box/magazine/smgm9mm, +/obj/item/ammo_box/magazine/smgm9mm, +/obj/item/gun/projectile/automatic/proto, +/obj/item/gun/projectile/automatic/proto, +/obj/item/gun/projectile/automatic/proto, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/gamma/space) +"pSB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/wheelchair/bike{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"pSO" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo10" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"pTm" = ( +/obj/machinery/cryopod/offstation{ + icon_state = "sleeper_s"; + occupied_icon_state = "sleeper_s"; + dir = 1; + base_icon_state = "sleeper_s-open" + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"pTT" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "SST_to_ATOM" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/elite_squad) +"pTW" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating/airless, +/area/shuttle/escape) +"pUg" = ( +/obj/structure/flora/junglebush, +/turf/simulated/floor/grass/jungle/no_creep, +/area/centcom/ss220/park) +"pUk" = ( +/turf/simulated/wall/indestructible/opsglass, +/area/syndicate_mothership) +"pUQ" = ( +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership) +"pVD" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"pWr" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/curtain/medical, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"pWD" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/obj/machinery/door/poddoor{ + id_tag = "SIT_ready"; + name = "Shuttle Dock Door"; + layer = 3.11; + closingLayer = 3.11 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/infteam) +"pXL" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/gun/medbeam, +/obj/item/gun/medbeam, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/gamma/space) +"pXM" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"pXR" = ( +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/infteam) +"pYa" = ( +/obj/effect/landmark/abductor/scientist{ + team = 3 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"pYp" = ( +/obj/machinery/door/airlock/external{ + id_tag = "s_docking_airlock"; + name = "Shuttle Hatch"; + req_access_txt = "109" + }, +/obj/docking_port/mobile{ + dir = 2; + dwidth = 2; + height = 11; + id = "specops"; + name = "ert shuttle"; + width = 5 + }, +/obj/structure/fans/tiny, +/obj/docking_port/stationary{ + dir = 2; + dwidth = 2; + height = 11; + id = "specops_away"; + name = "centcom bay 3"; + width = 5 + }, +/turf/simulated/floor/plating, +/area/shuttle/specops) +"pZO" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkyellowaltstrip" + }, +/area/centcom/ss220/supply) +"qah" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"qaj" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/beach/away/coastline{ + water_overlay_image = null + }, +/area/centcom/ss220/evac) +"qal" = ( +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/elite_squad) +"qaA" = ( +/obj/machinery/computer/card{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark{ + icon_state = "navybluefull" + }, +/area/centcom/ss220/admin2) +"qbc" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluealtstrip" + }, +/area/centcom/ss220/admin2) +"qbf" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/cans/cola, +/turf/simulated/floor/plasteel/freezer, +/area/ninja/holding) +"qbl" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo12" + }, +/obj/effect/turf_decal/siding/black{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"qbU" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/storage/firstaid/tactical, +/turf/simulated/floor/plasteel{ + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"qcs" = ( +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/obj/machinery/economy/vending/cola/free, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"qcz" = ( +/obj/effect/decal/warning_stripes/red, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "CC_Armory_Epsilon"; + name = "Epsilon" + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbrownfull" + }, +/area/centcom/ss220/admin3) +"qcR" = ( +/obj/machinery/abductor/console{ + team = 1 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"qcW" = ( +/obj/structure/rack, +/obj/item/clothing/accessory/holster{ + pixel_y = 10 + }, +/obj/item/clothing/accessory/holster{ + pixel_y = 8 + }, +/obj/item/clothing/accessory/holster{ + pixel_y = 6 + }, +/obj/item/clothing/accessory/holster{ + pixel_y = 4 + }, +/obj/item/clothing/accessory/holster{ + pixel_y = 2 + }, +/obj/item/clothing/accessory/holster, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"qdx" = ( +/obj/machinery/computer/camera_advanced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"qdM" = ( +/obj/effect/overlay/coconut{ + pixel_y = -14 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 1; + water_overlay_image = null + }, +/area/centcom/ss220/evac) +"qef" = ( +/obj/effect/turf_decal/siding/blue/end, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/bar) +"qem" = ( +/obj/machinery/door_control/no_emag/east{ + id = "СС_Jail_1"; + name = "Камера 1"; + pixel_y = 6 + }, +/obj/machinery/door_control/no_emag/east{ + id = "СС_Jail_2"; + name = "Камера 2"; + pixel_y = -6 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredalt" + }, +/area/centcom/ss220/jail) +"qeu" = ( +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"qew" = ( +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"qeR" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/machinery/computer/operating{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"qfe" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/orange, +/area/centcom/ss220/general) +"qfk" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo11" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"qfq" = ( +/mob/living/simple_animal/pig, +/turf/simulated/floor/plating, +/area/syndicate_mothership/control) +"qfz" = ( +/obj/structure/closet/crate/hydroponics{ + anchored = 1 + }, +/obj/item/hatchet, +/obj/item/hatchet, +/obj/item/hatchet, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/cultivator, +/obj/item/cultivator, +/obj/item/cultivator, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"qfJ" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"qgd" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Стойка выдачи" + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"qgz" = ( +/obj/item/flag/syndi, +/obj/structure/curtain/black{ + pixel_x = 32; + anchored = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"qgA" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/landmark/spawner/ertdirector, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"qgE" = ( +/obj/machinery/hydroponics/constructable, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"qgG" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"qgL" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"qkt" = ( +/obj/structure/light_fake{ + dir = 1 + }, +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + icon_state = "warndarkgreycornerred" + }, +/area/syndicate_mothership) +"qla" = ( +/obj/structure/chair/office/light, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"qlc" = ( +/obj/structure/table/reinforced, +/obj/item/kitchen/sushimat{ + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"qld" = ( +/obj/structure/bookcase/manuals, +/obj/item/book/manual/wiki/sop_legal, +/obj/machinery/door_control/no_emag/north{ + id = "СС_Office_COO"; + name = "Открыть створки"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"qlp" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"qmm" = ( +/obj/machinery/economy/vending/snack/free{ + name = "\improper Wizmore Chocolate Corp" + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"qms" = ( +/obj/structure/table, +/obj/item/storage/toolbox/syndicate{ + pixel_y = 9 + }, +/obj/item/melee/energy/axe, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"qnl" = ( +/obj/structure/mirror{ + pixel_x = 30 + }, +/obj/structure/light_fake/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"qnB" = ( +/obj/structure/rack, +/obj/item/nullrod, +/obj/item/nullrod, +/obj/item/nullrod, +/obj/item/melee/classic_baton, +/obj/item/melee/classic_baton, +/obj/item/melee/classic_baton, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"qnQ" = ( +/obj/machinery/door/poddoor/multi_tile/two_tile_ver{ + id_tag = "Aspid_poddor_right" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"qog" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkbluealt" + }, +/area/syndicate_mothership/elite_squad) +"qol" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkbrown" + }, +/area/centcom/ss220/admin3) +"qpv" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "darkredalt" + }, +/area/centcom/ss220/jail) +"qpB" = ( +/obj/machinery/processor{ + pixel_y = 8 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"qpJ" = ( +/obj/mecha/combat/gygax/dark/loaded, +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkbrown" + }, +/area/centcom/ss220/admin3) +"qqi" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"qqw" = ( +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"qqR" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/delivery/red, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"qqT" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "SST_pod_ready" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/elite_squad) +"qrs" = ( +/obj/structure/table/wood/fancy/black, +/obj/machinery/chem_dispenser/beer{ + pixel_y = 6 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"qrN" = ( +/obj/mecha/combat/marauder/loaded, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"qsg" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"qsi" = ( +/obj/structure/chair/sofa/corner{ + color = "#63009c"; + dir = 6 + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"qsk" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"qsF" = ( +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"qsH" = ( +/obj/item/flag/nt, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/admin1) +"qsK" = ( +/obj/machinery/recharger, +/obj/structure/table/wood, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"quh" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "SIT_outside" + }, +/turf/simulated/floor/plasteel{ + icon_state = "rampbottom" + }, +/area/syndicate_mothership/infteam) +"quL" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"quM" = ( +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"qvc" = ( +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership/elite_squad) +"qvn" = ( +/turf/simulated/floor/plating/asteroid/basalt/airless, +/area/wizard_station) +"qvo" = ( +/turf/simulated/floor/plating/asteroid{ + dir = 8; + icon_state = "asteroidwarning"; + name = "floor" + }, +/area/syndicate_mothership/outside) +"qvv" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"qvx" = ( +/obj/effect/turf_decal/siding/blue/end{ + dir = 1 + }, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/bar) +"qvA" = ( +/mob/living/simple_animal/cow, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"qvO" = ( +/obj/structure/coatrack, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"qwC" = ( +/obj/effect/turf_decal/caution/stand_clear{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"qwF" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkyellowcornersalt" + }, +/area/centcom/ss220/supply) +"qxe" = ( +/obj/effect/turf_decal/box, +/obj/effect/landmark/spawner/nuclear_bomb/syndicate, +/obj/machinery/door/window/brigdoor{ + color = "red"; + name = "Secure Door"; + req_access_txt = "150" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"qyb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/hatch/syndicate/vault{ + req_access_txt = "153"; + name = "Vault" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"qyB" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Лазарет" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/centcom/ss220/general) +"qyK" = ( +/obj/machinery/door/poddoor{ + id_tag = "SST_ready"; + name = "Shuttle Dock Door"; + layer = 3.11; + closingLayer = 3.11 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/elite_squad) +"qyR" = ( +/obj/machinery/economy/vending/medical/syndicate_access, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"qzg" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clipboard{ + pixel_y = 3 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/admin3) +"qAv" = ( +/obj/item/beach_ball, +/turf/simulated/floor/beach/away/sand, +/area/ninja/holding) +"qAw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/access_button{ + autolink_id = "syndishuttle_btn_int"; + pixel_x = -25 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"qAA" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership/elite_squad) +"qAM" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"qAV" = ( +/obj/mecha/combat/marauder/seraph{ + color = "#006666"; + name = "Rocinante" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"qAX" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"qBf" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/centcom/ss220/supply) +"qBC" = ( +/obj/machinery/door/airlock/titanium, +/obj/structure/fans/tiny, +/obj/docking_port/stationary{ + dir = 2; + dwidth = 3; + height = 8; + id = "backup_away"; + name = "Backup Shuttle Dock"; + width = 8 + }, +/obj/docking_port/mobile/emergency/backup{ + dir = 2; + dwidth = 9 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"qBQ" = ( +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/park) +"qCH" = ( +/obj/machinery/porta_turret/syndicate/pod, +/turf/simulated/wall/mineral/plastitanium, +/area/shuttle/assault_pod) +"qCW" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/transport) +"qDc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/spotlight/jade, +/turf/simulated/floor/indestructible/transparent_floor{ + icon_state = "router_dir"; + dir = 4 + }, +/area/shuttle/syndicate) +"qDx" = ( +/obj/structure/dresser, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 5 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"qDD" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding/corner{ + dir = 10 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"qDH" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the Special Ops."; + name = "Special Ops. Monitor"; + network = list("ERT") + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"qEz" = ( +/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"qEQ" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkblue" + }, +/area/centcom/ss220/admin3) +"qEZ" = ( +/obj/structure/light_fake/small{ + dir = 4; + light_range = 6 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/elite_squad) +"qFd" = ( +/obj/machinery/door/window/brigdoor{ + color = "red"; + dir = 8; + req_access_txt = "150"; + name = "Kitchen" + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"qFs" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo11" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"qFx" = ( +/obj/effect/turf_decal/siding/red{ + color = "#aa2222"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"qFC" = ( +/obj/machinery/kitchen_machine/oven{ + pixel_y = 3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"qFS" = ( +/obj/item/radio/intercom/syndicate{ + pixel_x = 28; + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"qGe" = ( +/obj/structure/railing, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"qGr" = ( +/obj/effect/turf_decal/loading_area/white{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/elite_squad) +"qGL" = ( +/mob/living/simple_animal/pig, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"qHl" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"qIo" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/centcom/ss220/general) +"qIv" = ( +/obj/structure/chair/sofa/right, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/elite_squad) +"qIX" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/shuttle/escape) +"qIZ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/syndicate{ + pixel_y = 5 + }, +/obj/item/pen/edagger{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"qJP" = ( +/obj/structure/holohoop{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"qKs" = ( +/obj/structure/closet/secure_closet/guncabinet{ + layer = 2.9; + name = "Automatic Shotgun"; + req_access_txt = "114" + }, +/obj/item/gun/projectile/automatic/shotgun/bulldog, +/obj/item/gun/projectile/automatic/shotgun/bulldog, +/obj/item/gun/projectile/automatic/shotgun/bulldog, +/obj/item/gun/projectile/automatic/shotgun/bulldog, +/obj/item/gun/projectile/automatic/shotgun/bulldog, +/obj/item/gun/projectile/automatic/shotgun/bulldog, +/obj/item/gun/projectile/automatic/shotgun/bulldog, +/obj/item/gun/projectile/automatic/shotgun/bulldog, +/obj/item/gun/projectile/automatic/shotgun/bulldog, +/obj/item/gun/projectile/automatic/shotgun/bulldog, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"qKB" = ( +/obj/structure/light_fake/small{ + light_range = 6 + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/machinery/photocopier/faxmachine/longrange/syndie{ + department = "Syndicate" + }, +/obj/effect/turf_decal/miscellaneous/goldensiding, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"qKJ" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo18" + }, +/obj/effect/turf_decal/woodsiding, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"qLd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/titanium/glass{ + req_one_access_txt = "160" + }, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/carpet/orange, +/area/shuttle/trade/sol) +"qLq" = ( +/obj/structure/table, +/obj/item/paper_bin/nanotrasen{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen/multi/fountain{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/admin1) +"qLF" = ( +/obj/machinery/economy/vending/coffee/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"qLO" = ( +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"qNg" = ( +/obj/structure/bookcase/random, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/carpet/red, +/area/wizard_station) +"qNi" = ( +/obj/structure/curtain/black{ + pixel_x = 32; + pixel_y = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/obj/machinery/economy/vending/syndichem, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"qNp" = ( +/obj/structure/chair/comfy/shuttle/dark, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_sit) +"qNs" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/dogbed, +/mob/living/simple_animal/pet/dog/fox/Syndifox, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"qNB" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/soda/upgraded{ + dir = 8; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"qNC" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/c20r{ + pixel_x = -32 + }, +/obj/effect/decal/syndie_logo{ + icon_state = "logo9" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"qOk" = ( +/obj/structure/closet/chefcloset, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"qPk" = ( +/obj/docking_port/stationary{ + area_type = /area/syndicate_mothership; + dir = 2; + dwidth = 11; + height = 18; + id = "emergency_syndicate"; + name = "404 Not Found"; + width = 29; + turf_type = /turf/simulated/floor/plating + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership) +"qPs" = ( +/obj/structure/table, +/obj/item/clothing/accessory/medal/silver{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/silver{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/silver{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/silver/leadership{ + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/silver/leadership{ + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/silver/leadership{ + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/silver/valor{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/effect/turf_decal/stripes/white/full{ + color = "#b59959" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"qPL" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"qQI" = ( +/obj/machinery/hydroponics/constructable, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"qRh" = ( +/obj/machinery/conveyor/west{ + id = "QMLoad2" + }, +/obj/structure/plasticflaps/mining, +/obj/machinery/door/poddoor{ + id_tag = "QMLoaddoor2"; + name = "Supply Dock Loading Door" + }, +/turf/simulated/floor/plating, +/area/centcom/ss220/supply) +"qRj" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Escape Shuttle Infirmary" + }, +/obj/effect/decal/warning_stripes/south, +/turf/simulated/floor/plasteel, +/area/shuttle/escape) +"qSC" = ( +/obj/structure/table/glass, +/obj/item/clipboard{ + pixel_y = 3 + }, +/obj/item/folder/yellow{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/folder/blue{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_y = 6 + }, +/obj/item/stamp, +/turf/simulated/floor/carpet, +/area/centcom/ss220/admin3) +"qSK" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/machinery/door_control/no_emag{ + pixel_x = 32; + id = "SIT_ready"; + req_access_txt = "150"; + specialfunctions = 4; + wires = 1; + name = "Shuttle Dock Door" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/syndicate_mothership/infteam) +"qST" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"qTt" = ( +/obj/item/flag/med, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/shuttle/escape) +"qTE" = ( +/obj/machinery/door_control/no_emag/south{ + id = "SST_armory_mech_maintenance"; + wires = 1; + req_access_txt = "153"; + emagged = 1; + name = "SST_armory_mech_maintenance" + }, +/obj/machinery/door_control/no_emag{ + pixel_y = -40; + id = "SST_armory_mech_mauler"; + emagged = 1; + wires = 1; + req_access_txt = "153"; + name = "SST Armory Mech Mauler"; + color = "#ff9999" + }, +/obj/machinery/door_control/no_emag{ + pixel_y = -32; + pixel_x = 6; + id = "SST_armory_mech_gygax"; + emagged = 1; + wires = 1; + req_access_txt = "153"; + name = "SST_armory_mech_gygax"; + color = "#ffdd99" + }, +/obj/machinery/door_control/no_emag{ + pixel_y = -32; + pixel_x = -6; + id = "SST_armory_mech_rover"; + emagged = 1; + wires = 1; + req_access_txt = "153"; + name = "SST Armory Mech Rover"; + color = "#9999ff" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"qUK" = ( +/obj/machinery/door/airlock/bathroom, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"qUN" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin1) +"qVk" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin2) +"qWl" = ( +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluefull" + }, +/area/centcom/ss220/admin3) +"qXy" = ( +/obj/structure/table/wood, +/obj/item/razor{ + pixel_x = 10 + }, +/obj/item/candle/eternal/wizard{ + pixel_y = 11 + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"qXJ" = ( +/obj/machinery/door_control/no_emag/east{ + id = "СС_Jail_4"; + name = "Камера 4"; + pixel_y = -6 + }, +/obj/machinery/door_control/no_emag/east{ + id = "СС_Jail_3"; + name = "Камера 3"; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredalt" + }, +/area/centcom/ss220/jail) +"qXK" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/simulated/floor/mineral/abductor, +/area/centcom/ss220/bar) +"qYl" = ( +/obj/machinery/conveyor/east{ + id = "QMLoad" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"qYQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/delivery/white, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"qZm" = ( +/obj/machinery/abductor/gland_dispenser, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"qZy" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/light_fake{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership/elite_squad) +"qZz" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap{ + pixel_y = 3 + }, +/obj/item/stack/packageWrap{ + pixel_y = 6 + }, +/obj/effect/turf_decal/stripes/white/full{ + color = "#b59959" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"qZS" = ( +/obj/machinery/door/airlock/hatch/syndicate/command{ + name = "Тюрьма" + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"rae" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/dice/d20, +/obj/effect/turf_decal/woodsiding{ + dir = 5 + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"rak" = ( +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/grass/jungle/no_creep, +/area/wizard_station) +"raB" = ( +/obj/structure/curtain/open/shower{ + anchored = 1 + }, +/obj/machinery/shower{ + pixel_y = 20 + }, +/obj/effect/turf_decal/miscellaneous/plumbing{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"rbd" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"rbA" = ( +/obj/item/trash/plate, +/obj/structure/table/wood/fancy/black, +/turf/simulated/floor/carpet/purple, +/area/wizard_station) +"rbT" = ( +/obj/machinery/door/airlock/centcom{ + name = "Оружейная"; + req_one_access_txt = "114" + }, +/obj/machinery/door/poddoor/impassable{ + id_tag = "СС_Office_Armory"; + layer = 3; + name = "Тебе скорее всего сюда нельзя, увы." + }, +/obj/machinery/door_control/no_emag/west{ + id = "СС_Office_Armory"; + name = "Blast Door Open"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"rcE" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"rdx" = ( +/obj/structure/ninjatele{ + pixel_y = 25 + }, +/turf/simulated/floor/plasteel/dark, +/area/ninja/outpost) +"rdO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet/green, +/area/shuttle/trade/sol) +"ref" = ( +/obj/effect/decal/cleanable/blood, +/obj/machinery/flasher{ + id = "syndie_FB_cells"; + pixel_y = -24 + }, +/obj/structure/sink/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"rex" = ( +/obj/effect/turf_decal/woodsiding{ + dir = 1 + }, +/turf/simulated/floor/carpet/royalblack, +/area/syndicate_mothership/control) +"reD" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/plating/asteroid/ancient + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"rfM" = ( +/obj/machinery/door/airlock/external{ + id_tag = "s_docking_airlock"; + name = "Shuttle Airlock"; + req_access_txt = "150" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "syndicate_elite"; + name = "Front Hull Door"; + opacity = 0; + req_access_txt = "150" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/shuttle/syndicate_elite) +"rfO" = ( +/obj/structure/reagent_dispensers/fueltank/chem/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"rgd" = ( +/obj/structure/table/abductor, +/obj/effect/spawner/lootdrop/CCfood/desert, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/turf/simulated/floor/fakespace, +/area/centcom/ss220/bar) +"rgp" = ( +/obj/machinery/button/windowtint/south{ + id = "SSTprivateroom"; + pixel_x = -8 + }, +/obj/machinery/door_control/no_emag{ + id = "SSTprivateroom"; + name = "Privacy Room Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 8; + pixel_y = -32; + specialfunctions = 4; + wires = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"rgN" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/bar) +"rgP" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"rgQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"rgS" = ( +/obj/mecha/working/ripley/firefighter, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"rhB" = ( +/obj/machinery/door/airlock/external{ + id_tag = "ferry_away"; + name = "Ferry Airlock" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/centcom/ss220/admin1) +"rhX" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"riu" = ( +/obj/machinery/computer/camera_advanced, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"riH" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/air, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"rjq" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/watermelonslice, +/obj/effect/decal/syndie_logo{ + icon_state = "logo11" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"rjU" = ( +/obj/machinery/shuttle_manipulator, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"rkn" = ( +/obj/structure/closet/crate/secure/bin{ + anchored = 1; + color = "#996633" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"rkR" = ( +/obj/machinery/chem_dispenser/beer/upgraded, +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"rkZ" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/administration) +"rlk" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo7" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"rlq" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/birch, +/area/shuttle/trade/sol) +"rlL" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/flag/nt, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"rlY" = ( +/obj/structure/chair/stool, +/obj/effect/decal/syndie_logo{ + icon_state = "logo6" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"rma" = ( +/obj/structure/closet/crate/secure/bin{ + anchored = 1; + color = "#996633" + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"rmy" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/shuttle/escape) +"rmX" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/specops) +"rno" = ( +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"rnW" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"ros" = ( +/obj/item/flag/syndi, +/obj/structure/sign/poster/contraband/syndicate_recruitment{ + pixel_y = 30 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"rpv" = ( +/obj/docking_port/stationary/transit{ + dir = 8; + dwidth = 2; + height = 12; + id = "ferry_transit"; + name = "ferry in transit"; + turf_type = /turf/space/transit/horizontal; + width = 5 + }, +/turf/space/transit/horizontal, +/area/space/centcomm) +"rqf" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"rqt" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"rqP" = ( +/obj/structure/table/wood, +/obj/item/radio/beacon/syndicate/bomb{ + pixel_y = 8 + }, +/obj/item/radio/beacon/syndicate/bomb{ + pixel_y = 4 + }, +/obj/item/radio/beacon/syndicate/bomb, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"rqQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warndarkgreycornerred" + }, +/area/syndicate_mothership) +"rrb" = ( +/obj/structure/light_fake, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"rrp" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/centcom/ss220/bar) +"rrq" = ( +/obj/structure/table/wood, +/obj/item/storage/box/disks_plantgene{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/disks_plantgene{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/disks_plantgene, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"rrO" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/control) +"rrS" = ( +/obj/machinery/computer/shuttle/ferry, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"rrZ" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/elite_squad) +"rsA" = ( +/obj/machinery/teleport/station, +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"rsG" = ( +/obj/structure/rack, +/obj/item/rcd_ammo/large{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/rcd_ammo/large{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/rcd_ammo/large{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/rcd_ammo/large{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/rcd_ammo/large{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/rcd_ammo/large{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/rcd_ammo/large{ + pixel_y = 7 + }, +/obj/item/rcd_ammo/large{ + pixel_y = 4 + }, +/obj/item/rcd_ammo/large{ + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"rsJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/syndicate/command, +/obj/machinery/door/poddoor/impassable{ + id_tag = "syndFB_baseleft"; + layer = 3.11; + closingLayer = 3.11 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"rsT" = ( +/obj/machinery/door/window/classic/normal{ + dir = 1; + name = "Сани" + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 1 + }, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"rtg" = ( +/obj/machinery/porta_turret/centcom{ + color = "#666666"; + faction = "syndicate"; + lethal = 1; + name = "Syndicate Defence Laser Turret"; + reqpower = 0 + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership/cargo) +"rtC" = ( +/obj/structure/table, +/obj/item/clothing/accessory/medal{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/engineering{ + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/engineering{ + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/engineering{ + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/legal{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/legal{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/legal{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/medical{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/clothing/accessory/medal/medical{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/clothing/accessory/medal/medical{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/clothing/accessory/medal/science{ + pixel_y = 6 + }, +/obj/item/clothing/accessory/medal/science{ + pixel_y = 6 + }, +/obj/item/clothing/accessory/medal/science{ + pixel_y = 6 + }, +/obj/item/clothing/accessory/medal/security{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/clothing/accessory/medal/security{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/clothing/accessory/medal/security{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/clothing/accessory/medal/service{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/clothing/accessory/medal/service{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/clothing/accessory/medal/service{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/clothing/accessory/medal/heart{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/clothing/accessory/medal/heart{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/clothing/accessory/medal/heart{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/white/full{ + color = "#b59959" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"rtF" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/simulated/floor/plasteel/freezer, +/area/ninja/holding) +"rtG" = ( +/obj/machinery/door/airlock/centcom{ + name = "Шаттл доставки"; + req_one_access_txt = "106" + }, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"rtJ" = ( +/obj/effect/turf_decal/delivery/red, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"rus" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "navybluefull" + }, +/area/centcom/ss220/admin3) +"ruD" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "sst_away"; + name = "Syndicate Base"; + width = 11; + turf_type = /turf/simulated/floor/plating + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership/elite_squad) +"rvd" = ( +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"rvi" = ( +/obj/structure/light_fake/small, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"rvD" = ( +/obj/structure/table/wood/fancy/orange, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap{ + pixel_y = 3 + }, +/obj/item/stack/packageWrap{ + pixel_y = 6 + }, +/obj/item/stack/packageWrap{ + pixel_y = 9 + }, +/obj/item/hand_labeler{ + pixel_y = 14 + }, +/turf/simulated/floor/carpet/royalblue, +/area/shuttle/trade/sol) +"rvX" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/trade/sol) +"rwc" = ( +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/evac) +"rwr" = ( +/obj/structure/rack, +/obj/item/melee/classic_baton/telescopic{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/melee/classic_baton/telescopic{ + pixel_y = 1 + }, +/obj/item/melee/classic_baton/telescopic{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"rwU" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"rxh" = ( +/obj/machinery/door/window/brigdoor{ + color = "red"; + dir = 1; + name = "Riot Control" + }, +/obj/effect/turf_decal/siding/red{ + color = "#aa2222" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"rxX" = ( +/obj/machinery/door/airlock/external{ + id_tag = "admin_away"; + name = "Велосипед"; + opacity = 0 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"ryl" = ( +/obj/structure/decorative_structures/metal/statue/metal_angel, +/turf/simulated/floor/carpet, +/area/centcom/ss220/evac) +"ryx" = ( +/obj/item/toy/nuke, +/obj/structure/table/wood/poker, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership) +"rze" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"rzq" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/structure/window/plasmareinforced{ + color = "red" + }, +/turf/simulated/floor/plating, +/area/shuttle/administration) +"rzF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership) +"rzI" = ( +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/supply) +"rzY" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin/syndicate, +/obj/item/pen/multi/gold{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"rAi" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkbluealtstrip" + }, +/area/centcom/ss220/admin3) +"rAr" = ( +/obj/structure/table/wood, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/infteam) +"rBb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "syndishuttle_vent"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"rBI" = ( +/obj/machinery/computer/communications, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"rBS" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/storage/fancy/cigarettes/cigpack_shadyjims{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/lighter/random{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"rCd" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/gavelblock{ + desc = "Smack it with a gavel hammer when the wizard council gets rowdy." + }, +/obj/item/gavelhammer{ + desc = "Order, order! No bombs in my council chamber." + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"rDf" = ( +/obj/machinery/economy/vending/chinese/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"rDF" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"rDS" = ( +/obj/machinery/hydroponics/constructable, +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"rEF" = ( +/obj/machinery/economy/vending/security, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"rER" = ( +/obj/machinery/door_control/no_emag/east{ + color = "#ffbf80"; + id = "CC_DeathSquad"; + name = "Blast Door Control"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin3) +"rFR" = ( +/obj/structure/railing, +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium" + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"rFZ" = ( +/obj/machinery/door/airlock/hatch/syndicate/command, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"rGY" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"rHF" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 1 + }, +/obj/effect/turf_decal/siding/red{ + color = "#aa2222" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"rIi" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/flag/nt, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"rIO" = ( +/obj/structure/chair/sofa/bench/right{ + cover_color = "#68452a"; + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"rJo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"rJs" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkredalt" + }, +/area/centcom/ss220/jail) +"rJW" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/light_fake{ + dir = 1 + }, +/obj/item/flag/syndi, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"rKv" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"rKA" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo3" + }, +/obj/effect/turf_decal/woodsiding{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"rLd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/poddoor/impassable{ + color = "#99ff99"; + id_tag = "SST_armory_basic"; + name = "SST Armory Basic Weapons" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"rLs" = ( +/obj/structure/flora/tree/jungle{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/flora/junglebush, +/turf/simulated/floor/grass/jungle/no_creep, +/area/centcom/ss220/park) +"rLD" = ( +/obj/structure/dresser, +/obj/structure/mirror{ + pixel_y = -30 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"rLQ" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK" + }, +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/admin1) +"rMi" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"rNd" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/cyan, +/area/centcom/ss220/general) +"rNh" = ( +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowfull" + }, +/area/centcom/ss220/admin2) +"rNu" = ( +/obj/effect/turf_decal/delivery/white, +/obj/effect/spawner/random_spawners/syndicate/loot{ + spawn_inside = null + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership) +"rND" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/machinery/flasher{ + id = "soltraderflash"; + pixel_x = 24 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"rNY" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/dresser, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"rOg" = ( +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"rOr" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"rOv" = ( +/obj/mecha/combat/durand/loaded, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"rOI" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo16" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"rPO" = ( +/obj/structure/sign/double/map/left{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"rQg" = ( +/turf/simulated/wall/mineral/plastitanium, +/area/syndicate_mothership/cargo) +"rQk" = ( +/obj/structure/chair/sofa/bench/right{ + cover_color = "#68452a"; + layer = 3.1 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"rQA" = ( +/obj/structure/rack, +/obj/item/flashlight{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/flashlight{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/flashlight{ + pixel_y = 3 + }, +/obj/item/flashlight{ + pixel_x = 3 + }, +/obj/item/flashlight{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + pixel_y = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"rRb" = ( +/obj/structure/chair/stool/bar/dark{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/bar) +"rRY" = ( +/obj/structure/light_fake{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"rSQ" = ( +/obj/machinery/conveyor/west{ + id = "QMLoad2" + }, +/turf/simulated/floor/plating, +/area/centcom/ss220/supply) +"rSS" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"rST" = ( +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"rSW" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"rSX" = ( +/obj/machinery/door/airlock/centcom{ + name = "Камера"; + req_one_access_txt = "114" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "СС_Jail_1"; + name = "Камера 1" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/jail) +"rTf" = ( +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership/elite_squad) +"rTu" = ( +/obj/structure/table/glass, +/obj/item/paper_bin/nanotrasen{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen/multi/fountain{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"rTz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet/green, +/area/shuttle/trade/sol) +"rTB" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/syndicate_mothership/outside) +"rTD" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"rTM" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"rTO" = ( +/obj/structure/sign/poster/contraband/random/north, +/obj/structure/chair/sofa/bench, +/turf/simulated/floor/plasteel{ + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"rTT" = ( +/obj/structure/rack, +/obj/item/rcd/combat{ + pixel_y = 6 + }, +/obj/item/rcd/combat{ + pixel_y = 3 + }, +/obj/item/rcd/combat, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"rUf" = ( +/obj/structure/table/wood, +/obj/item/storage/bible{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/evac) +"rUo" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"rUC" = ( +/obj/structure/rack, +/obj/item/clothing/suit/wizrobe/magusblue, +/obj/item/clothing/head/wizard/magus, +/obj/item/staff, +/obj/item/clothing/suit/wizrobe/magusred, +/obj/item/clothing/head/wizard/magus, +/obj/item/staff, +/turf/simulated/floor/carpet/black, +/area/wizard_station) +"rUF" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/junglebush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"rUH" = ( +/turf/simulated/floor/plasteel/stairs{ + dir = 8 + }, +/area/centcom/ss220/admin2) +"rUN" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"rVg" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"rVx" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/economy/vending/tool/free, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"rVD" = ( +/obj/structure/rack, +/obj/item/storage/belt/grenade/full{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/belt/grenade/full, +/obj/item/storage/belt/grenade/full{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"rVI" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"rVM" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"rVQ" = ( +/obj/machinery/door/airlock/centcom{ + name = "Мостик"; + req_one_access_txt = "113" + }, +/obj/effect/decal/warning_stripes/blue, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"rWz" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Библиотека" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"rWF" = ( +/turf/simulated/wall/mineral/plastitanium, +/area/shuttle/specops) +"rXd" = ( +/obj/machinery/poolcontroller/invisible, +/turf/simulated/floor/beach/away/water, +/area/ninja/holding) +"rXG" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo14" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"rXL" = ( +/obj/effect/landmark/newplayer_start, +/turf/simulated/wall/indestructible/splashscreen, +/area/start) +"rXN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"rYm" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"rYx" = ( +/obj/structure/table/wood, +/obj/item/folder/red{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/lighter, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"rYA" = ( +/obj/structure/chair/wheelchair/bike{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 30 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"rYI" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/syndicate) +"rYQ" = ( +/obj/machinery/economy/vending/clothing, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"rYT" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"saI" = ( +/obj/effect/turf_decal/siding/black{ + dir = 1 + }, +/obj/effect/turf_decal/siding/black, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"saL" = ( +/obj/structure/window/reinforced, +/obj/structure/dresser, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"sbf" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"sbF" = ( +/obj/machinery/door_control/no_emag/west{ + id = "cc_toilet_2"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/centcom/ss220/evac) +"sbY" = ( +/obj/structure/chair/comfy/red, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"scW" = ( +/obj/structure/chair/comfy/brown, +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/infteam) +"scX" = ( +/obj/structure/barricade{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "diagonalWall3"; + name = "diagonal shields"; + proj_pass_rate = 0; + max_integrity = 200; + armor = list(melee = 10, bullet = 50, laser = 50, energy = 50, bomb = 10, rad = 100, fire = 10, acid = 0); + stacktype = null; + dir = 1 + }, +/turf/simulated/floor/indestructible/transparent_floor, +/area/shuttle/syndicate_sit) +"sdf" = ( +/obj/structure/closet/crate/freezer{ + desc = "A crate."; + name = "Medical crate" + }, +/obj/item/reagent_containers/iv_bag/salglu, +/obj/structure/curtain/black{ + pixel_x = 32; + pixel_y = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"sdE" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"sdJ" = ( +/obj/structure/table/reinforced, +/obj/item/tank/jetpack/oxygen/harness{ + pixel_y = 6 + }, +/obj/item/tank/jetpack/oxygen/harness{ + pixel_y = 3 + }, +/obj/item/tank/jetpack/oxygen/harness, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"sdK" = ( +/obj/structure/chair/comfy/red{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"sdP" = ( +/obj/item/beach_ball{ + pixel_y = 12 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"seb" = ( +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/evac) +"see" = ( +/obj/structure/closet/walllocker/medlocker/west, +/obj/structure/table/wood, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"seh" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/snacks/cheeseburger{ + pixel_y = 3 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"sej" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/administration) +"ser" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"sfM" = ( +/obj/structure/table, +/obj/item/storage/fancy/crayons, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"sfS" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/toxins, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"sgj" = ( +/obj/machinery/computer/supplycomp{ + dir = 8 + }, +/obj/machinery/door_control/no_emag/east{ + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_y = -8 + }, +/obj/machinery/door_control/no_emag/east{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"sgp" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership) +"sgR" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"siy" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"siL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"siT" = ( +/turf/simulated/floor/plasteel/freezer, +/area/wizard_station) +"siY" = ( +/obj/structure/rack, +/obj/structure/curtain/black{ + pixel_x = -32; + pixel_y = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/obj/item/painter{ + pixel_y = 4; + pixel_x = -6 + }, +/obj/item/painter{ + pixel_y = -5; + pixel_x = 3 + }, +/obj/item/painter{ + pixel_y = -8; + pixel_x = 6 + }, +/obj/item/painter{ + pixel_y = -8; + pixel_x = 6 + }, +/obj/item/painter{ + pixel_y = -2 + }, +/obj/item/painter{ + pixel_y = 1; + pixel_x = -3 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"sji" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "navybluecorners" + }, +/area/centcom/ss220/admin3) +"skx" = ( +/turf/simulated/floor/plasteel{ + icon_state = "rampbottom" + }, +/area/syndicate_mothership/infteam) +"skE" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"slA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"slN" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"smc" = ( +/obj/structure/flora/tree/jungle{ + layer = 8.9 + }, +/obj/item/flashlight/lantern{ + anchored = 1; + light_color = "#FF9F40"; + on = 1; + pixel_x = -11; + pixel_y = 7 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"smn" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/machinery/computer/library, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"smo" = ( +/obj/item/flag/nt, +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin3) +"smv" = ( +/obj/machinery/light/small/directional/west, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"snz" = ( +/obj/structure/light_fake{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/syndicate_mothership/elite_squad) +"snC" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/escape) +"sok" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/admin3) +"soo" = ( +/obj/machinery/computer/shuttle/ert, +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"sor" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"sot" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "navybluecorners" + }, +/area/centcom/ss220/admin3) +"soz" = ( +/obj/item/storage/fancy/crayons, +/obj/structure/table/wood{ + color = "#996633" + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership) +"soD" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"spM" = ( +/obj/structure/rack, +/obj/item/grenade/clusterbuster/holy, +/obj/item/grenade/clusterbuster/holy, +/obj/item/grenade/clusterbuster/holy, +/obj/item/grenade/chem_grenade/holywater, +/obj/item/grenade/chem_grenade/holywater, +/obj/item/grenade/chem_grenade/holywater, +/obj/item/grenade/chem_grenade/holywater, +/obj/item/grenade/chem_grenade/holywater, +/obj/item/grenade/chem_grenade/holywater, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"spP" = ( +/turf/simulated/wall/mineral/plastitanium/nodiagonal, +/area/shuttle/syndicate) +"sqk" = ( +/obj/structure/flora/rock/jungle, +/obj/item/flashlight/lantern{ + anchored = 1; + layer = 5; + light_color = "#FF9F40"; + on = 1; + pixel_x = -1; + pixel_y = 10 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"srn" = ( +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"srA" = ( +/obj/machinery/computer/shuttle/ert{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the Special Ops."; + name = "Special Ops. Monitor"; + network = list("ERT"); + pixel_x = -30 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/specops) +"ssW" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkbluealt" + }, +/area/shuttle/administration) +"stQ" = ( +/obj/structure/chair/sofa/left{ + color = "#63009c"; + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"stW" = ( +/obj/structure/shuttle/engine/huge, +/turf/simulated/floor/indestructible/transparent_floor, +/area/shuttle/syndicate) +"suN" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo13" + }, +/obj/effect/turf_decal/siding/black{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"suT" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/light_fake/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"svw" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "syndieshutters"; + name = "Blast Shutters" + }, +/obj/effect/spawner/window/plastitanium, +/turf/simulated/floor/plating, +/area/shuttle/syndicate) +"svN" = ( +/obj/docking_port/stationary/transit{ + dir = 4; + dwidth = 11; + height = 13; + id = "emergency_transit"; + name = "emergency in transit"; + width = 24 + }, +/turf/space/transit, +/area/space/centcomm) +"swL" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"swU" = ( +/obj/effect/turf_decal/box/white, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/infteam) +"sxS" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"syd" = ( +/turf/simulated/floor/carpet, +/area/centcom/ss220/admin3) +"szK" = ( +/obj/machinery/computer/camera_advanced, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"sAR" = ( +/obj/machinery/computer/camera_advanced, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/control) +"sAT" = ( +/obj/effect/turf_decal/delivery, +/obj/mecha/combat/gygax/dark/loaded, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"sAZ" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 5; + icon_state = "darkbluealtstrip" + }, +/area/centcom/ss220/admin3) +"sBv" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"sCq" = ( +/obj/structure/light_fake/spot, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"sCx" = ( +/obj/machinery/conveyor/north{ + id = "SFBQMLoad2" + }, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/cargo) +"sCI" = ( +/obj/machinery/computer/security{ + dir = 4; + network = list("SS13","Telecomms","Research Outpost","Mining Outpost") + }, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = -32 + }, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/shuttle/escape) +"sDq" = ( +/obj/structure/sign/poster/contraband/smoke{ + pixel_x = -32 + }, +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"sDG" = ( +/obj/effect/landmark/abductor/scientist{ + team = 2 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"sDK" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo5" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"sDS" = ( +/obj/effect/decal/warning_stripes/white, +/obj/machinery/door/poddoor/impassable{ + id_tag = "СС_BD_Exterior_1"; + layer = 3 + }, +/obj/machinery/door_control/no_emag/west{ + id = "СС_BD_Exterior_1"; + name = "Blast Door Open"; + req_one_access_txt = "101" + }, +/obj/machinery/door/airlock/centcom{ + id_tag = "CC_Exterior_1"; + name = "Зона ЦК"; + req_one_access_txt = "101" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"sEk" = ( +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/grass/jungle/no_creep, +/area/wizard_station) +"sEy" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"sEB" = ( +/obj/structure/table/glass, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Central Command"; + pixel_y = 4; + req_one_access = list(101) + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/admin3) +"sEX" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/security/mining{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowfull" + }, +/area/centcom/ss220/admin2) +"sFj" = ( +/obj/item/grenade/clusterbuster/cleaner, +/obj/item/grenade/clusterbuster/cleaner, +/obj/item/grenade/clusterbuster/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/scythe/tele, +/obj/item/scythe/tele, +/obj/item/scythe/tele, +/obj/structure/rack, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"sFl" = ( +/obj/effect/turf_decal/siding/black, +/obj/effect/turf_decal/siding/black{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"sFq" = ( +/obj/structure/closet/walllocker/medlocker/east, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"sFV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/photocopier{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/bee_briefcase{ + pixel_x = 3; + pixel_y = -19 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"sFZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/delivery/white, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"sGq" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/multi{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/purple, +/area/centcom/ss220/general) +"sHP" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/indestructible + }, +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/jail) +"sHT" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"sIn" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"sIu" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"sIG" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"sIS" = ( +/obj/structure/filingcabinet/medical, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"sJj" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"sJn" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/obj/item/flag/syndi, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"sJw" = ( +/obj/structure/light_fake/small, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/general) +"sJP" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + color = "red" + }, +/obj/machinery/atmospherics/portable/canister/nitrogen, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"sJR" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkred" + }, +/area/syndicate_mothership/infteam) +"sKd" = ( +/obj/machinery/computer/communications, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/shuttle/escape) +"sKq" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"sKC" = ( +/obj/effect/decal/warning_stripes/blue, +/obj/machinery/door/poddoor/impassable{ + id_tag = "СС_BD_Interior_1"; + layer = 3 + }, +/obj/machinery/door_control/no_emag/west{ + id = "СС_BD_Interior_1"; + name = "Blast Door Open"; + req_one_access_txt = "101" + }, +/obj/machinery/door/airlock/centcom{ + id_tag = "CC_Interior_1"; + name = "Зона ЦК"; + req_one_access_txt = "101" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"sKF" = ( +/obj/machinery/computer/atmoscontrol{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowfull" + }, +/area/centcom/ss220/admin2) +"sKW" = ( +/obj/structure/table/reinforced{ + color = "#996633" + }, +/obj/item/lighter/zippo{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/lighter/zippo{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"sKY" = ( +/obj/structure/rack, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/obj/item/gun/energy/bsg/prebuilt{ + pixel_y = 12 + }, +/obj/item/gun/energy/bsg/prebuilt{ + pixel_y = 8 + }, +/obj/item/gun/energy/bsg/prebuilt{ + pixel_y = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"sLl" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"sLM" = ( +/turf/simulated/wall/indestructible/rock/mineral, +/area/syndicate_mothership/outside) +"sMg" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkyellowaltstrip" + }, +/area/centcom/ss220/supply) +"sMN" = ( +/obj/effect/decal/warning_stripes/white/hollow{ + color = "76643a" + }, +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"sNA" = ( +/obj/structure/fence{ + invulnerable = 1 + }, +/obj/structure/flora/tree/pine{ + color = "#336633"; + desc = "Напоминает о былых, более холодных временах..."; + layer = 2.9; + name = "Ель" + }, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"sOd" = ( +/obj/effect/landmark/spawner/ninjastart, +/turf/simulated/floor/plasteel/grimy, +/area/ninja/outpost) +"sOo" = ( +/turf/simulated/wall/mineral/plastitanium, +/area/shuttle/assault_pod) +"sOq" = ( +/obj/structure/table/reinforced{ + color = "#444444" + }, +/obj/item/stack/sheet/metal, +/obj/item/clothing/glasses/welding, +/obj/item/weldingtool, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_sit) +"sOr" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/documents/syndicate/blue, +/obj/item/documents/syndicate/mining, +/obj/item/documents/syndicate/red, +/obj/item/documents/syndicate/yellow, +/obj/item/documents/syndicate/yellow/trapped, +/obj/item/documents/syndicate, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/carpet/red, +/area/syndicate_mothership/control) +"sPa" = ( +/obj/machinery/door/window/brigdoor{ + color = "red"; + dir = 1; + icon_state = "rightsecure"; + name = "Riot Control" + }, +/obj/effect/turf_decal/siding/red{ + color = "#aa2222" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"sPz" = ( +/obj/machinery/light/small/directional/north, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"sQk" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"sQD" = ( +/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ + desc = "Не очень любит синтетиков..."; + faction = list("syndicate"); + icon = 'icons/mob/terrorspider.dmi'; + icon_state = "terror_queen"; + name = "Королева Пауков" + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership/control) +"sRe" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + autolink_id = "syndie_cargo_right_shuttle_pump" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"sRI" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"sSn" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/structure/curtain/black{ + pixel_x = 32; + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"sTr" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium_corner"; + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"sUd" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"sUi" = ( +/obj/structure/window/full/basic, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/bar) +"sUo" = ( +/obj/machinery/cryopod/offstation{ + icon_state = "sleeper_s"; + occupied_icon_state = "sleeper_s"; + base_icon_state = "sleeper_s-open" + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"sUT" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"sUZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"sVn" = ( +/obj/structure/bookcase/manuals, +/obj/item/book/manual/wiki/sop_supply, +/obj/item/book/manual/nuclear, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"sXm" = ( +/obj/machinery/flasher{ + id = "syndie_FB_cells"; + pixel_y = -24 + }, +/obj/structure/sink/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"sXn" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern{ + anchored = 1; + layer = 5; + light_color = "#FF9F40"; + on = 1; + pixel_y = 10 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"sXy" = ( +/obj/structure/barricade{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "diagonalWall3"; + name = "diagonal shields"; + proj_pass_rate = 0; + max_integrity = 200; + armor = list(melee = 10, bullet = 50, laser = 50, energy = 50, bomb = 10, rad = 100, fire = 10, acid = 0); + stacktype = null; + dir = 1 + }, +/turf/simulated/floor/indestructible/transparent_floor, +/area/shuttle/syndicate_elite) +"sXM" = ( +/obj/structure/closet/secure_closet/syndicate/medbay, +/turf/simulated/floor/plasteel{ + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"sXX" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"sYl" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"sZb" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Барная стойка" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"sZk" = ( +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"sZm" = ( +/obj/structure/closet/syndicate/personal, +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"sZo" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/general) +"sZy" = ( +/obj/structure/chair/comfy/corp{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"sZB" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/closet/coffin, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"sZD" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Зона отдыха" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"tak" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/supply) +"taB" = ( +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"taY" = ( +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/obj/machinery/economy/vending/chinese/free, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"tbe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/trade/sol) +"tbJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/item/kitchen/utensil/spoon{ + layer = 4.1 + }, +/obj/effect/turf_decal{ + icon = 'icons/mob/nest.dmi'; + icon_state = "hole"; + name = "chasm" + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"tbP" = ( +/obj/item/radio/intercom/syndicate{ + pixel_y = -28; + dir = 1 + }, +/obj/structure/statue/sandstone/assistant{ + anchored = 1; + desc = "Он точно спит на посту"; + dir = 1; + icon = 'icons/mob/simple_human.dmi'; + icon_state = "syndicate_smg"; + max_integrity = 9999; + name = "Боба"; + obj_integrity = 9999 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"tcq" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/iv_bag/blood/random, +/obj/item/reagent_containers/iv_bag/blood/random, +/obj/item/reagent_containers/iv_bag/blood/random, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/shuttle/escape) +"tcB" = ( +/obj/machinery/economy/arcade/claw, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/bar) +"tcQ" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/shuttle/escape) +"tcR" = ( +/obj/structure/closet/crate/internals, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"tdd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"tdw" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/structure/flora/ausbushes/stalkybush, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/syndicate_mothership/outside) +"tdR" = ( +/obj/structure/shuttle/engine/platform{ + layer = 2.9; + dir = 8 + }, +/turf/simulated/floor/indestructible/transparent_floor, +/area/shuttle/trade/sol) +"tdY" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/candle/eternal{ + pixel_x = 1; + pixel_y = 4; + start_lit = 1 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"teM" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/specops) +"tfi" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"tfn" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/door_control/no_emag{ + pixel_x = 32; + id = "syndFB_med"; + name = "Medbay"; + wires = 1; + specialfunctions = 4; + req_access_txt = "153"; + emagged = 1 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"tfu" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"tfv" = ( +/obj/machinery/cryopod/offstation, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"tgd" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/mineral/titanium, +/area/shuttle/transport) +"tgx" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/ninja/holding) +"tgL" = ( +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/infteam) +"thD" = ( +/obj/structure/table/holotable/wood{ + color = "#996633" + }, +/obj/item/reagent_containers/food/snacks/sliceable/turkey, +/turf/simulated/floor/carpet/black, +/area/trader_station/sol) +"thG" = ( +/obj/effect/landmark/spawner/syndicate_infiltrator_leader, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"tiB" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership/elite_squad) +"tiF" = ( +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"tjz" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding/corner{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"tke" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/simulated/floor/carpet/cyan, +/area/centcom/ss220/general) +"tkD" = ( +/obj/machinery/computer/camera_advanced/abductor{ + team = 3 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"tls" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"tlS" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/specops) +"tma" = ( +/turf/simulated/floor/plasteel/dark, +/area/trader_station/sol) +"tmr" = ( +/obj/structure/table/glass, +/obj/item/radio/headset/centcom{ + pixel_y = 4 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin3) +"tmT" = ( +/obj/item/camera, +/turf/simulated/floor/beach/away/sand, +/area/ninja/holding) +"tni" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/machinery/computer/communications{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"tnw" = ( +/obj/structure/table/abductor, +/obj/effect/spawner/lootdrop/CCfood/desert, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/turf/simulated/floor/fakespace, +/area/centcom/ss220/bar) +"top" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"tou" = ( +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"toM" = ( +/obj/machinery/door/airlock/centcom{ + name = "Гамма шаттл"; + req_one_access_txt = "114" + }, +/obj/structure/fans/tiny, +/obj/effect/decal/warning_stripes/red, +/obj/machinery/door/poddoor/impassable{ + id_tag = "CC_GammaShuttle"; + layer = 3; + name = "Гамма шаттл" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"tpc" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "nukeop_storage"; + name = "Storage" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"tpj" = ( +/obj/machinery/computer/shuttle/sst, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/control) +"tpM" = ( +/obj/effect/decal/cleanable/confetti, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"tpO" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"tpQ" = ( +/obj/effect/turf_decal/box/corners, +/turf/simulated/floor/mineral/abductor, +/area/centcom/ss220/bar) +"tpT" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcornersalt" + }, +/area/syndicate_mothership/jail) +"tqQ" = ( +/obj/structure/sink/directional/north, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/infteam) +"try" = ( +/obj/structure/table, +/obj/item/bonegel, +/obj/item/bonesetter, +/obj/item/hemostat, +/obj/item/cautery, +/obj/item/surgicaldrill, +/obj/item/circular_saw, +/obj/item/scalpel, +/obj/item/retractor, +/obj/item/FixOVein, +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"tsb" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"tsc" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"tse" = ( +/obj/item/flag/solgov, +/obj/machinery/door_control/no_emag/east{ + id = "trader_privacy"; + name = "Privacy Shutters Control"; + pixel_y = 8; + req_access_txt = "160"; + req_one_access_txt = "160" + }, +/obj/machinery/door_control/no_emag/east{ + id = "soltrader_south"; + name = "Trade Deposits Door"; + normaldoorcontrol = 1; + pixel_y = -8; + req_access_txt = "160"; + req_one_access_txt = "160" + }, +/obj/machinery/flasher_button{ + id = "soltraderflash"; + pixel_x = 24; + req_one_access_txt = "160" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"tsj" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo14" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"tso" = ( +/obj/item/flag/nt, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/general) +"tsK" = ( +/obj/effect/turf_decal/woodsiding{ + dir = 5 + }, +/turf/simulated/floor/carpet/royalblack, +/area/syndicate_mothership/control) +"tti" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/evac) +"tut" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/centcom/ss220/jail) +"tuH" = ( +/obj/structure/computerframe, +/obj/effect/decal/syndie_logo{ + icon_state = "logo4" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"tvv" = ( +/obj/machinery/computer/shuttle/syndicate{ + name = "Nuclear Operatives Shuttle Console" + }, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/control) +"tvZ" = ( +/obj/structure/table/wood, +/obj/item/grenade/smokebomb{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"twj" = ( +/obj/machinery/economy/vending/coffee, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"twm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/poddoor/impassable{ + color = "#ffdd99"; + id_tag = "SST_armory_mech_gygax"; + name = "SST Armory Mech DarkGygax" + }, +/obj/effect/mapping_helpers/light{ + light_range = 3 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"twr" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"twu" = ( +/obj/structure/chair/stool/bar/dark, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/bar) +"txK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"txP" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen/multi{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/general) +"txR" = ( +/obj/structure/chair/brass{ + name = "arch wizard's throne" + }, +/obj/effect/turf_decal/woodsiding{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"txW" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" + }, +/area/centcom/ss220/bar) +"tyo" = ( +/obj/structure/curtain/open/shower/security, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/bar) +"tyz" = ( +/turf/simulated/floor/carpet/arcade, +/area/trader_station/sol) +"tAi" = ( +/obj/machinery/atmospherics/portable/canister/oxygen{ + anchored = 1; + maximum_pressure = 50000 + }, +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"tAn" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin1) +"tAH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/poddoor/impassable{ + density = 0; + icon_state = "open"; + id_tag = "syndFB_lockdown"; + opacity = 0; + layer = 3.1; + closingLayer = 3.1 + }, +/obj/machinery/door/airlock/hatch/syndicate/command, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"tAJ" = ( +/obj/item/pizzabox/meat{ + desc = "Любимая пицца Шерлока Субботина" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"tAU" = ( +/obj/machinery/sleeper/syndie{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_elite) +"tBr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"tBT" = ( +/obj/structure/rack/holorack, +/obj/item/storage/box/syndie_kit/chameleon{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/box/syndie_kit/chameleon{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/syndie_kit/chameleon, +/obj/item/storage/box/syndie_kit/chameleon{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/box/syndie_kit/chameleon{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/storage/box/syndie_kit/chameleon{ + pixel_x = 9; + pixel_y = -9 + }, +/obj/item/clothing/shoes/chameleon/noslip{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/shoes/chameleon/noslip{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/shoes/chameleon/noslip, +/obj/item/clothing/shoes/chameleon/noslip, +/obj/item/clothing/shoes/chameleon/noslip{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/shoes/chameleon/noslip{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/box/white, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"tCg" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/trade_sol/serv, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/item/stack/tile/disco_light/thirty, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"tCr" = ( +/obj/machinery/door/poddoor/multi_tile/four_tile_ver{ + id_tag = "nukeop_storage"; + name = "Storage" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"tCJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"tDh" = ( +/obj/machinery/shieldwall{ + dir = 1; + icon = 'icons/effects/beam.dmi'; + icon_state = "n_beam" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"tDX" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"tEM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/delivery/white, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"tEZ" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"tFj" = ( +/obj/item/flag/syndi, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkred" + }, +/area/syndicate_mothership/infteam) +"tHa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/syndicate/vault{ + req_access_txt = "153"; + name = "Vault" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"tHw" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"tHS" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo5" + }, +/obj/effect/turf_decal/woodsiding{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"tIq" = ( +/obj/machinery/door_control/no_emag/south{ + emagged = 1; + wires = 1; + req_access_txt = "153"; + name = "SST Armory Basic Weapons"; + id = "SST_armory_basic"; + color = "#99ff99" + }, +/obj/machinery/door_control/no_emag{ + pixel_y = -40; + id = "SST_armory_advanced"; + emagged = 1; + wires = 1; + req_access_txt = "153"; + name = "SST_armory_advanced" + }, +/obj/machinery/door_control/no_emag{ + pixel_y = -32; + pixel_x = 6; + id = "SST_armory_grenades"; + emagged = 1; + wires = 1; + req_access_txt = "153"; + name = "SST_armory_grenades"; + color = "#ffdd99" + }, +/obj/machinery/door_control/no_emag{ + pixel_y = -32; + pixel_x = -6; + id = "SST_armory_support"; + emagged = 1; + wires = 1; + req_access_txt = "153"; + name = "SST_armory_support"; + color = "#9999ff" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"tIs" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"tIy" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"tIK" = ( +/obj/structure/holohoop{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"tIO" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/snacks/benedict{ + pixel_y = 6 + }, +/obj/item/kitchen/utensil/fork{ + pixel_x = -12; + pixel_y = 8 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"tJr" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo15" + }, +/obj/effect/turf_decal/siding/black{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"tJz" = ( +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"tJL" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"tJQ" = ( +/obj/machinery/door/airlock/titanium/glass{ + req_one_access_txt = "160" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/carpet/orange, +/area/shuttle/trade/sol) +"tKN" = ( +/obj/machinery/door/airlock/centcom{ + name = "Камера"; + req_one_access_txt = "114" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id_tag = "СС_Jail_4"; + name = "Камера 4" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/jail) +"tLy" = ( +/obj/machinery/cryopod/offstation/right, +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"tLz" = ( +/obj/structure/curtain/open/shower/security, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"tLW" = ( +/obj/structure/light_fake, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"tMg" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel, +/area/shuttle/escape) +"tMn" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/obj/structure/ore_box, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"tMz" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo7" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"tMG" = ( +/obj/structure/light_fake{ + dir = 1 + }, +/obj/machinery/economy/vending/engineering, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"tMH" = ( +/obj/structure/dresser, +/obj/structure/mirror{ + pixel_y = 26 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"tMP" = ( +/obj/structure/table/reinforced, +/obj/item/kitchen/knife{ + pixel_x = -8 + }, +/obj/item/kitchen/rollingpin{ + pixel_x = 3 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"tNi" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/ninja/holding) +"tNq" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"tOi" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"tON" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"tPc" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/indestructible + }, +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/supply) +"tPg" = ( +/obj/machinery/door/airlock/centcom{ + name = "Кабинет ОСО"; + req_access_txt = "114" + }, +/obj/machinery/door/poddoor/impassable{ + id_tag = "СС_Office_COO_Door"; + layer = 3; + name = "Тебе скорее всего сюда нельзя, увы." + }, +/obj/machinery/door_control/no_emag/west{ + id = "СС_Office_COO_Door"; + name = "Blast Door Open"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"tPk" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"tPC" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"tQc" = ( +/obj/machinery/computer/robotics{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkpurplefull" + }, +/area/centcom/ss220/admin2) +"tQw" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"tQU" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"tRZ" = ( +/obj/structure/fence/post{ + invulnerable = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"tSr" = ( +/obj/structure/table/wood, +/obj/item/grenade/bananade/casing{ + pixel_x = 10 + }, +/obj/item/grenade/bananade/casing{ + pixel_x = 6 + }, +/obj/item/grenade/bananade/casing{ + pixel_x = 2 + }, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/reagent_containers/food/snacks/grown/banana, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"tSu" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbluecornersalt" + }, +/area/centcom/ss220/admin3) +"tSC" = ( +/obj/machinery/abductor/console{ + team = 4 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"tTd" = ( +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"tTm" = ( +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"tTt" = ( +/obj/structure/closet/crate/trashcart{ + name = "Специальная доставка с ЦК" + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"tTA" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowcornersalt" + }, +/area/syndicate_mothership/cargo) +"tUK" = ( +/obj/machinery/door/airlock/centcom{ + name = "Мехи"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "navybluefull" + }, +/area/centcom/ss220/admin3) +"tUV" = ( +/obj/structure/table/glass, +/obj/item/clipboard{ + pixel_y = 4 + }, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/folder/blue{ + pixel_y = 5 + }, +/obj/item/lighter/zippo/blue{ + pixel_x = 14; + pixel_y = 6 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"tVr" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/bar) +"tVz" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"tVB" = ( +/turf/simulated/floor/plating/asteroid{ + icon_state = "asteroidfloor"; + name = "floor" + }, +/area/syndicate_mothership/outside) +"tVG" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo10" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"tVQ" = ( +/obj/structure/light_fake/small{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/random/north, +/obj/structure/statue/sandstone/assistant{ + anchored = 1; + desc = "Он точно не спит на посту"; + icon = 'icons/mob/simple_human.dmi'; + icon_state = "syndicate_smg"; + max_integrity = 9999; + name = "Биба"; + obj_integrity = 9999 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"tVX" = ( +/obj/effect/decal/warning_stripes/blue, +/obj/machinery/door/poddoor/impassable{ + id_tag = "СС_BD_Interior_1"; + layer = 3 + }, +/obj/machinery/door/airlock/centcom{ + id_tag = "CC_Interior_1"; + name = "Зона ЦК"; + req_one_access_txt = "101" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"tWa" = ( +/obj/structure/light_fake/small, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"tWq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/closet/cardboard{ + icon_closed = "cardboard_syndicate"; + icon_opened = "cardboard_open_syndicate"; + icon_state = "cardboard_syndicate" + }, +/obj/effect/turf_decal/delivery/white, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"tWr" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowalt" + }, +/area/centcom/ss220/supply) +"tWI" = ( +/turf/simulated/wall/indestructible/wood, +/area/trader_station/sol) +"tXw" = ( +/obj/item/flag/wiz, +/turf/simulated/floor/carpet/purple, +/area/wizard_station) +"tXx" = ( +/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate, +/obj/effect/decal/syndie_logo{ + icon_state = "logo2" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"tYb" = ( +/obj/structure/table/abductor, +/obj/item/retractor/alien, +/obj/item/hemostat/alien, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"tYt" = ( +/obj/machinery/economy/vending/syndisnack, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"tYw" = ( +/obj/effect/decal/nanotrasen_logo/n1, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"tYC" = ( +/obj/structure/table/wood/poker, +/turf/simulated/floor/carpet/arcade, +/area/trader_station/sol) +"tYW" = ( +/obj/structure/closet/boxinggloves, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"tZc" = ( +/obj/effect/landmark/abductor/scientist, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"tZB" = ( +/obj/machinery/computer/shuttle/ert{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"uam" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 1 + }, +/turf/simulated/wall/mineral/titanium, +/area/shuttle/transport) +"uaS" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot_white, +/obj/item/storage/backpack/duffel/syndie/med/surgery{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/backpack/duffel/syndie/med/surgery{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/backpack/duffel/syndie/med/surgery, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"uaY" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "navybluecorners" + }, +/area/centcom/ss220/admin3) +"ubd" = ( +/obj/structure/table/wood/fancy/red, +/obj/effect/spawner/lootdrop/CCfood/desert, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/bar) +"ubg" = ( +/obj/machinery/economy/vending/suitdispenser, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"ubh" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/storage/fancy/cigarettes/cigpack_shadyjims{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/lighter/zippo{ + pixel_x = 10; + pixel_y = 4 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"ubx" = ( +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"ubR" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin3) +"ucb" = ( +/obj/structure/window/reinforced, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/cyan, +/area/centcom/ss220/general) +"ucI" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkredalt" + }, +/area/centcom/ss220/jail) +"udq" = ( +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"udu" = ( +/obj/machinery/porta_turret/syndicate, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/spotlight/jade, +/turf/simulated/floor/indestructible/transparent_floor{ + icon_state = "router_dir"; + dir = 8 + }, +/area/shuttle/syndicate) +"udY" = ( +/obj/machinery/power/apc{ + name = "Gamma Armory APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/suit_storage_unit/gamma, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/gamma/space) +"ued" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"uef" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkgreen" + }, +/area/centcom/ss220/admin3) +"ueF" = ( +/obj/mecha/combat/phazon, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"ueN" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"ueU" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/browntrenchcoat, +/obj/item/clothing/head/fedora/brownfedora{ + pixel_y = 7 + }, +/obj/item/clothing/shoes/cowboy{ + pixel_y = -5 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"ufd" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/shuttle/escape) +"ugE" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "SyndFB_prison_stroll_blast"; + layer = 3.1; + closingLayer = 3.1 + }, +/obj/machinery/door/airlock/hatch/syndicate/command{ + name = "Тюрьма" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkredcornersalt" + }, +/area/syndicate_mothership/jail) +"uhH" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 1 + }, +/obj/effect/decal/syndie_logo{ + icon_state = "logo6" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"uhJ" = ( +/obj/machinery/door/poddoor/multi_tile/two_tile_hor{ + id_tag = "SST_ready"; + layer = 3.01 + }, +/obj/machinery/shieldwall{ + dir = 8; + icon = 'icons/effects/beam.dmi'; + icon_state = "n_beam" + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership/elite_squad) +"uik" = ( +/obj/machinery/computer/shuttle/ferry/request{ + dir = 1 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/transport) +"uil" = ( +/obj/effect/landmark/abductor/agent{ + team = 2 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"uiD" = ( +/obj/structure/rack, +/obj/item/bodyanalyzer/advanced, +/obj/item/bodyanalyzer/advanced, +/obj/item/bodyanalyzer/advanced, +/obj/item/bodyanalyzer/advanced, +/obj/item/bodyanalyzer/advanced, +/obj/item/clothing/glasses/hud/health/night, +/obj/item/clothing/glasses/hud/health/night, +/obj/item/clothing/glasses/hud/health/night, +/obj/item/clothing/glasses/hud/health/night, +/obj/item/clothing/glasses/hud/health/night, +/obj/item/gun/medbeam, +/obj/item/gun/medbeam, +/obj/item/gun/medbeam, +/obj/item/gun/medbeam, +/obj/item/gun/medbeam, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"ujq" = ( +/obj/structure/light_fake/small, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"ujO" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin3) +"ujQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet/royalblue, +/area/shuttle/trade/sol) +"ukm" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/mineral/titanium, +/area/shuttle/escape) +"ulb" = ( +/obj/structure/table/wood/fancy/orange, +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "open"; + id_tag = "trader_privacy"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/machinery/door/window{ + dir = 4; + name = "Стойка"; + req_one_access_txt = "160" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"uln" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -30 + }, +/obj/machinery/cryopod/offstation{ + icon_state = "sleeper_s"; + occupied_icon_state = "sleeper_s"; + dir = 1; + base_icon_state = "sleeper_s-open" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"ulL" = ( +/obj/effect/landmark/spawner/syndieprisonwarp, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"ulY" = ( +/obj/item/flag/nt, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"umn" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"umL" = ( +/obj/machinery/light/spot, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/supply) +"umT" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/nitrogen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"unm" = ( +/obj/structure/table/wood, +/obj/item/candle/eternal/wizard{ + pixel_y = 11 + }, +/obj/item/coin/uranium, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"uns" = ( +/obj/structure/mirror{ + pixel_x = -30 + }, +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"unF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"uod" = ( +/obj/machinery/door/airlock/external{ + name = "Assault Pod"; + aiControlDisabled = 1; + req_access_txt = "150" + }, +/obj/docking_port/mobile/assault_pod, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"uow" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"uox" = ( +/obj/structure/flora/rock/jungle, +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"uoU" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo4" + }, +/obj/effect/turf_decal/siding/black{ + dir = 5 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"upr" = ( +/obj/structure/light_fake{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"upJ" = ( +/obj/structure/chair/sofa/corner{ + dir = 1 + }, +/obj/effect/turf_decal/box/red/corners{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"upU" = ( +/obj/effect/spawner/random_spawners/syndicate/loot{ + spawn_inside = null + }, +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"uqw" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluecornersalt" + }, +/area/centcom/ss220/admin3) +"uqx" = ( +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"urd" = ( +/obj/machinery/door/airlock/external{ + id_tag = "syndishuttle_door_int"; + locked = 1; + name = "Ship External Access"; + req_access_txt = "150" + }, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plating, +/area/shuttle/syndicate) +"urf" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"urs" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkyellow" + }, +/area/shuttle/escape) +"urK" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/gamma/space) +"utc" = ( +/obj/structure/bed/roller, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/shuttle/escape) +"utC" = ( +/obj/structure/closet/secure_closet/clown{ + req_access = null + }, +/obj/item/clothing/suit/soldiercoat, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkred" + }, +/area/syndicate_mothership/infteam) +"utJ" = ( +/turf/simulated/floor/carpet/green, +/area/centcom/ss220/park) +"utN" = ( +/obj/machinery/shieldwall{ + dir = 8; + icon = 'icons/effects/beam.dmi'; + icon_state = "n_beam" + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership/elite_squad) +"utQ" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"uud" = ( +/obj/structure/holohoop{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"uuR" = ( +/obj/structure/table, +/obj/item/beach_ball{ + pixel_y = 12 + }, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"uvv" = ( +/obj/structure/chair/sofa/corp/right, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"uwa" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"uws" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/bar) +"uxb" = ( +/obj/machinery/economy/vending/nta/engineer, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkyellowfull" + }, +/area/centcom/ss220/admin3) +"uxH" = ( +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"uxI" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkredalt" + }, +/area/centcom/ss220/jail) +"uxR" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/snacks/boiledbuckwheat{ + pixel_y = 2 + }, +/obj/item/kitchen/utensil/spoon{ + pixel_x = 11; + pixel_y = 8 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"uyJ" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "SFBQMLoad2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowcornersalt" + }, +/area/syndicate_mothership/cargo) +"uze" = ( +/obj/structure/chair/wheelchair/bike{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"uzJ" = ( +/obj/docking_port/mobile/emergency{ + dwidth = 11; + height = 18; + width = 29 + }, +/obj/machinery/door/airlock/titanium{ + aiControlDisabled = 1; + hackProof = 1; + id_tag = "s_docking_airlock"; + name = "Shuttle Hatch" + }, +/obj/docking_port/stationary{ + dir = 4; + dwidth = 11; + height = 18; + id = "emergency_away"; + name = "emergency centcom"; + width = 29 + }, +/turf/simulated/floor/plating, +/area/shuttle/escape) +"uAm" = ( +/obj/machinery/abductor/experiment{ + team = 4 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"uAA" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/turf/simulated/floor/carpet/cyan, +/area/centcom/ss220/general) +"uAG" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkbluealtstrip" + }, +/area/centcom/ss220/admin3) +"uAZ" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/escape) +"uBb" = ( +/obj/machinery/conveyor/east{ + id = "QMLoad" + }, +/obj/structure/plasticflaps/mining, +/obj/machinery/door/poddoor{ + id_tag = "QMLoaddoor"; + name = "Supply Dock Loading Door" + }, +/turf/simulated/floor/plating, +/area/centcom/ss220/supply) +"uBy" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/ert{ + pixel_y = 12 + }, +/obj/item/storage/firstaid/ert{ + pixel_y = 10 + }, +/obj/item/storage/firstaid/ert{ + pixel_y = 8 + }, +/obj/item/storage/firstaid/ert{ + pixel_y = 6 + }, +/obj/item/storage/firstaid/ert{ + pixel_y = 4 + }, +/obj/item/storage/firstaid/ert{ + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"uBV" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/storage/bag/cash/admin, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"uBX" = ( +/obj/structure/bookcase/manuals, +/obj/item/book/manual/wiki/sop_general, +/obj/item/book/manual/wiki/sop_engineering, +/obj/item/book/manual/wiki/sop_command, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"uCE" = ( +/obj/structure/chair/sofa/corner, +/obj/effect/turf_decal/box/red/corners{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"uCR" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"uDl" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "SST_armory_main"; + name = "SST Armory" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluealtstrip" + }, +/area/syndicate_mothership/elite_squad) +"uDC" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/tree/jungle/small{ + pixel_x = -40 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"uDK" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership/cargo) +"uEs" = ( +/obj/machinery/porta_turret/syndicate/interior, +/obj/structure/window/plasmareinforced{ + color = "red" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"uEN" = ( +/obj/effect/decal/warning_stripes/green/partial{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"uFa" = ( +/obj/structure/flora/junglebush/large, +/turf/simulated/floor/grass/jungle/no_creep, +/area/wizard_station) +"uFW" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stack/cable_coil{ + pixel_y = 10 + }, +/obj/item/stock_parts/cell/bluespace{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/stock_parts/cell/bluespace{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/stock_parts/cell/bluespace{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/stock_parts/cell/bluespace{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/robot_parts/robot_component/armour, +/obj/machinery/recharger/wallcharger{ + pixel_x = 30 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"uGb" = ( +/obj/structure/table/abductor, +/obj/effect/spawner/lootdrop/CCfood/meat, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/turf/simulated/floor/fakespace, +/area/centcom/ss220/bar) +"uGR" = ( +/obj/structure/chair/comfy/red, +/turf/simulated/floor/carpet/arcade, +/area/trader_station/sol) +"uHA" = ( +/obj/structure/table/glass, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/radio/headset/centcom{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin3) +"uHI" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/shuttle/escape) +"uIx" = ( +/obj/structure/table/wood, +/obj/item/grenade/syndieminibomb{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/grenade/syndieminibomb{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/grenade/syndieminibomb{ + pixel_x = 4; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"uIB" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"uIE" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"uJb" = ( +/obj/structure/sink/kitchen/west, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"uJd" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/rock/jungle, +/obj/item/flashlight/lantern{ + anchored = 1; + layer = 5; + light_color = "#FF9F40"; + on = 1; + pixel_x = -1; + pixel_y = 10 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"uJu" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"uJB" = ( +/obj/machinery/door_control/no_emag{ + wires = 1; + emagged = 1; + req_access_txt = "153"; + pixel_y = -30; + id = "SIT_outside"; + name = "SIT Outside Doors" + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"uJP" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/centcom/ss220/evac) +"uKg" = ( +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"uKn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"uKS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/bar) +"uLd" = ( +/obj/effect/turf_decal/delivery/red, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership) +"uMm" = ( +/obj/structure/flora/tree/jungle, +/obj/item/flashlight/lantern{ + anchored = 1; + light_color = "#FF9F40"; + on = 1; + pixel_x = -9; + pixel_y = 11 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"uMC" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/grass/jungle + }, +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/park) +"uMF" = ( +/obj/structure/closet/cardboard, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"uMM" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 7 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/infteam) +"uNg" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo18" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"uNw" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/door_control/no_emag{ + id = "syndicate_jail_cell"; + name = "Bolt Cell Doors"; + normaldoorcontrol = 1; + pixel_y = -32; + req_access_txt = "150"; + specialfunctions = 4; + wires = 1 + }, +/obj/effect/landmark/spawner/prisonsecuritywarp, +/obj/machinery/flasher_button{ + id = "syndie_FB_cells"; + layer = 4; + name = "Prison Flasher"; + req_access_txt = "150"; + pixel_y = -24 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"uNx" = ( +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"uNM" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/paper{ + pixel_y = 4 + }, +/obj/machinery/door/window/classic/normal{ + name = "Стойка библиотекаря" + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"uNO" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random/east, +/obj/effect/landmark/spawner/prisonsecuritywarp, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"uNZ" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue, +/turf/simulated/floor/carpet/arcade, +/area/centcom/ss220/bar) +"uOr" = ( +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"uOx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/flashlight/seclite, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"uOO" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/syndicate_pistol{ + pixel_x = 32 + }, +/obj/effect/decal/syndie_logo{ + icon_state = "logo12" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"uOS" = ( +/obj/machinery/door_control/no_emag/south{ + id = "CC_Armory_Advanced_2"; + name = "Огнестрел"; + req_one_access_txt = "114" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"uPs" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo8" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"uQl" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/browntrenchcoat, +/obj/item/clothing/head/fedora/brownfedora{ + pixel_y = 7 + }, +/obj/item/clothing/shoes/cowboy{ + pixel_y = -5 + }, +/turf/simulated/floor/carpet/blue, +/area/centcom/ss220/general) +"uQo" = ( +/obj/structure/sink/directional/west, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"uRt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"uRC" = ( +/obj/machinery/chem_dispenser/botanical/upgraded, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/evac) +"uRG" = ( +/obj/structure/table, +/turf/simulated/floor/carpet/royalblack, +/area/shuttle/administration) +"uRK" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"uRN" = ( +/obj/machinery/door/airlock/external{ + name = "Assault Pod"; + aiControlDisabled = 1; + req_access_txt = "150" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"uSa" = ( +/obj/effect/decal/warning_stripes/white, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"uSr" = ( +/obj/structure/rack/holorack, +/obj/item/scythe/tele, +/obj/item/scythe/tele, +/obj/item/scythe/tele, +/obj/item/scythe/tele, +/obj/item/scythe/tele, +/obj/item/scythe/tele, +/obj/item/scythe/tele, +/obj/item/scythe/tele, +/obj/item/scythe/tele, +/obj/item/scythe/tele, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/clusterbuster/cleaner, +/obj/item/grenade/clusterbuster/cleaner, +/obj/item/grenade/clusterbuster/cleaner, +/obj/effect/turf_decal/delivery/white, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"uSI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/carpet/orange, +/area/centcom/ss220/general) +"uUb" = ( +/obj/machinery/door/airlock/titanium/glass{ + name = "Emergency Airlock Access"; + req_one_access_txt = "63" + }, +/turf/simulated/floor/plasteel, +/area/shuttle/escape) +"uUn" = ( +/obj/structure/window/reinforced, +/obj/item/flag/species/machine, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"uUA" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"uUK" = ( +/obj/effect/turf_decal/siding/black{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership/outside) +"uVK" = ( +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"uVO" = ( +/obj/machinery/economy/vending/cigarette/free, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"uWb" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"uWc" = ( +/obj/structure/barricade{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "diagonalWall3"; + name = "diagonal shields"; + proj_pass_rate = 0; + max_integrity = 200; + armor = list(melee = 10, bullet = 50, laser = 50, energy = 50, bomb = 10, rad = 100, fire = 10, acid = 0); + stacktype = null; + dir = 4 + }, +/turf/simulated/floor/indestructible/transparent_floor, +/area/shuttle/syndicate) +"uWu" = ( +/obj/item/flag/nt, +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"uWD" = ( +/obj/structure/window/plasmareinforced{ + color = "red"; + dir = 1 + }, +/obj/structure/shuttle/engine/platform{ + layer = 2.9 + }, +/obj/structure/shuttle/engine/heater{ + icon_state = "heater3x3" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/syndicate) +"uXa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"uXI" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/spawner/prisonsecuritywarp, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"uXT" = ( +/obj/structure/light_fake/small, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"uYx" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/structure/light_fake{ + dir = 4 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"uYz" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/marker_beacon/dock_marker/collision, +/turf/simulated/floor/plasteel{ + icon_state = "warndarkgreycornerred" + }, +/area/syndicate_mothership/infteam) +"uYN" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"uZZ" = ( +/obj/structure/table, +/obj/structure/closet/walllocker/medlocker/north, +/obj/item/reagent_containers/applicator/dual{ + pixel_y = 4 + }, +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"vaf" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"vbb" = ( +/obj/machinery/door/airlock/hatch/syndicate/command{ + name = "Тюрьма" + }, +/obj/machinery/door/poddoor/impassable{ + id_tag = "SyndFB_prison_stroll_blast"; + layer = 3.1; + closingLayer = 3.1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "brownoldfull" + }, +/area/syndicate_mothership/jail) +"vce" = ( +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/admin1) +"vcD" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/shuttle/escape) +"vcG" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"vcQ" = ( +/obj/structure/flora/tree/jungle/small{ + pixel_x = -48 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"vdr" = ( +/obj/structure/sign/vacuum/external, +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/supply) +"vef" = ( +/obj/structure/light_fake{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"veo" = ( +/obj/effect/decal/syndie_logo, +/obj/effect/turf_decal/siding/black{ + dir = 9 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"veQ" = ( +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"veZ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/light_fake/small{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"vfs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/light_fake{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"vfw" = ( +/obj/effect/mapping_helpers/light, +/obj/structure/shuttle/engine/large, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/cargo) +"vfU" = ( +/turf/simulated/wall/indestructible/syndicate{ + smoothing_flags = 2 + }, +/area/syndicate_mothership/infteam) +"vfZ" = ( +/obj/structure/chair/comfy/purp{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"vgA" = ( +/obj/machinery/bodyscanner, +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"vgC" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo6" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"vgG" = ( +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/obj/machinery/photocopier/syndie, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"vgR" = ( +/obj/machinery/computer/card/centcom{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark{ + icon_state = "navybluefull" + }, +/area/centcom/ss220/admin2) +"vgV" = ( +/obj/structure/table, +/obj/machinery/door_control/no_emag{ + id = "syndieshutters_Aspid"; + name = "remote shutter control"; + req_access_txt = "150"; + wires = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"vhx" = ( +/obj/structure/window/reinforced, +/obj/item/flag/solgov, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"vhB" = ( +/obj/structure/closet/syndicate/sst, +/obj/item/ammo_box/magazine/mm556x45/bleeding, +/obj/item/ammo_box/magazine/mm556x45, +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"vhV" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/shuttle/escape) +"vik" = ( +/obj/item/flag/solgov, +/obj/machinery/economy/vending/wallmed/directional/north, +/obj/structure/light_fake{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"viA" = ( +/turf/simulated/floor/plating, +/area/syndicate_mothership) +"viN" = ( +/obj/structure/lattice, +/turf/simulated/floor/indestructible/transparent_floor, +/area/shuttle/syndicate) +"vjh" = ( +/obj/structure/computerframe, +/obj/effect/decal/syndie_logo, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"vjy" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"vjA" = ( +/obj/structure/light_fake/spot, +/obj/machinery/door_control/no_emag{ + id = "syndFB_lockdown"; + name = "Forward Base Bridge Lockdown"; + pixel_y = -25; + req_access_txt = "153"; + wires = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"vjW" = ( +/obj/structure/window/plasmareinforced{ + color = "red"; + dir = 1 + }, +/obj/structure/shuttle/engine/platform{ + layer = 2.9 + }, +/obj/structure/shuttle/engine/heater{ + icon_state = "heater3x3_side_inv" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/syndicate) +"vkc" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "CC_Armory"; + layer = 3; + name = "Оружейная" + }, +/obj/effect/decal/warning_stripes/red, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"vkl" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"vkn" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo2" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"vkA" = ( +/obj/structure/window/reinforced, +/obj/item/flag/species/human, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"vkB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"vkM" = ( +/obj/machinery/economy/vending/coffee/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"vkP" = ( +/mob/living/simple_animal/hostile/creature{ + name = "Experiment 35b" + }, +/obj/item/candle/eternal/wizard, +/turf/simulated/floor/grass/jungle/no_creep, +/area/wizard_station) +"vkV" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"vmi" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/door/airlock/public/glass{ + name = "Ботаника" + }, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"vnp" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"vop" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"voq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"voT" = ( +/obj/item/radio/intercom/syndicate{ + pixel_x = 28; + dir = 8 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"voU" = ( +/obj/machinery/porta_turret/syndicate{ + layer = 3.1 + }, +/turf/simulated/wall/mineral/plastitanium, +/area/shuttle/syndicate) +"vpo" = ( +/turf/space/transit/horizontal{ + dir = 4 + }, +/area/space/centcomm) +"vpt" = ( +/obj/machinery/door/airlock/external{ + id_tag = "s_docking_airlock"; + name = "Shuttle Hatch" + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 8; + height = 15; + id = "admin"; + name = "administration shuttle"; + timid = 1; + width = 18 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 9; + height = 18; + id = "admin_away"; + name = "centcom bay 1"; + timid = 1; + width = 19 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluealt" + }, +/area/shuttle/administration) +"vpw" = ( +/obj/structure/chair/sofa/left, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"vpX" = ( +/obj/structure/chair/sofa, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"vpZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/delivery/white, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"vqa" = ( +/obj/structure/table/wood, +/obj/effect/decal/syndie_logo{ + icon_state = "logo12" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"vqP" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"vrd" = ( +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/syndicate_mothership/outside) +"vrg" = ( +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/admin1) +"vru" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"vry" = ( +/obj/machinery/economy/vending/cola/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"vrA" = ( +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/stamp/denied{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stamp, +/obj/structure/table/reinforced, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"vrJ" = ( +/turf/simulated/floor/light/disco, +/area/centcom/ss220/bar) +"vsk" = ( +/obj/structure/chair/sofa/left, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/elite_squad) +"vsE" = ( +/obj/item/flag/nt, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"vsO" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"vsR" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredcornersalt" + }, +/area/syndicate_mothership/jail) +"vti" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/simulated/floor/mineral/abductor, +/area/centcom/ss220/bar) +"vtt" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle/large{ + pixel_x = 13; + pixel_y = 9 + }, +/obj/effect/decal/syndie_logo{ + icon_state = "logo10" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"vuo" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"vuv" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/machinery/economy/vending/autodrobe, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"vuz" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"vuE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership) +"vuP" = ( +/obj/mecha/combat/marauder/seraph/loaded, +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkbrown" + }, +/area/centcom/ss220/admin3) +"vvC" = ( +/obj/machinery/door_control/no_emag{ + pixel_x = -32; + id = "SST_ready"; + req_access_txt = "150"; + specialfunctions = 4; + wires = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkred" + }, +/area/syndicate_mothership/elite_squad) +"vwn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 30 + }, +/obj/item/reagent_containers/food/drinks/cans/beer, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"vwP" = ( +/obj/machinery/sleeper/upgraded{ + dir = 2 + }, +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"vwR" = ( +/obj/effect/turf_decal/arrows/red{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"vwT" = ( +/obj/structure/railing/corner, +/obj/machinery/door_control/no_emag{ + id = "syndFB_teleport"; + name = "Teleporter"; + wires = 1; + specialfunctions = 4; + req_access_txt = "153"; + pixel_y = 32; + emagged = 1 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding/corner{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"vwW" = ( +/obj/effect/bump_teleporter{ + id = "Synd11"; + id_target = "Synd21" + }, +/turf/simulated/floor/plasteel{ + color = "gray"; + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"vwY" = ( +/obj/machinery/light/small/directional/east, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"vxx" = ( +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership/infteam) +"vxy" = ( +/turf/simulated/wall/mineral/plastitanium, +/area/shuttle/syndicate_sit) +"vxK" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/syndicate_mothership/elite_squad) +"vyv" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"vyx" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkyellowalt" + }, +/area/centcom/ss220/supply) +"vAq" = ( +/obj/machinery/door_control/no_emag{ + id = "syndFB_baseright"; + name = "Forward Base Access"; + pixel_y = -25; + req_access_txt = "153"; + wires = 1; + emagged = 1 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"vBp" = ( +/obj/machinery/door/airlock/titanium/glass{ + name = "Shuttle Cargo Hatch" + }, +/turf/simulated/floor/plasteel, +/area/shuttle/escape) +"vCj" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"vCF" = ( +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/park) +"vCS" = ( +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"vCZ" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/item/bedsheet/purple{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/centcom/ss220/general) +"vDq" = ( +/obj/structure/curtain/black{ + pixel_x = -32; + pixel_y = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/obj/machinery/atmospherics/portable/canister/oxygen, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkyellowaltstrip" + }, +/area/syndicate_mothership/control) +"vDx" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo16" + }, +/obj/effect/turf_decal/siding/black{ + dir = 10 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"vDJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/ore_box, +/obj/effect/turf_decal/delivery/white, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"vEb" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkbluecornersalt" + }, +/area/centcom/ss220/admin1) +"vEg" = ( +/obj/structure/light_fake/spot, +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"vEn" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/light_fake/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership/elite_squad) +"vEJ" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding/corner{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"vEK" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/supply) +"vFm" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo18" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"vFp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 8; + water_overlay_image = null + }, +/area/centcom/ss220/evac) +"vFv" = ( +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/gamma/space) +"vFG" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/heavy, +/obj/item/clothing/suit/armor/heavy, +/obj/item/clothing/suit/armor/heavy, +/obj/item/clothing/suit/armor/heavy, +/obj/item/clothing/suit/armor/heavy, +/obj/item/clothing/shoes/combat/swat, +/obj/item/clothing/shoes/combat/swat, +/obj/item/clothing/shoes/combat/swat, +/obj/item/clothing/shoes/combat/swat, +/obj/item/clothing/shoes/combat/swat, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"vHa" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 1 + }, +/obj/structure/shuttle/engine/heater, +/turf/simulated/floor/plating, +/area/syndicate_mothership/cargo) +"vHq" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"vHs" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin2) +"vHT" = ( +/obj/effect/decal/nanotrasen_logo/n6, +/turf/simulated/floor/plasteel, +/area/centcom/ss220/evac) +"vIc" = ( +/obj/machinery/door/airlock/external{ + id_tag = "s_docking_airlock"; + name = "Shuttle Hatch"; + req_access_txt = "109" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/shuttle/specops) +"vIm" = ( +/obj/machinery/door/airlock/external{ + id_tag = "specops_away"; + name = "Shuttle Hatch" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"vIu" = ( +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"vIQ" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbluealtstrip" + }, +/area/centcom/ss220/admin2) +"vIV" = ( +/obj/machinery/economy/vending/cola/free, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"vJf" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"vKj" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluecornersalt" + }, +/area/syndicate_mothership/elite_squad) +"vKu" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/clothing/accessory/medal/gold{ + pixel_y = 9 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/carpet/red, +/area/syndicate_mothership/control) +"vKE" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/decal/syndie_logo{ + icon_state = "logo15" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"vKP" = ( +/obj/structure/chair/sofa/bench{ + cover_color = "#68452a"; + dir = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"vMi" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"vMs" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"vML" = ( +/obj/structure/chair/sofa/bench/left, +/turf/simulated/floor/plasteel{ + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"vMP" = ( +/obj/structure/sign/poster/contraband/syndicate_pistol{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"vNu" = ( +/obj/structure/window/plasmareinforced{ + color = "red"; + dir = 1 + }, +/obj/structure/shuttle/engine/platform{ + layer = 2.9 + }, +/obj/structure/shuttle/engine/heater{ + icon_state = "heater3x3_side" + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/syndicate) +"vNx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/shuttle/administration) +"vNO" = ( +/obj/machinery/door_control/no_emag/west{ + id = "sec"; + name = "CentCom Security Shutters"; + req_one_access_txt = "101" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"vNQ" = ( +/obj/effect/bump_teleporter{ + id = "Synd22"; + id_target = "Synd12" + }, +/turf/simulated/floor/plasteel{ + color = "gray"; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"vOd" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo14" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"vOq" = ( +/obj/structure/flora/junglebush/large{ + pixel_y = -7 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"vOJ" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet/purple, +/area/wizard_station) +"vON" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"vPk" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"vPl" = ( +/obj/machinery/door/poddoor/multi_tile/three_tile_hor{ + id_tag = "Aspid_deck" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"vPu" = ( +/obj/structure/chair, +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"vPG" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate_elite) +"vPJ" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkredalt" + }, +/area/centcom/ss220/jail) +"vPK" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/soda/upgraded{ + dir = 4; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"vPR" = ( +/obj/structure/sink/directional/east, +/obj/structure/mirror{ + pixel_x = -26 + }, +/turf/simulated/floor/plasteel/freezer, +/area/trader_station/sol) +"vPU" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo4" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"vQD" = ( +/obj/effect/turf_decal/woodsiding{ + dir = 9 + }, +/turf/simulated/floor/carpet/royalblack, +/area/syndicate_mothership/control) +"vQE" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "SST_to_ATOM" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"vRj" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"vRN" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"vSa" = ( +/obj/structure/closet/crate, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/radio, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"vSv" = ( +/obj/effect/turf_decal/stripes/line, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"vSI" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluealt" + }, +/area/shuttle/administration) +"vTX" = ( +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/plasteel/freezer, +/area/ninja/holding) +"vUB" = ( +/obj/effect/turf_decal/delivery/red, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"vUI" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"vUQ" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/carpet, +/area/centcom/ss220/admin3) +"vVd" = ( +/obj/structure/light_fake/spot, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"vVk" = ( +/turf/simulated/wall/mineral/plastitanium/nodiagonal, +/area/syndicate_mothership/cargo) +"vVI" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership) +"vVK" = ( +/obj/effect/landmark/shuttle_import, +/turf/space, +/area/space/centcomm) +"vVY" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"vWq" = ( +/obj/structure/statue/furukai{ + layer = 4; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding."; + dir = 4; + icon_state = "plaque"; + name = "Comemmorative Plaque" + }, +/area/centcom/ss220/park) +"vWR" = ( +/obj/machinery/door/airlock/centcom{ + name = "ОБР"; + req_one_access_txt = "109" + }, +/obj/effect/decal/warning_stripes/white, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"vXc" = ( +/obj/machinery/conveyor/west{ + id = "SFBQMLoad2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/cargo) +"vXk" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/supply) +"vXr" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo13" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/elite_squad) +"vXu" = ( +/obj/machinery/abductor/experiment{ + team = 1 + }, +/turf/simulated/floor/plating/abductor, +/area/abductor_ship) +"vXw" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "navybluecornersalt" + }, +/area/syndicate_mothership/control) +"vXB" = ( +/obj/structure/chair/sofa/right, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"vYt" = ( +/obj/structure/chair/comfy/green, +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/carpet/green, +/area/centcom/ss220/general) +"vYw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"vYY" = ( +/obj/structure/table/glass, +/obj/machinery/photocopier/faxmachine/longrange{ + department = "Central Command"; + pixel_y = 4; + req_one_access = list(101) + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"vZd" = ( +/obj/machinery/door/airlock/centcom{ + name = "БлюСпейс Артиллерия"; + req_one_access_txt = "114" + }, +/obj/effect/decal/warning_stripes/red, +/obj/machinery/door_control/no_emag/east{ + id = "CC_BSA"; + name = "Blast Door Control"; + req_one_access_txt = "114" + }, +/obj/machinery/door/poddoor/impassable{ + id_tag = "CC_BSA"; + layer = 3; + name = "Блюспейс Артиллерия" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"vZM" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership/infteam) +"vZZ" = ( +/obj/machinery/conveyor/west{ + id = "QMLoad2" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"wac" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "SST Private Room"; + id_tag = "SSTprivateroom" + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"wae" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/trade_sol/sci, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"wap" = ( +/obj/structure/chair/sofa{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"wbO" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/general) +"wcw" = ( +/obj/effect/turf_decal/box/white, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"wdk" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"wdF" = ( +/turf/simulated/floor/indestructible/transparent_floor, +/area/shuttle/trade/sol) +"wdG" = ( +/obj/machinery/computer/bsa_control/admin, +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"wdR" = ( +/obj/machinery/computer, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"wem" = ( +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 1; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin3) +"wex" = ( +/obj/effect/decal/nanotrasen_logo/n5, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"weE" = ( +/obj/structure/chair/sofa/bench/left{ + cover_color = "#68452a"; + layer = 3.1 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"wfo" = ( +/obj/machinery/economy/vending/cola/free, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"wfs" = ( +/obj/machinery/chem_dispenser, +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"wft" = ( +/obj/machinery/photocopier/faxmachine/longrange/syndie{ + name = "Фокс машина" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkyellowfull" + }, +/area/syndicate_mothership/cargo) +"wfx" = ( +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + pixel_y = -32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/obj/item/kirbyplants, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 10 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"wfY" = ( +/obj/item/flag/syndi, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"wgc" = ( +/obj/structure/rack, +/obj/item/gun/energy/lasercannon, +/obj/item/gun/energy/lasercannon, +/obj/item/gun/energy/lasercannon, +/obj/item/gun/energy/lasercannon, +/obj/item/gun/energy/lasercannon, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"wge" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkredcornersalt" + }, +/area/centcom/ss220/jail) +"wgp" = ( +/obj/machinery/computer/shuttle/syndicate/recall, +/obj/machinery/door_control/no_emag{ + id = "nukeop_ready"; + name = "Mission Launch Control"; + pixel_y = 26; + req_access_txt = "151"; + specialfunctions = 4; + wires = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"wgD" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/item/flash, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/escape) +"wgG" = ( +/obj/structure/rack, +/obj/item/kitchen/knife/carrotshiv, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"wgM" = ( +/obj/structure/curtain/black{ + pixel_x = -32; + pixel_y = -32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/obj/structure/closet/secure_closet/syndicate_officer, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 10 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"wjg" = ( +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/admin1) +"wji" = ( +/obj/machinery/economy/vending/sovietsoda, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"wjw" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"wjB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/impassable{ + id_tag = "SST_armory_advanced"; + name = "SST Armory Advanced Weapons" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"wjI" = ( +/obj/structure/flora/junglebush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"wjW" = ( +/obj/structure/extinguisher_cabinet, +/turf/simulated/wall/mineral/titanium, +/area/shuttle/escape) +"wke" = ( +/obj/structure/statue/sandstone/assistant{ + anchored = 1; + desc = "Он точно не спит на посту"; + icon = 'icons/mob/simple_human.dmi'; + icon_state = "syndicate_smg"; + max_integrity = 9999; + name = "Биба"; + obj_integrity = 9999 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"wkj" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = -30 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"wkC" = ( +/obj/machinery/door/poddoor{ + id_tag = "nukeop_ready"; + layer = 2.71; + name = "Shuttle Dock Door" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"wlp" = ( +/obj/machinery/economy/vending/chinese/free, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"wmh" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "vault" + }, +/area/shuttle/escape) +"wmp" = ( +/obj/effect/turf_decal/delivery, +/obj/mecha/combat/marauder/mauler/loaded, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"wmC" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/specops) +"wnU" = ( +/obj/structure/table/glass, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin3) +"wnX" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/spawner/syndicateofficer, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"woq" = ( +/obj/structure/flora/grass/jungle, +/obj/effect/mapping_helpers/light, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"wow" = ( +/obj/structure/window/reinforced, +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"wpd" = ( +/obj/item/flag/solgov, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"wql" = ( +/obj/structure/fence/corner{ + color = "#b0b7c6"; + dir = 4; + invulnerable = 1 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"wqp" = ( +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership/elite_squad) +"wqZ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/elite_squad) +"wrb" = ( +/obj/structure/chair/sofa/right, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin1) +"wrq" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/flashlight/lamp/green/off{ + layer = 3.1; + pixel_x = -16; + pixel_y = 24 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"wrt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"wrP" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo18" + }, +/obj/effect/turf_decal/siding/black, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"wst" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"wsD" = ( +/obj/machinery/computer/shuttle/white_ship, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"wsH" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"wtc" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"wtd" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/radio/phone{ + desc = "How else would the wizards order pizza?" + }, +/obj/effect/turf_decal/woodsiding{ + dir = 6 + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"wtn" = ( +/obj/structure/table/wood, +/obj/machinery/kitchen_machine/microwave/upgraded{ + pixel_y = 5 + }, +/obj/structure/curtain/black{ + pixel_x = 32; + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/infteam) +"wtv" = ( +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/infteam) +"wum" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/spotlight/jade, +/turf/simulated/floor/indestructible/transparent_floor{ + icon_state = "router_dir"; + dir = 10 + }, +/area/shuttle/syndicate) +"wuP" = ( +/obj/structure/table/wood, +/obj/item/storage/box/donkpockets, +/obj/item/radio/intercom/syndicate{ + pixel_y = -28; + dir = 1 + }, +/obj/structure/light_fake/small, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"wuV" = ( +/turf/simulated/floor/carpet/orange, +/area/centcom/ss220/general) +"wuX" = ( +/obj/structure/chair/comfy/purp{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"wwn" = ( +/obj/machinery/door/airlock/titanium/glass{ + req_one_access_txt = "160"; + id_tag = "soltrader_north" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/carpet/orange, +/area/shuttle/trade/sol) +"wwG" = ( +/obj/structure/flora/junglebush/large{ + pixel_y = -6 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"wwK" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin/syndicate{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/pen/fancy{ + pixel_x = 8 + }, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/control) +"wxg" = ( +/obj/structure/closet/crate/freezer/iv_storage, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"wxt" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/stack/ore/uranium, +/obj/effect/turf_decal/woodsiding{ + dir = 10 + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"wxv" = ( +/obj/structure/shuttle/engine/platform{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/syndicate) +"wxU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/delivery/white, +/obj/effect/spawner/random_spawners/syndicate/loot{ + spawn_inside = null + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"wye" = ( +/obj/structure/fence/post{ + color = "#b0b7c6"; + invulnerable = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"wzw" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"wzD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"wzN" = ( +/obj/machinery/door/airlock/external{ + aiControlDisabled = 1; + hackProof = 1; + name = "Arrival Airlock" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"wAF" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo4" + }, +/obj/effect/turf_decal/woodsiding{ + dir = 5 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership) +"wAQ" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/syringe/charcoal, +/obj/item/reagent_containers/syringe/charcoal{ + pixel_y = 2 + }, +/obj/item/reagent_containers/syringe/charcoal{ + pixel_y = 4 + }, +/obj/item/gun/syringe/syndicate, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/adv, +/obj/item/storage/box/syndie_kit/bonerepair, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"wBj" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/reagent_containers/syringe/bioterror{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/reagent_containers/syringe/capulettium_plus{ + pixel_x = -5 + }, +/obj/item/reagent_containers/syringe/gluttony{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/syringe/lethal{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/reagent_containers/syringe/pancuronium{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/reagent_containers/syringe/sarin{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/bottle/mutagen{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"wBp" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"wBu" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "navybluecornersalt" + }, +/area/syndicate_mothership/control) +"wBT" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -7 + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"wBU" = ( +/turf/simulated/floor/plasteel/stairs/left, +/area/centcom/ss220/evac) +"wCi" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"wCN" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkbluealtstrip" + }, +/area/centcom/ss220/admin1) +"wCP" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/shuttle/escape) +"wDi" = ( +/turf/simulated/wall/mineral/titanium, +/area/shuttle/supply) +"wDR" = ( +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkgreen" + }, +/area/centcom/ss220/admin3) +"wER" = ( +/obj/machinery/optable, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"wEY" = ( +/obj/machinery/clonepod/upgraded, +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"wFO" = ( +/obj/machinery/conveyor/east{ + id = "QMLoad" + }, +/turf/simulated/floor/plating, +/area/centcom/ss220/supply) +"wGg" = ( +/obj/structure/closet/secure_closet/contractor, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"wGz" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"wGE" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"wGX" = ( +/obj/structure/barricade{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "diagonalWall3"; + name = "diagonal shields"; + proj_pass_rate = 0; + max_integrity = 200; + armor = list(melee = 10, bullet = 50, laser = 50, energy = 50, bomb = 10, rad = 100, fire = 10, acid = 0); + stacktype = null; + dir = 8 + }, +/turf/simulated/floor/indestructible/transparent_floor, +/area/shuttle/syndicate_elite) +"wHd" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"wHq" = ( +/obj/effect/decal/warning_stripes/white/hollow{ + color = "76643a" + }, +/obj/machinery/teleport/station, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"wHR" = ( +/obj/structure/computerframe{ + dir = 4 + }, +/obj/item/paper/synditele, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"wId" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/escape) +"wIp" = ( +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + icon_state = "warndarkgreyred" + }, +/area/syndicate_mothership/infteam) +"wIB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/beach/away/coastline{ + dir = 9; + water_overlay_image = null + }, +/area/centcom/ss220/evac) +"wIC" = ( +/obj/machinery/computer/scan_consolenew, +/turf/simulated/floor/plasteel/dark{ + icon_state = "barber" + }, +/area/shuttle/administration) +"wIQ" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 6; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin3) +"wIV" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"wJb" = ( +/obj/mecha/combat/durand/loaded, +/turf/simulated/floor/mech_bay_recharge_floor, +/area/centcom/ss220/admin3) +"wJe" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/simulated/floor/beach/away/water{ + water_overlay_image = null + }, +/area/syndicate_mothership/outside) +"wKA" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/trade_sol/sec, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"wKU" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"wLN" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random_spawners/syndicate/loot{ + spawn_inside = null + }, +/obj/structure/fans/tiny/invisible, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"wMx" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/centcom/ss220/bar) +"wMJ" = ( +/turf/simulated/floor/carpet/cyan, +/area/centcom/ss220/general) +"wMN" = ( +/obj/structure/noticeboard{ + pixel_x = -32 + }, +/obj/item/paper/syndimemo{ + info = "ПОЛУЧИТЕ ЭТОТ ЕБУЧИЙ ДИСК!" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"wMP" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/portable/canister/nitrogen, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"wMW" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + req_access = null + }, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor" + }, +/area/syndicate_mothership/elite_squad) +"wNi" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo4" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"wOh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"wOm" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/effect/decal/syndie_logo{ + icon_state = "logo2" + }, +/obj/effect/turf_decal/siding/black{ + dir = 1 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"wOB" = ( +/obj/machinery/economy/vending/nta/janitor, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkpurplefull" + }, +/area/centcom/ss220/admin3) +"wOF" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 7; + height = 5; + id = "sit_away"; + name = "Syndicate Base"; + width = 11; + turf_type = /turf/simulated/floor/plating + }, +/turf/simulated/floor/plating, +/area/syndicate_mothership/infteam) +"wOH" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/impassable{ + id_tag = "СС_Office_COO" + }, +/turf/simulated/floor/plating, +/area/centcom/ss220/admin2) +"wOK" = ( +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"wOX" = ( +/obj/machinery/economy/vending/tool/free, +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"wPj" = ( +/obj/machinery/door/window/brigdoor{ + color = "red"; + dir = 1; + icon_state = "rightsecure"; + name = "Riot Control" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"wPL" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/syndicate, +/obj/item/pen/multi/gold{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"wPX" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/decal/syndie_logo{ + icon_state = "logo9" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"wQK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + layer = 4.2 + }, +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/bar) +"wQR" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/centcom/ss220/bar) +"wRe" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"wRu" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"wRC" = ( +/obj/machinery/cooker/deepfryer, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"wRW" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red{ + color = "#aa2222" + }, +/obj/machinery/door_control/no_emag{ + pixel_x = -32; + id = "Aspid_poddor_left"; + wires = 1; + req_access_txt = "153"; + name = "Aspid poddor"; + emagged = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkyellowcornersalt" + }, +/area/syndicate_mothership/cargo) +"wSr" = ( +/obj/effect/bump_teleporter{ + id = "Synd25"; + id_target = "Synd15" + }, +/turf/simulated/floor/plasteel{ + color = "gray"; + icon_state = "rampbottom" + }, +/area/syndicate_mothership) +"wSu" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/structure/sign/bobross{ + pixel_y = 32 + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"wSY" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular, +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "redcorner" + }, +/area/shuttle/escape) +"wTs" = ( +/obj/structure/chair/comfy/red, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"wTt" = ( +/obj/structure/lattice, +/obj/effect/mob_spawn/human/corpse/clown, +/turf/space, +/area/space/centcomm) +"wTG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "neutral" + }, +/area/centcom/ss220/evac) +"wTV" = ( +/obj/structure/table/abductor, +/obj/effect/spawner/lootdrop/CCfood/meat, +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/turf/simulated/floor/fakespace, +/area/centcom/ss220/bar) +"wWg" = ( +/obj/machinery/door/poddoor{ + id_tag = "SIT_ready"; + name = "Shuttle Dock Door" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/infteam) +"wWU" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"wXs" = ( +/obj/structure/sign/poster/contraband/c20r{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"wXx" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/glass/beaker/waterbottle/large{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"wYb" = ( +/obj/machinery/computer/shuttle/trade/sol, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/trader_station/sol) +"wYt" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/admin2) +"wYC" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility/chief/full{ + pixel_y = 9 + }, +/obj/item/storage/belt/utility/chief/full{ + pixel_y = 6 + }, +/obj/item/storage/belt/utility/chief/full{ + pixel_y = 3 + }, +/obj/item/storage/belt/utility/chief/full, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"wZc" = ( +/obj/item/beach_ball, +/obj/item/clothing/glasses/sunglasses/yeah{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/beach/away/sand, +/area/centcom/ss220/evac) +"wZp" = ( +/obj/effect/turf_decal/bot_white, +/obj/mecha/combat/durand/rover/loaded, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"wZv" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"wZM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"xau" = ( +/obj/docking_port/stationary/transit{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_transit"; + name = "labor in transit"; + width = 9 + }, +/turf/space/transit, +/area/space/centcomm) +"xaX" = ( +/obj/machinery/economy/vending/coffee/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"xaZ" = ( +/obj/structure/table/reinforced, +/obj/item/grenade/plastic/c4{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/grenade/syndieminibomb{ + pixel_x = 8 + }, +/obj/item/radio/beacon/syndicate/bomb{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/item/radio/beacon/syndicate/bomb{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/item/grenade/plastic/c4{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/grenade/syndieminibomb{ + pixel_x = 8 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 30 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"xba" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/holohoop{ + dir = 8; + pixel_x = -5 + }, +/obj/effect/decal/warning_stripes/red/partial{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"xbh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"xbw" = ( +/obj/structure/curtain/black{ + pixel_y = -32; + anchored = 1 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"xbY" = ( +/obj/docking_port/stationary/transit{ + dir = 8; + dwidth = 10; + height = 35; + id = "whiteship_transit"; + name = "whiteship in transit"; + width = 21 + }, +/turf/space/transit/horizontal{ + dir = 4 + }, +/area/space/centcomm) +"xcj" = ( +/obj/effect/landmark/spawner/prisonwarp, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/centcom/ss220/jail) +"xcx" = ( +/obj/structure/closet/cabinet/wizard, +/turf/simulated/floor/carpet/black, +/area/wizard_station) +"xcA" = ( +/obj/structure/light_fake, +/obj/structure/chair/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/carpet/arcade, +/area/trader_station/sol) +"xcG" = ( +/obj/structure/window/reinforced{ + color = "red"; + dir = 8 + }, +/obj/structure/window/reinforced{ + color = "red"; + dir = 4 + }, +/obj/structure/window/reinforced{ + color = "red"; + dir = 1 + }, +/obj/structure/grille, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/control) +"xdE" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/mob/living/simple_animal/turkey, +/turf/simulated/floor/grass/no_creep, +/area/centcom/ss220/evac) +"xdN" = ( +/obj/machinery/door_control/no_emag{ + wires = 1; + emagged = 1; + req_access_txt = "153"; + pixel_y = -25; + id = "SyndFB_prison_stroll"; + name = "Prison Stroll Zone"; + normaldoorcontrol = 4; + specialfunctions = 4 + }, +/obj/machinery/door_control/no_emag{ + wires = 1; + emagged = 1; + req_access_txt = "153"; + pixel_y = -35; + pixel_x = -7; + name = "Prison Outside Doors"; + id = "SyndFB_prison_outside" + }, +/obj/machinery/door_control/no_emag{ + wires = 1; + emagged = 1; + req_access_txt = "153"; + pixel_y = -35; + pixel_x = 7; + id = "SyndFB_prison_stroll_blast"; + name = "Prison Stroll Blastdoors" + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"xdT" = ( +/obj/machinery/economy/vending/boozeomat/syndicate_access, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"xdX" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/box/bodybags{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/box/bodybags{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/box/bodybags{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/box/bodybags{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/box/zipties{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/storage/box/zipties{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/storage/box/zipties{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/storage/box/zipties{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/storage/box/zipties{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/storage/box/teargas{ + pixel_x = 9; + pixel_y = -4 + }, +/obj/item/storage/box/teargas{ + pixel_x = 9; + pixel_y = -4 + }, +/obj/item/storage/box/teargas{ + pixel_x = 9; + pixel_y = -4 + }, +/obj/item/storage/box/teargas{ + pixel_x = 9; + pixel_y = -4 + }, +/obj/item/storage/box/teargas{ + pixel_x = 9; + pixel_y = -4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"xeh" = ( +/obj/machinery/computer/camera_advanced, +/obj/structure/light_fake/spot{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"xew" = ( +/obj/structure/statue/sandstone/venus{ + anchored = 1; + dir = 8; + layer = 5; + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding."; + icon_state = "plaque"; + name = "Comemmorative Plaque" + }, +/area/centcom/ss220/bar) +"xeH" = ( +/obj/effect/turf_decal/box, +/obj/structure/table/reinforced{ + color = "#444444" + }, +/obj/item/book/manual/nuclear{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/structure/window/plasmareinforced{ + color = "red" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"xeN" = ( +/obj/structure/table/reinforced, +/obj/item/syndicatedetonator, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"xeY" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/shuttle/escape) +"xfp" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/pet/cat/Syndi, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"xft" = ( +/obj/structure/bed, +/obj/item/bedsheet/syndie, +/obj/effect/turf_decal/miscellaneous/goldensiding{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"xfA" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkjail" + }, +/area/syndicate_mothership/jail) +"xfK" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/gun/advtaser{ + pixel_x = -6 + }, +/obj/item/gun/energy/gun/advtaser{ + pixel_x = 6 + }, +/obj/item/gun/energy/gun/advtaser, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"xgV" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "SFBQMLoad" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkyellowcornersalt" + }, +/area/syndicate_mothership/cargo) +"xhl" = ( +/obj/machinery/door/window/brigdoor{ + color = "red"; + dir = 1; + name = "Riot Control" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"xhK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/impassable{ + color = "#9999ff"; + id_tag = "SST_armory_support"; + name = "SST Armory Support Items" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"xie" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/syndicate_mothership) +"xio" = ( +/obj/machinery/door/airlock{ + name = "Спальня" + }, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"xis" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding/corner{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"xiD" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"xjk" = ( +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/evac) +"xjv" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/syndidonkpockets, +/obj/item/storage/box/syndidonkpockets, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"xjz" = ( +/obj/item/kitchen/utensil/fork{ + pixel_x = -6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"xjP" = ( +/obj/machinery/computer/camera_advanced{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"xjY" = ( +/obj/machinery/economy/vending/dinnerware, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/centcom/ss220/bar) +"xka" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/black, +/obj/item/clothing/under/color/black, +/obj/item/clothing/under/color/black, +/obj/item/clothing/under/color/black, +/obj/item/clothing/under/color/black, +/obj/item/clothing/under/retro/security, +/obj/item/clothing/under/retro/security, +/obj/item/clothing/under/retro/science, +/obj/item/clothing/under/retro/science, +/obj/item/clothing/under/retro/medical, +/obj/item/clothing/under/retro/medical, +/obj/item/clothing/under/retro/engineering, +/obj/item/clothing/under/retro/engineering, +/obj/item/clothing/under/misc/durathread, +/obj/item/clothing/under/misc/durathread, +/obj/item/clothing/under/suit/mafia/white, +/obj/item/clothing/under/suit/mafia/white, +/obj/item/clothing/under/suit/mafia/vest, +/obj/item/clothing/under/suit/mafia/vest, +/obj/item/clothing/under/suit/mafia/tan, +/obj/item/clothing/under/suit/mafia/tan, +/obj/item/clothing/under/suit/mafia, +/obj/item/clothing/under/suit/mafia, +/obj/item/clothing/under/rank/civilian/lawyer/black, +/obj/item/clothing/under/rank/civilian/lawyer/black, +/obj/item/clothing/under/rank/civilian/lawyer/blue, +/obj/item/clothing/under/rank/civilian/lawyer/blue, +/obj/item/clothing/under/rank/civilian/lawyer/purple, +/obj/item/clothing/under/rank/civilian/lawyer/purple, +/obj/item/clothing/under/rank/civilian/lawyer/red, +/obj/item/clothing/under/rank/civilian/lawyer/red, +/obj/effect/decal/warning_stripes/white{ + color = "76643a" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"xkj" = ( +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/grass/jungle/no_creep, +/area/centcom/ss220/park) +"xko" = ( +/obj/structure/table/wood, +/obj/machinery/kitchen_machine/microwave, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"xkJ" = ( +/obj/structure/mirror{ + pixel_x = 30 + }, +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/structure/statue/sandstone/assistant{ + anchored = 1; + density = 0; + desc = "Он пытался сбежать..."; + icon = 'icons/mob/mob.dmi'; + icon_state = "ghost2"; + invisibility = 40; + name = "Закованное привидение" + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"xle" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/centcom/ss220/jail) +"xlk" = ( +/obj/structure/table/holotable/wood{ + color = "#996633" + }, +/obj/item/dice/d20, +/turf/simulated/floor/carpet/black, +/area/trader_station/sol) +"xlO" = ( +/obj/machinery/door/airlock/centcom{ + name = "Бар"; + req_access_txt = "101" + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"xmT" = ( +/obj/effect/turf_decal/siding/black{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "rampbottom" + }, +/area/syndicate_mothership/outside) +"xng" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + color = "red" + }, +/obj/machinery/atmospherics/portable/canister/toxins, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"xnm" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/camera_film{ + pixel_y = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/centcom/ss220/general) +"xny" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkred" + }, +/area/syndicate_mothership/infteam) +"xoC" = ( +/obj/structure/closet/secure_closet/mime{ + req_access = null + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkred" + }, +/area/syndicate_mothership/infteam) +"xpg" = ( +/obj/structure/closet/crate, +/obj/effect/decal/warning_stripes/yellow/hollow, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin1) +"xpi" = ( +/obj/effect/turf_decal/woodsiding, +/turf/simulated/floor/carpet/royalblack, +/area/syndicate_mothership/control) +"xpk" = ( +/obj/effect/turf_decal/miscellaneous/goldensiding/corner{ + dir = 6 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/control) +"xpm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/sofa/bench/left, +/obj/structure/sign/double/map/right{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership/infteam) +"xpr" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/shuttle/escape) +"xpt" = ( +/obj/item/flag/syndi, +/obj/structure/curtain/black{ + pixel_x = -32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_x = -32; + pixel_y = 32; + anchored = 1 + }, +/obj/structure/curtain/black{ + pixel_y = 32; + anchored = 1 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"xpD" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern{ + anchored = 1; + layer = 5; + light_color = "#FF9F40"; + on = 1; + pixel_y = 10 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/evac) +"xpS" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "darkyellowcornersalt" + }, +/area/centcom/ss220/supply) +"xqe" = ( +/obj/effect/turf_decal/box/white, +/obj/item/ammo_box/magazine/m50, +/obj/item/ammo_box/magazine/m50, +/obj/item/ammo_box/magazine/m50, +/obj/item/ammo_box/magazine/m50, +/obj/item/gun/projectile/automatic/pistol/deagle/camo{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/projectile/automatic/pistol/deagle/camo, +/obj/item/gun/projectile/automatic/pistol/deagle/camo{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/sign/poster/contraband/syndicate_pistol{ + pixel_y = 32 + }, +/obj/structure/light_fake{ + dir = 1 + }, +/obj/structure/rack/gunrack, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/control) +"xqM" = ( +/obj/item/flag/species/nian, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"xrm" = ( +/obj/effect/turf_decal/delivery/red, +/obj/effect/spawner/random_spawners/syndicate/loot{ + spawn_inside = null + }, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"xsg" = ( +/obj/structure/table/wood, +/obj/item/vending_refill/nta, +/obj/item/vending_refill/nta, +/obj/item/vending_refill/nta, +/obj/item/vending_refill/nta, +/obj/item/vending_refill/nta, +/obj/item/vending_refill/nta, +/obj/item/vending_refill/nta, +/obj/item/vending_refill/nta, +/obj/item/vending_refill/nta, +/obj/item/vending_refill/nta, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"xsh" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"xsI" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/beach/away/sand, +/area/syndicate_mothership/outside) +"xsO" = ( +/obj/structure/table/holotable/wood{ + color = "#996633" + }, +/obj/item/kitchen/knife, +/turf/simulated/floor/carpet/black, +/area/trader_station/sol) +"xtg" = ( +/obj/structure/flora/junglebush/large{ + layer = 4.9 + }, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"xty" = ( +/obj/machinery/door/window/brigdoor{ + color = "red"; + name = "Cell Door"; + req_access_txt = "150" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate_sit) +"xtE" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/wine{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/simulated/floor/carpet, +/area/syndicate_mothership/infteam) +"xtU" = ( +/obj/structure/statue/sandstone/assistant{ + anchored = 1; + desc = "Он точно не спит на посту!"; + dir = 4; + icon = 'icons/mob/simple_human.dmi'; + icon_state = "syndicate_smg"; + max_integrity = 9999; + name = "Биба"; + obj_integrity = 9999 + }, +/obj/effect/turf_decal/miscellaneous/goldensiding/corner{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"xtW" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkyellowalt" + }, +/area/centcom/ss220/supply) +"xtY" = ( +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/machinery/economy/vending/cigarette/free, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"xui" = ( +/obj/machinery/door/poddoor{ + id_tag = "nukeop_ready"; + layer = 2.71; + name = "Shuttle Dock Door" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"xuw" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo9" + }, +/obj/effect/turf_decal/siding/black{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"xuW" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark{ + dir = 8; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin1) +"xvf" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"xvt" = ( +/obj/structure/chair/comfy/shuttle/dark, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkyellowalt" + }, +/area/syndicate_mothership/cargo) +"xvN" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = -30 + }, +/obj/structure/light_fake/small, +/obj/effect/turf_decal/siding/brown, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"xvT" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/turf/simulated/floor/plating{ + icon = 'icons/turf/floors.dmi'; + icon_state = "elevatorshaft"; + name = "floor"; + color = "#f63d3d" + }, +/area/syndicate_mothership/elite_squad) +"xww" = ( +/obj/effect/turf_decal/siding/wood, +/turf/simulated/floor/carpet/royalblue, +/area/shuttle/trade/sol) +"xwW" = ( +/obj/item/radio/intercom/syndicate{ + pixel_y = 28 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"xxd" = ( +/turf/simulated/floor/plasteel{ + icon_state = "brownoldfull" + }, +/area/syndicate_mothership/jail) +"xxf" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo8" + }, +/obj/effect/turf_decal/siding/black{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/jail) +"xxA" = ( +/obj/structure/light_fake/spot{ + dir = 4 + }, +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/storage/fancy/donut_box, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"xyp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/delivery/white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"xyP" = ( +/turf/simulated/floor/carpet/royalblue, +/area/shuttle/trade/sol) +"xyW" = ( +/obj/effect/spawner/window/shuttle, +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "open"; + id_tag = "trader_privacy"; + name = "Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/trade/sol) +"xzc" = ( +/mob/living/carbon/human/monkey, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"xzF" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/cargo) +"xzG" = ( +/obj/machinery/economy/vending/snack/free, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"xzI" = ( +/obj/machinery/door/airlock/external{ + id_tag = "s_docking_airlock"; + name = "Shuttle Hatch"; + req_access_txt = "31" + }, +/obj/structure/fans/tiny, +/obj/docking_port/mobile/supply{ + dir = 4 + }, +/obj/docking_port/stationary{ + dir = 4; + dwidth = 5; + height = 7; + id = "supply_away"; + name = "supply centcom"; + width = 12 + }, +/turf/simulated/floor/plating, +/area/shuttle/supply) +"xAj" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "SST_outside" + }, +/turf/simulated/floor/plasteel{ + icon_state = "rampbottom" + }, +/area/syndicate_mothership/elite_squad) +"xBZ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership) +"xCo" = ( +/obj/structure/chair/wheelchair/bike{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership) +"xCA" = ( +/obj/machinery/light/spot, +/turf/simulated/floor/plasteel/dark{ + icon_state = "darkbluealt" + }, +/area/shuttle/administration) +"xCL" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/centcom/ss220/general) +"xCV" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "navybluealt" + }, +/area/syndicate_mothership/control) +"xDl" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/general) +"xDX" = ( +/obj/structure/light_fake/spot{ + dir = 8 + }, +/obj/structure/closet/crate/trashcart{ + name = "Специальная доставка с ЦК" + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/supply) +"xEb" = ( +/obj/machinery/sleeper{ + dir = 4; + pixel_x = 3 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"xEu" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"xEA" = ( +/obj/structure/closet/secure_closet/personal{ + locked = 0 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"xEG" = ( +/obj/structure/light_fake/spot, +/obj/effect/turf_decal/miscellaneous/goldensiding, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"xFs" = ( +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/elite_squad) +"xFu" = ( +/obj/structure/rack, +/obj/item/gun/medbeam{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/medbeam, +/obj/item/gun/medbeam{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"xFC" = ( +/obj/structure/closet/crate/secure/bin{ + anchored = 1; + color = "#00eafa" + }, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/evac) +"xGd" = ( +/obj/structure/flora/junglebush/large, +/turf/simulated/floor/grass/jungle, +/area/centcom/ss220/park) +"xGX" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"xHb" = ( +/obj/effect/turf_decal/grass{ + icon_state = "grass_edge_medium"; + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/ancient{ + name = "sand" + }, +/area/syndicate_mothership/outside) +"xIB" = ( +/obj/machinery/computer/communications, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"xIS" = ( +/obj/structure/table/reinforced{ + color = "#444444" + }, +/obj/item/paper_bin, +/obj/item/pen/fancy, +/obj/structure/window/plasmareinforced{ + color = "red"; + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"xJa" = ( +/obj/machinery/door/airlock/hatch/syndicate/command{ + name = "Тюрьма"; + id_tag = "syndicate_jail_airlock_int"; + autoclose = 0; + locked = 1 + }, +/obj/machinery/access_button{ + autolink_id = "syndicate_jail_button_int"; + name = "Jail Access Button"; + req_access_txt = "153"; + pixel_x = -25 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkredaltstrip" + }, +/area/syndicate_mothership/jail) +"xJy" = ( +/obj/machinery/economy/vending/chinese/free, +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/infteam) +"xJF" = ( +/obj/structure/table/reinforced{ + color = "#444444" + }, +/obj/machinery/door/window/brigdoor{ + color = "red"; + name = "Arrivals Post"; + req_access_txt = "154"; + dir = 4 + }, +/obj/machinery/airlock_controller/access_controller{ + name = "Jail Access Console"; + pixel_y = 4; + ext_door_link_id = "syndicate_jail_airlock_ext"; + int_door_link_id = "syndicate_jail_airlock_int"; + ext_button_link_id = "syndicate_jail_button_ext"; + int_button_link_id = "syndicate_jail_button_int" + }, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"xKd" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/pen/blue, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin3) +"xKy" = ( +/obj/structure/chair/stool, +/obj/effect/decal/syndie_logo{ + icon_state = "logo8" + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/infteam) +"xLF" = ( +/turf/simulated/wall/indestructible/riveted, +/area/space/centcomm) +"xMa" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"xMj" = ( +/turf/simulated/wall/indestructible/fakeglass, +/area/centcom/ss220/jail) +"xMF" = ( +/obj/item/decorations/sticky_decorations/flammable/snowman{ + pixel_x = -7; + pixel_y = -8 + }, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"xNa" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"xOd" = ( +/obj/machinery/computer/station_alert, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"xOk" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/centcom/ss220/general) +"xOp" = ( +/obj/structure/table/wood{ + color = "#996633" + }, +/obj/item/flashlight/lamp/green/off{ + layer = 3.1; + pixel_y = 8 + }, +/turf/simulated/floor/carpet, +/area/centcom/ss220/general) +"xOt" = ( +/obj/structure/statue/gold/rd{ + anchored = 1; + layer = 4; + pixel_y = 9 + }, +/turf/simulated/floor/plasteel{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding."; + dir = 4; + icon_state = "plaque"; + name = "Comemmorative Plaque" + }, +/area/centcom/ss220/park) +"xOF" = ( +/turf/simulated/floor/plating, +/area/syndicate_mothership/elite_squad) +"xPy" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/grass/jungle/no_creep, +/area/wizard_station) +"xPO" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/control) +"xPP" = ( +/obj/structure/weightmachine/stacklifter, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/park) +"xQh" = ( +/obj/machinery/door/airlock/bathroom{ + id_tag = "cc_toilet_2"; + name = "Туалет" + }, +/turf/simulated/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/centcom/ss220/evac) +"xRf" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/bush, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/control) +"xSq" = ( +/obj/machinery/economy/vending/dinnerware, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin2) +"xSv" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/centcom/ss220/general) +"xSw" = ( +/obj/machinery/conveyor/north{ + id = "SFBQMLoad2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/cargo) +"xSx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/delivery/white, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership) +"xSI" = ( +/obj/structure/chair/comfy/shuttle/dark{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"xSN" = ( +/obj/structure/bookcase/manuals, +/obj/item/book/manual/random, +/obj/item/book/manual/wiki/security_space_law, +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/admin2) +"xTE" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/shuttle/administration) +"xUI" = ( +/obj/structure/closet/secure_closet/clown{ + req_access = null + }, +/obj/item/clothing/suit/soldiercoat, +/obj/structure/light_fake{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkred" + }, +/area/syndicate_mothership/infteam) +"xVK" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 1; + height = 4; + id = "pod2_away"; + name = "recovery ship bay 2"; + width = 3 + }, +/turf/space/transit/horizontal, +/area/space/centcomm) +"xVV" = ( +/obj/machinery/door/poddoor/impassable{ + id_tag = "SST_pod_ready"; + layer = 2.8; + name = "Shuttle Dock Door" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/syndicate_mothership) +"xWi" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkredcornersalt" + }, +/area/syndicate_mothership/control) +"xWv" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/syndicate{ + pixel_x = 5 + }, +/obj/item/clothing/head/welding{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/mineral/plastitanium, +/area/syndicate_mothership/elite_squad) +"xWX" = ( +/obj/structure/sign/restroom{ + pixel_x = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership) +"xYf" = ( +/obj/structure/barricade{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "diagonalWall3"; + name = "diagonal shields"; + proj_pass_rate = 0; + max_integrity = 200; + armor = list(melee = 10, bullet = 50, laser = 50, energy = 50, bomb = 10, rad = 100, fire = 10, acid = 0); + stacktype = null; + dir = 8 + }, +/turf/simulated/floor/indestructible/transparent_floor, +/area/shuttle/syndicate) +"xYk" = ( +/obj/effect/turf_decal/woodsiding{ + dir = 8 + }, +/turf/simulated/floor/carpet/royalblack, +/area/syndicate_mothership/control) +"xYo" = ( +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/bar) +"xZd" = ( +/obj/machinery/economy/vending/nta/green, +/turf/simulated/floor/plasteel/dark{ + dir = 10; + icon_state = "darkgreen" + }, +/area/centcom/ss220/admin3) +"xZz" = ( +/obj/machinery/door/airlock/external{ + id_tag = "s_docking_airlock"; + name = "Shuttle Airlock"; + req_access_txt = "150" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "syndicate_elite"; + name = "Side Hull Door"; + opacity = 0; + req_access_txt = "150" + }, +/obj/structure/fans/tiny, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 3; + height = 5; + id = "sst"; + name = "SST shuttle"; + roundstart_move = "sst_away"; + width = 11 + }, +/obj/docking_port/stationary/transit{ + dir = 8; + dwidth = 3; + height = 5; + id = "sst_transit"; + name = "sst in transit"; + pixel_x = 32; + width = 11 + }, +/turf/simulated/floor/plating, +/area/shuttle/syndicate_elite) +"xZK" = ( +/obj/machinery/teleport/hub/upgraded, +/turf/simulated/floor/mineral/plastitanium, +/area/shuttle/syndicate) +"xZL" = ( +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/jail) +"yaB" = ( +/obj/effect/decal/syndie_logo{ + icon_state = "logo14" + }, +/turf/simulated/floor/mineral/plastitanium/red, +/area/syndicate_mothership/control) +"yaO" = ( +/obj/structure/curtain/open/shower/security, +/obj/machinery/shower{ + pixel_y = 20 + }, +/obj/structure/light_fake/small{ + dir = 4 + }, +/obj/effect/turf_decal/miscellaneous/plumbing{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/syndicate_mothership) +"yaR" = ( +/obj/effect/baseturf_helper{ + baseturf = /turf/simulated/floor/indestructible + }, +/turf/simulated/wall/indestructible/riveted, +/area/centcom/ss220/admin2) +"ybG" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/obj/effect/landmark/spawner/syndicate_infiltrator, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/infteam) +"ybN" = ( +/obj/structure/table, +/obj/item/healthanalyzer/advanced{ + pixel_y = 8 + }, +/obj/item/healthanalyzer/advanced, +/obj/item/reagent_containers/spray/cleaner/advanced{ + pixel_x = -14; + pixel_y = 10 + }, +/obj/item/reagent_containers/spray/cleaner/advanced{ + pixel_x = -14; + pixel_y = 2 + }, +/obj/machinery/defibrillator_mount/loaded{ + pixel_y = 26 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/centcom/ss220/general) +"ybO" = ( +/obj/structure/chair/comfy/red{ + dir = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"ybP" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 9; + icon_state = "darkbluealt" + }, +/area/centcom/ss220/admin1) +"ych" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"ycW" = ( +/obj/machinery/status_display, +/turf/simulated/wall/mineral/titanium, +/area/shuttle/escape) +"yex" = ( +/obj/item/syndicatedetonator{ + desc = "Радиус взрыва: 255x255x255"; + name = "Слишком опасная кнопка"; + pixel_x = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/infteam) +"yey" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/simulated/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"yez" = ( +/obj/structure/light_fake/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"yeD" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/black, +/area/centcom/ss220/general) +"yeU" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + color = "red" + }, +/obj/machinery/atmospherics/portable/canister/carbon_dioxide, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "dark" + }, +/area/syndicate_mothership/cargo) +"yfk" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/simulated/floor/wood/fancy/cherry, +/area/trader_station/sol) +"yfn" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/wood/fancy, +/area/centcom/ss220/evac) +"yfo" = ( +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Base" + }, +/turf/simulated/floor/wood/oak, +/area/syndicate_mothership/elite_squad) +"yfK" = ( +/obj/machinery/economy/vending/cola/free, +/turf/simulated/floor/carpet/black, +/area/syndicate_mothership/jail) +"ygr" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/stack/spacecash, +/obj/effect/turf_decal/woodsiding{ + dir = 1 + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"ygI" = ( +/obj/machinery/conveyor/south{ + id = "SFBQMLoad" + }, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plasteel{ + icon_state = "darkfull" + }, +/area/syndicate_mothership/cargo) +"ygJ" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/birch, +/area/shuttle/trade/sol) +"ygY" = ( +/obj/machinery/economy/vending/cola/free, +/turf/simulated/floor/plasteel/dark, +/area/centcom/ss220/admin3) +"yhp" = ( +/obj/machinery/door/airlock/titanium{ + id_tag = "s_docking_airlock" + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/fans/tiny, +/turf/simulated/floor/wood/fancy/cherry, +/area/shuttle/trade/sol) +"yhY" = ( +/obj/machinery/economy/vending/cola/free, +/turf/simulated/floor/wood/fancy/oak, +/area/centcom/ss220/bar) +"yic" = ( +/obj/structure/fence{ + dir = 4; + invulnerable = 1 + }, +/turf/simulated/floor/indestructible/grass, +/area/syndicate_mothership/outside) +"yim" = ( +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/shuttle/escape) +"yiF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/shuttle/engine/platform{ + layer = 2.9; + dir = 4 + }, +/obj/structure/shuttle/engine/heater{ + icon_state = "heater2x2"; + dir = 4 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/trade/sol) +"yiG" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/beach/away/sand, +/area/ninja/holding) +"yiT" = ( +/obj/structure/chair/stool/bar/dark{ + dir = 1 + }, +/obj/structure/light_fake/spot{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/centcom/ss220/bar) +"yiU" = ( +/obj/machinery/economy/vending/boozeomat, +/turf/simulated/floor/carpet/black, +/area/trader_station/sol) +"yjy" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/simulated/floor/indestructible/grass/no_creep, +/area/syndicate_mothership/outside) +"yjM" = ( +/obj/machinery/door/airlock/hatch/syndicate, +/turf/simulated/floor/mineral/plastitanium/red, +/area/shuttle/syndicate) +"yjV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/hatch/syndicate{ + name = "Syndicate Nuclear Team Shuttle" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/shuttle/syndicate) +"yjZ" = ( +/turf/simulated/floor/plasteel/dark{ + dir = 4; + icon_state = "navyblue" + }, +/area/centcom/ss220/admin3) +"ykh" = ( +/turf/simulated/floor/wood/fancy/cherry, +/area/centcom/ss220/bar) +"ykk" = ( +/obj/machinery/computer/card/minor{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/dark{ + icon_state = "navybluefull" + }, +/area/centcom/ss220/admin2) +"ykp" = ( +/obj/machinery/door/airlock/external{ + id_tag = "s_docking_airlock"; + name = "Шаттл доставки"; + opacity = 0; + req_one_access_txt = "106" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/centcom/ss220/supply) +"ykz" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plasteel{ + icon_state = "blackfull" + }, +/area/syndicate_mothership/jail) +"ykX" = ( +/turf/simulated/wall/indestructible/riveted{ + layer = 5 + }, +/area/centcom/ss220/general) +"ylz" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/item/kirbyplants, +/obj/structure/window/reinforced/clockwork{ + dir = 4 + }, +/turf/simulated/floor/wood/oak, +/area/wizard_station) +"ylD" = ( +/obj/machinery/door/airlock/titanium/glass{ + req_one_access_txt = "160"; + id_tag = "soltrader_south" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/carpet/orange, +/area/shuttle/trade/sol) + +(1,1,1) = {" +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(2,1,1) = {" +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(3,1,1) = {" +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +tJz +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +sLM +sLM +tJz +mlS +tJz +tJz +tJz +iyK +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +lAC +tJz +tJz +fti +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(4,1,1) = {" +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +mlS +mlS +tJz +fti +tJz +mlS +mlS +mlS +mlS +mlS +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +tJz +fti +tJz +tJz +tJz +tJz +mlS +tJz +lAC +pdR +huN +lAC +oDu +pfZ +rTB +lAC +lAC +lAC +lAC +pdR +lAC +lAC +lAC +lAC +lAC +lAC +tJz +fti +tJz +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +mlS +tJz +mlS +tJz +mlS +tJz +tJz +mlS +tJz +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(5,1,1) = {" +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +mlS +mlS +tJz +tJz +tJz +tJz +gHo +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +chQ +tJz +mlS +mlS +tJz +tJz +chQ +tJz +tJz +mlS +tJz +oGr +tJz +mlS +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +lAC +lAC +vrd +lAC +rQg +rQg +rQg +vVk +jak +vVk +rQg +rQg +rQg +rQg +vVk +slN +lPf +vVk +rQg +rQg +lAC +lAC +tJz +tJz +tJz +tJz +tJz +gJu +mlS +tJz +tJz +tJz +heV +tJz +mlS +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +gHo +tJz +ita +tJz +tJz +tJz +tJz +mlS +tJz +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(6,1,1) = {" +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +tJz +mlS +tJz +mlS +tJz +tJz +tJz +fti +tJz +tJz +tJz +tJz +vfU +gRN +gRN +gRN +gRN +gRN +gRN +gRN +vfU +tJz +tJz +tJz +tJz +fti +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +mlS +tJz +tJz +tJz +tJz +lAC +lAC +lAC +lAC +tJz +lAC +lAC +lAC +rQg +rQg +rQg +vVk +bCs +rQg +brK +vjy +bed +wLN +aoD +rQg +bnK +mAS +mna +mna +wRW +joa +rQg +rQg +lAC +tJz +tJz +tJz +tJz +tJz +tJz +tJz +chQ +oGr +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tPk +mlS +tJz +tJz +tJz +tJz +tJz +tJz +ych +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +fkV +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +xZL +xZL +xZL +xZL +xZL +xZL +xZL +xZL +xZL +xZL +xZL +xZL +xZL +xZL +xZL +xZL +sHP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(7,1,1) = {" +sLM +sLM +sLM +sLM +sLM +sLM +sLM +tJz +mlS +tJz +tJz +iyK +tJz +tJz +mlS +tJz +gRN +gRN +gRN +vfU +vfU +wfY +pAE +aQG +wPL +gny +vgG +wfY +vfU +vfU +gRN +gRN +gRN +tJz +tJz +tJz +tJz +tJz +mlS +tJz +mlS +mlS +tJz +tJz +tJz +mlS +tJz +gHo +tJz +tJz +lAC +rQg +bVF +bVF +bVF +vVk +rQg +rQg +vVk +hER +hER +piG +aSX +rQg +dqv +dcn +bed +wLN +jKB +rQg +apg +qFx +jKB +jKB +lXi +nkM +rQg +hbG +lAC +lAC +tJz +tJz +mlS +tJz +tJz +mlS +tJz +tJz +tPk +tJz +tPk +tJz +tJz +tJz +chQ +tJz +tJz +tJz +tJz +tJz +tJz +mlS +mlS +gHo +tJz +tJz +mlS +tJz +mAo +tJz +tJz +ych +sIG +sIG +chQ +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +adJ +fjg +fjg +fjg +fjg +adJ +eSs +tfu +tfu +eSs +adJ +fjg +fjg +fjg +fjg +adJ +bnh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +xZL +jKD +nEq +nEq +ucI +nEq +nEq +ucI +nEq +nEq +ucI +nEq +nEq +ucI +nEq +cIX +xZL +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(8,1,1) = {" +sLM +sLM +sLM +sLM +sLM +sLM +tJz +tJz +gJu +tJz +tJz +tJz +tJz +tJz +tJz +tJz +gRN +xpt +uqx +mgo +kOR +mgo +mgo +mgo +mgo +mgo +mgo +mgo +kOR +mgo +uqx +cnF +gRN +tJz +mlS +tJz +tJz +tJz +tJz +mlS +tJz +sIG +tJz +tJz +chQ +tJz +mlS +tJz +tJz +tJz +lAC +fwR +rtg +pqD +pqD +rQg +kiN +bWX +ygI +otU +otU +piG +aSX +vVk +vVk +hlh +vVk +lKt +dxV +rQg +cNI +qFx +jKB +jKB +lXi +jZg +rQg +dub +fRZ +lAC +tJz +tJz +tJz +tJz +tJz +wRu +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +chQ +tJz +mlS +tJz +tJz +tJz +tJz +tJz +gHo +tJz +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +fjg +fjg +fjg +fjg +fjg +fjg +eSs +voq +wTG +eSs +fjg +fjg +fjg +fjg +fjg +fjg +bnh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +xZL +eAX +ipi +wge +uxI +uxI +uxI +qem +uxI +uxI +uxI +uxI +uxI +qXJ +ond +rJs +xZL +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(9,1,1) = {" +sLM +sLM +sLM +sLM +sLM +tJz +tJz +mlS +mlS +fti +tJz +tJz +tJz +mlS +tJz +tJz +gRN +uOr +mgo +noE +bfI +vkV +mqM +sDK +wPX +eRO +lae +noE +bfI +vkV +mgo +tTd +gRN +tJz +tJz +tJz +tJz +tJz +tJz +fti +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +lAC +rQg +bVX +bVX +bVX +vVk +iTG +agt +rQg +hER +hER +piG +xsh +iLT +iLT +hOq +rQg +aoD +lKt +rQg +fgd +lpx +rqt +rqt +jEj +ifL +rQg +dub +gPJ +lAC +tJz +tJz +tJz +tJz +tJz +tPk +tJz +ePO +iyK +tJz +tJz +tJz +mlS +tJz +tJz +tJz +chQ +mlS +tJz +tJz +sIG +tJz +tJz +tJz +tPk +tJz +tJz +tJz +tJz +tJz +chQ +tJz +gHo +tJz +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +fjg +fjg +fjg +fjg +fjg +esR +wzN +rYm +ase +wzN +bkl +fjg +fjg +fjg +fjg +fjg +bnh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +xZL +eAX +ipi +eqT +xZL +dYv +rSX +xZL +mXk +dGG +xZL +kyT +ebq +xZL +gxo +tKN +xZL +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(10,1,1) = {" +sLM +sLM +sLM +sLM +sLM +tJz +tJz +sIG +tJz +chQ +tJz +gRN +gRN +gRN +vfU +vfU +vfU +eFJ +mgo +rSW +wOK +llM +lWm +rlY +vtt +itv +hLU +rSW +wOK +llM +mgo +mgo +vfU +vfU +vfU +gRN +gRN +gRN +tJz +tJz +tJz +mlS +mlS +tJz +tJz +tJz +tJz +chQ +tJz +tJz +huN +lAC +lAC +lAC +tJz +rQg +kiN +agt +rQg +rQg +rQg +vVk +xvt +slN +slN +ihY +vVk +rQg +rQg +rQg +rQg +vVk +dMr +dMr +vVk +rQg +rQg +rQg +rQg +lAC +lAC +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +gHo +tJz +tJz +tJz +tJz +tJz +tJz +mlS +gHo +tJz +tJz +tJz +tJz +chQ +adB +adB +tJz +tJz +tJz +tJz +tJz +tJz +gHo +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +fjg +fjg +fjg +fjg +fjg +fjg +eSs +rYm +ase +eSs +fjg +fjg +fjg +fjg +fjg +fjg +bnh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +vPJ +ipi +eqT +xZL +gnO +xcj +xMj +gnO +iCa +xMj +fMh +iCa +xMj +gnO +iCa +xZL +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(11,1,1) = {" +sLM +sLM +sLM +sLM +tJz +tJz +tJz +tJz +mlS +tJz +tJz +gRN +ivd +kzp +vfU +yex +vfU +jhI +mgo +rSW +wOK +llM +bIG +pub +rjq +nuW +owu +rSW +wOK +llM +mgo +gDb +vfU +gnT +vfU +kzp +gzn +gRN +tJz +tJz +tJz +tJz +tJz +tJz +tPk +tJz +mlS +tJz +tJz +tJz +lAC +lAC +rQg +bVF +bVF +vVk +kiN +agt +rQg +gJs +tAJ +rQg +kDm +cOS +slN +nbj +mhM +nbj +sAT +wmp +fBC +rTM +slN +slN +nbj +bhB +iTH +eAO +eSh +vfw +lAC +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +sIG +mlS +tJz +tJz +tJz +tJz +tJz +gHo +mlS +mlS +tJz +adB +adB +adB +adB +adB +dSQ +aRI +mTB +mlS +mlS +tJz +tJz +oGr +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +adJ +fjg +fjg +fjg +fjg +adJ +eSs +cxD +sIn +eSs +adJ +fjg +fjg +fjg +fjg +adJ +bnh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +ciP +oXh +vIu +enw +vIu +oIt +vIu +enw +vIu +oXh +ciP +eAX +ipi +eqT +xZL +iuD +oxA +xZL +xle +oxA +xZL +iuD +oxA +xZL +iuD +tut +xZL +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(12,1,1) = {" +sLM +sLM +sLM +sLM +tJz +tJz +tJz +tJz +tJz +tJz +tJz +gRN +lYn +gSb +vfU +vfU +vfU +jJQ +mgo +rSW +wOK +llM +wNi +xKy +vqa +vKE +fOP +rSW +wOK +llM +mgo +mgo +vfU +vfU +vfU +gSb +kCY +gRN +tJz +tJz +tJz +chQ +mlS +tJz +iyK +mlS +tJz +tJz +tJz +lAC +lAC +rQg +vVk +oGJ +oGJ +vVk +eeQ +vVk +rQg +rQg +rQg +vVk +xvt +slN +slN +nbj +abI +eeQ +rqt +rqt +rqt +tTA +slN +slN +nbj +bhB +bYd +eAO +eSh +gPJ +lAC +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +chQ +tPk +tJz +tJz +mlS +adB +adB +alW +dSQ +duJ +duJ +aRI +mTB +mTB +mTB +mTB +mTB +tJz +gHo +chQ +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +seb +seb +seb +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +rYm +ase +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +adJ +adJ +adJ +adJ +adJ +adJ +adJ +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +ciP +bsp +bem +bem +bem +mXp +bem +bem +bem +btm +ciP +qpv +nZB +rJs +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +xZL +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(13,1,1) = {" +sLM +sLM +sLM +sLM +tJz +tJz +tJz +tJz +chQ +mlS +tJz +vfU +bfI +vkV +vZM +mgo +xvf +mgo +mgo +rSW +wOK +aAs +bfI +bfI +bfI +bfI +bfI +dGk +wOK +llM +mgo +mgo +rDF +mgo +skx +noE +bfI +vfU +tJz +tJz +tJz +tJz +tJz +tJz +mlS +mlS +tJz +tJz +tJz +lAC +rQg +rQg +gUH +slN +slN +uDK +slN +xgV +rqt +cex +rQg +oCQ +tTA +slN +slN +nbj +abI +slN +ihY +mna +mna +mna +mna +mna +keY +bhB +fmj +vVk +rQg +lAC +lAC +tJz +tJz +tJz +tJz +tJz +tJz +tJz +chQ +tJz +tJz +tJz +chQ +tJz +tJz +tJz +tJz +mlS +tPk +tJz +adB +dSQ +duJ +aRI +mTB +mTB +mTB +nRE +mTB +wJe +mTB +mTB +tJz +tPk +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +seb +seb +seb +eSs +eRQ +xqM +bkd +eSs +jZB +cYS +sdE +xaX +see +kvP +taB +cYS +jZB +rYm +ase +jZB +cYS +xaX +fgl +ued +fgl +xFC +cYS +jZB +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +jir +nHr +hkS +gWn +wfo +jir +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +wjg +wjg +wjg +wjg +wjg +wjg +wjg +wjg +wjg +ciP +bsp +nNB +dLK +hGG +rqf +jNw +lMX +pIZ +btm +ciP +ciP +ejf +ciP +ciP +tNq +bem +ePy +kIl +vIu +vIu +lvM +tNq +dXq +bsB +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(14,1,1) = {" +sLM +sLM +sLM +tJz +tJz +tJz +mlS +tJz +mlS +sIG +tJz +vfU +jbl +llM +vZM +gIY +xvf +mgo +mgo +xJy +cQn +xtY +vIV +sUT +sUT +sUT +wji +vuv +rYQ +wOX +mgo +mgo +rDF +gIY +skx +rSW +fMl +vfU +tJz +tJz +mlS +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +fwR +vgV +slN +slN +oYr +vVk +neJ +slN +slN +nbj +vPl +rTM +oCQ +rqt +cex +nbj +abI +slN +nbj +yeU +cPy +xng +sJP +ajk +iwO +bhB +aXF +eAO +dUy +lAC +lAC +tJz +tJz +tJz +tJz +tPk +tJz +tJz +mlS +tJz +tJz +mlS +tPk +tJz +tJz +tJz +tJz +tJz +tJz +mAN +alW +bbH +dJn +mTB +tdw +mTB +mTB +mTB +mTB +mTB +gSF +mTB +mTB +tJz +gHo +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +nlQ +seb +seb +seb +eSs +cZl +jrk +jrk +eSs +jrk +jrk +jrk +eSs +dai +fsO +fsO +fsO +fsO +fsO +fsO +fsO +fsO +hpe +dZq +fsO +fsO +fsO +fsO +fsO +fsO +fsO +fsO +tEZ +aXt +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +aXt +iZU +iZU +dEN +iZU +iZU +wjg +eqp +cUU +wjg +ciP +oXh +eWc +kmg +xNa +oXh +vIu +vIu +vIu +oXh +ciP +qVk +dRA +phn +ciP +uVO +vIu +dJI +hCC +pPs +vIu +fFM +xeh +cjj +vYY +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(15,1,1) = {" +sLM +sLM +sLM +mlS +tJz +chQ +tJz +tJz +tJz +mvf +mvf +iUB +wOK +xvN +vfU +vfU +vfU +rKv +rKv +vfU +vfU +vfU +vfU +hnT +mgo +pcm +vfU +vfU +vfU +vfU +djY +djY +vfU +vfU +vfU +cRs +wOK +quh +mvf +mvf +mvf +mvf +mvf +mlS +tPk +tJz +fti +tJz +tJz +tJz +fwR +wdR +slN +slN +vEg +rQg +mjW +slN +slN +nbj +slN +rTM +dyS +wdR +kiN +jcg +rQg +rQg +sKq +yeU +cPy +xng +sJP +ajk +iwO +bhB +dzS +eAO +dUy +lAC +tJz +tJz +tJz +tJz +tJz +chQ +tJz +tJz +tJz +tJz +tJz +tJz +tJz +chQ +tJz +tJz +tJz +tJz +tJz +jQa +adB +aya +nMa +mTB +mTB +mTB +wJe +mTB +mTB +mTB +mTB +mTB +mTB +mlS +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +oMY +kGL +kGL +kGL +wBU +pfz +pfz +cOO +pfz +pfz +pfz +cOO +rYm +nGA +nGA +nGA +nGA +nGA +nGA +nGA +nGA +nGA +nGA +nGA +nGA +nGA +nGA +nGA +nGA +nGA +nGA +ase +jis +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +cCy +iZU +iZU +iZU +iZU +iZU +dZo +dYf +nmP +wjg +ciP +oXh +txK +txK +oXh +bsp +bem +bem +bem +btm +ciP +vHs +hPF +qbc +bnn +oXh +vIu +nHv +dRB +hbC +vIu +dJv +xIB +vIu +htP +ciP +ciP +ciP +ciP +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(16,1,1) = {" +sLM +sLM +sLM +mlS +tJz +tJz +tJz +tJz +mvf +mvf +mvf +iUB +wOK +llM +niK +jyV +vfU +aPj +mgo +vfU +jaR +olQ +vfU +mgo +mgo +mgo +vfU +pCO +olQ +vfU +mgo +gDb +vfU +epI +aaz +rSW +wOK +quh +mvf +mvf +mvf +mvf +mvf +tJz +gHo +mlS +tJz +tJz +tJz +tJz +fwR +wdR +slN +slN +upU +vVk +keY +slN +slN +nbj +erT +rTM +qgG +mna +keY +nbj +mhM +slN +nbj +yeU +cPy +xng +sJP +ajk +iwO +bhB +uSr +eAO +dUy +lAC +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +gHo +tJz +adB +jmF +dSQ +aRI +mTB +mTB +mTB +mTB +mTB +mTB +mTB +pGe +mTB +mTB +tPk +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +xjk +kGL +kGL +kGL +ctL +pfz +pfz +pfz +pfz +pfz +pfz +pfz +rYm +nGA +jcM +lzl +lzl +lzl +cHT +lzl +lzl +lzl +lzl +lzl +lzl +lzl +iVj +qfJ +jcM +lzl +lzl +mxY +aXt +gcV +gcV +ueN +gcV +gcV +gcV +eOl +gcV +gcV +gcV +gcV +ueN +gcV +gcV +gcV +eOl +gcV +gcV +gcV +gcV +ueN +gcV +gcV +aXt +iZU +iZU +iZU +iZU +iZU +wjg +dYf +nmP +wjg +wjg +vIu +pdv +vgR +asN +bsp +tQc +ava +tQc +btm +ciP +vHs +hPF +eAs +ciP +exA +vIu +vIu +vIu +vIu +vIu +dJv +kpJ +vIu +jeH +ciP +cdt +wKU +lra +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(17,1,1) = {" +sLM +sLM +sLM +tJz +ePO +tJz +tJz +mvf +mvf +mvf +tJz +vfU +jbl +llM +naF +iAz +vfU +jOk +jOk +vfU +vfU +vfU +vfU +jOk +jOk +jOk +vfU +vfU +vfU +vfU +jOk +jOk +vfU +dlw +xtE +rSW +fMl +vfU +tJz +tJz +tJz +mvf +mvf +tJz +mlS +tJz +tJz +tJz +tJz +tJz +rQg +rQg +gUH +slN +slN +uDK +slN +uyJ +mna +keY +rQg +qgG +ngM +slN +slN +nbj +abI +slN +eeQ +rqt +rqt +rqt +rqt +rqt +cex +bhB +lsx +vVk +rQg +lAC +lAC +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +mAN +alW +xsI +nMa +mTB +gSF +mTB +mTB +mTB +pGe +mTB +mTB +mTB +mTB +oGr +tJz +mlS +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +xpD +kGL +kGL +baa +kxn +pfz +lpN +kGL +orQ +orQ +orQ +rlL +rYm +nGA +ase +wOh +xbh +xbh +egV +xbh +xbh +cCu +aXt +aXt +aXt +aXt +qyB +wbO +qyB +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +xDl +eOl +gcV +aXt +aXt +aXt +aXt +aXt +aXt +gcV +eOl +fQN +aXt +aXt +aXt +aXt +aXt +aXt +aXt +wjg +vce +fMQ +vce +wjg +wjg +dYf +nmP +dZA +wjg +vIu +pdv +nbm +hPF +oXh +rDf +kmg +dhi +oXh +rVQ +vIQ +hPF +eAs +ciP +nTz +vIu +vIu +vIu +vIu +vIu +vIu +vIu +vIu +oXh +rbT +vIu +vIu +art +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(18,1,1) = {" +sLM +sLM +sLM +tJz +tJz +tJz +mvf +mvf +mvf +tJz +tJz +vfU +wOK +aAs +bfI +bfI +sDq +bfI +bfI +vfU +tFj +xny +aFH +gcw +gcw +gcw +chG +xny +bDX +vfU +bfI +bfI +dzR +bfI +bfI +dGk +wOK +vfU +tJz +chQ +tJz +mvf +mvf +tJz +tJz +tJz +chQ +tJz +tJz +tJz +tJz +rQg +vVk +jxO +jxO +vVk +ihY +vVk +rQg +rQg +rQg +vVk +xvt +slN +slN +nbj +abI +ihY +mna +mna +mna +ngM +slN +slN +nbj +bhB +qKs +vHa +eSh +fRZ +huN +tJz +tJz +tJz +tJz +esh +tJz +tJz +tJz +tJz +mlS +tJz +tJz +chQ +tJz +tJz +tPk +tJz +tJz +adB +aya +bbH +dJn +mTB +mTB +wJe +mTB +mTB +gSF +mTB +mTB +mTB +tJz +tJz +mlS +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +hqi +kGL +kGL +mhd +tti +pfz +kGL +kGL +aYX +aYX +aYX +wow +rYm +nGA +ase +kof +ktP +ktP +ktP +ktP +ktP +fxa +aXt +kth +cvZ +axu +oXo +afG +rUN +axu +eAj +lve +aXt +eRu +oZX +oZX +hHK +aXt +kzy +eOl +gcV +aXt +qvO +uSI +gzG +qfe +aXt +gcV +eOl +xDl +aXt +jir +eOl +jwT +eOl +jir +aXt +jML +ehR +jwn +lEw +dBA +wjg +dYf +nmP +oWC +wjg +bua +pdv +ykk +eQu +oXh +oXh +oXh +oXh +hNd +lwp +nDw +hPF +jms +ciP +nGB +qdx +kGC +vIu +tQU +ciP +ciP +dRm +vIu +tUV +ciP +vIu +vIu +grj +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(19,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +mvf +tJz +tJz +tJz +gRN +qsF +tSr +wOK +wOK +wOK +wOK +wOK +gRN +cgX +olQ +olQ +olQ +olQ +olQ +olQ +olQ +xoC +gRN +wOK +wOK +wOK +wOK +wOK +wOK +ubx +gRN +tJz +tJz +tJz +mvf +mvf +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +rQg +bVX +bVX +vVk +kiN +eDK +rQg +wft +abI +rQg +kDm +iKN +slN +nbj +abI +nbj +sAT +wmp +fBC +rTM +slN +slN +nbj +bhB +neF +vHa +eSh +gPJ +lAC +tJz +tJz +tJz +tJz +tJz +hPu +tJz +tJz +esh +tJz +tJz +tJz +tJz +mlS +tJz +sIG +tJz +tJz +tJz +adB +alW +bbH +dJn +mTB +mTB +wJe +mTB +mTB +mTB +mTB +mTB +tJz +nPy +mlS +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +xjk +kGL +rwc +rwc +plL +cdn +cdn +cdn +mcq +mcq +mcq +vkA +rYm +nGA +ase +kof +ktP +ktP +ktP +ktP +ktP +fxa +aXt +uZZ +bai +fJO +npf +hXq +bai +azw +npf +oGQ +aXt +sZo +nzJ +nzJ +sJw +aXt +ddt +eOl +gcV +xio +gcV +wuV +wuV +gPL +aXt +gcV +eOl +ggs +axu +eOl +ybO +eOl +ybO +eOl +aXt +lXo +lXo +iIH +lXo +mED +wjg +dYf +nmP +pzc +wjg +vIu +pdv +ncb +hPF +oXh +dZG +kmg +qLF +oXh +rVQ +vIQ +hPF +eAs +ciP +soo +kCK +vIu +vIu +vIu +bsB +ciP +xOd +vIu +lwb +ciP +fmt +vIu +iNy +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(20,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +tJz +tJz +mlS +tJz +gRN +qsF +als +wOK +tvZ +eup +tvZ +wOK +gRN +cgX +olQ +swU +swU +swU +swU +swU +olQ +xoC +gRN +wOK +wOK +wOK +wOK +wOK +wOK +ubx +gRN +tJz +fti +tJz +mvf +mvf +mvf +mlS +tJz +tJz +tJz +tJz +tJz +huN +lAC +lAC +lAC +tJz +rQg +kiN +eDK +rQg +rQg +rQg +vVk +xvt +slN +slN +eeQ +vVk +rQg +rQg +rQg +rQg +vVk +dMr +dMr +vVk +rQg +rQg +rQg +rQg +lAC +lAC +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +oYp +tJz +mlS +tJz +chQ +mlS +tJz +tJz +mAN +tJz +adB +adB +oaz +mTB +mTB +mTB +mTB +mTB +wJe +mTB +mTB +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +ryl +kGL +rwc +jdR +rUf +cdn +cxm +jdR +kGL +kGL +kGL +vhx +sXX +nGA +ase +kof +ktP +ktP +ktP +ktP +ktP +erh +aXt +kBq +onu +axu +lHw +nCV +onu +axu +lHw +pgY +aXt +nzJ +nzJ +lIZ +txP +aXt +esG +eOl +gcV +aXt +nbX +ewE +jUW +kep +aXt +phh +eOl +mHs +axu +eOl +tdY +dyA +tdY +vVd +aXt +oAn +lXo +lXo +lXo +jWb +wjg +dYf +nmP +pzc +wjg +vIu +pdv +qaA +asN +bsp +mJj +sEX +gPe +btm +ciP +vHs +hPF +eAs +ciP +ePY +vIu +mwa +vIu +vIu +qAV +ciP +xeh +cjj +vYY +ciP +aDr +vIu +ciP +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(21,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +tJz +tJz +tJz +tJz +gRN +qsF +dBB +wOK +wOK +wOK +wOK +wOK +gRN +cgX +olQ +olQ +swU +swU +swU +olQ +olQ +xoC +gRN +wOK +wOK +wOK +wOK +wOK +wOK +ubx +gRN +tJz +tJz +tJz +mvf +mvf +mvf +mvf +mlS +mlS +tJz +tJz +tJz +lAC +rQg +bVF +bVF +bVF +vVk +iTG +eDK +rQg +awo +xSw +xzF +fJl +iLT +iLT +gfa +rQg +lKt +lKt +rQg +fgd +mAS +mna +mna +aRZ +ifL +rQg +dub +fRZ +lAC +lAC +tJz +tJz +tJz +tJz +tJz +mlS +chQ +tPk +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tPk +tJz +tJz +tJz +tJz +adB +adB +bbH +dJn +mTB +mTB +dnK +mTB +mTB +mTB +tJz +tJz +tJz +mlS +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +xjk +kGL +rwc +rwc +lNA +cdn +cdn +cdn +orQ +orQ +orQ +uUn +rYm +nGA +ase +kof +ktP +rbd +rbd +rbd +ktP +fxa +aXt +aXt +aXt +aXt +qyB +aXt +qyB +aXt +aXt +aXt +aXt +kvA +nzJ +fbR +hXZ +aXt +xDl +eOl +aLP +aXt +aXt +aXt +aXt +aXt +aXt +gcV +eOl +tHw +axu +eOl +sdK +eOl +sdK +eOl +aXt +dZA +tTm +rOg +jvC +dZA +wjg +dYf +nmP +hQe +wjg +oXh +vkB +vkB +oXh +bsp +iwE +iwE +iwE +btm +ciP +vHs +hPF +eAs +ciP +ejk +hoY +dJs +vIu +vIu +bsB +ciP +tNq +rYT +bsB +ciP +jTq +wGz +pOU +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(22,1,1) = {" +sLM +sLM +sLM +tJz +chQ +mvf +mvf +tJz +tJz +tJz +tJz +vfU +wOK +ohc +wOK +wOK +wOK +ohc +wOK +vfU +xUI +olQ +olQ +olQ +dDW +olQ +olQ +olQ +glr +vfU +fQY +wOK +ohc +knR +knR +knR +fMl +vfU +tJz +tJz +iyK +tJz +mvf +mvf +mvf +mvf +tJz +tJz +tJz +tJz +lAC +fwR +pqD +pqD +pqD +rQg +kiN +eDK +sCx +xSw +xSw +xzF +aSX +vVk +vVk +hlh +vVk +lKt +dxV +rQg +cNI +qFx +jKB +jKB +lXi +jZg +rQg +dub +gPJ +lAC +tJz +mlS +tJz +tJz +tJz +tPk +tJz +tJz +mlS +tJz +tJz +mlS +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tPk +tJz +gHo +adB +bbH +dJn +mTB +mTB +mTB +mTB +tPk +tJz +mlS +mlS +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +hqi +kGL +kGL +mhd +tti +pfz +kGL +kGL +aYX +aYX +aYX +wow +rYm +nGA +ase +ktP +ktP +ktP +ktP +ktP +ktP +ktP +avu +aXt +mdy +cob +afG +sUd +rUN +dxk +afG +ize +aXt +fjA +fjA +rNY +qvO +aXt +gcV +eOl +gcV +aXt +dli +coJ +vCZ +mzJ +aXt +gcV +eOl +xDl +aXt +jir +eOl +eOl +eOl +jir +aXt +wjg +oVH +wjg +wjg +wjg +wjg +dYf +nmP +dZA +wjg +oXh +eWc +kmg +xNa +oXh +vIu +vIu +vIu +oXh +ciP +vHs +hPF +eAs +ciP +ciP +ciP +ciP +cFW +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(23,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +mlS +tJz +fti +tJz +vfU +vfU +vfU +jOk +jOk +jOk +vfU +vfU +vfU +cgX +olQ +olQ +olQ +swU +olQ +olQ +olQ +xoC +vfU +vfU +oSk +vfU +uMM +rAr +lYs +hJh +vfU +tJz +tJz +tJz +tJz +tJz +mvf +mvf +mvf +mvf +tJz +tJz +tJz +lAC +rQg +bVX +bVX +bVX +vVk +rQg +rQg +vVk +vXc +xSw +xzF +aSX +rQg +kMv +dcn +mpV +tJL +lKt +rQg +apg +qFx +jKB +jKB +lXi +nkM +rQg +hbG +lAC +lAC +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +mlS +tJz +tJz +tJz +tJz +tJz +esh +mlS +mlS +tJz +tJz +mlS +mlS +tJz +tJz +sIG +adB +bbH +iJH +dJn +mTB +tJz +tPk +tJz +tJz +chQ +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +xpD +kGL +kGL +baa +kTZ +pfz +lpN +kGL +mcq +mcq +mcq +rIi +rYm +nGA +ase +ktP +ktP +ktP +mfh +ktP +ktP +ktP +eyy +aXt +iHK +cIF +fFs +fFs +bai +axb +hXq +eTb +aXt +mRS +fjA +gcV +gcV +oqn +gcV +eOl +gcV +xio +gcV +jaz +jaz +cIm +aXt +gcV +eOl +fQN +aXt +aXt +aXt +eOl +aXt +aXt +aXt +hns +tTm +ybP +hfq +hfq +hfq +oTu +nmP +wjg +wjg +bsp +rNh +nGa +eyC +lvh +eyC +nnM +sKF +btm +ciP +vHs +hPF +eAs +ciP +tNq +ftU +joz +oXh +xSN +gxh +tNq +ciP +kQG +dKZ +enT +eVr +tNq +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(24,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +tJz +tJz +mlS +tJz +gRN +lOq +ybG +mgo +mgo +mgo +ybG +pTm +vfU +utC +lqf +sJR +qSK +gcw +bbP +sJR +lqf +aOc +vfU +hJN +pXR +vfU +wtv +tgL +wtv +poD +gRN +tJz +mlS +tJz +chQ +tPk +mvf +mvf +mvf +mvf +mvf +tJz +tJz +lAC +tJz +tJz +tJz +tJz +tJz +tJz +tJz +rQg +rQg +rQg +vVk +vkl +rQg +sRe +vHq +mpV +boW +lKt +rQg +bnK +lpx +rqt +rqt +jKT +joa +rQg +rQg +lAC +lAC +tJz +tJz +chQ +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +wRu +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +esh +tJz +tJz +adB +adB +tJz +tJz +tJz +tPk +tPk +tJz +gHo +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +xjk +kGL +kGL +kGL +wBU +pfz +pfz +pfz +pfz +pfz +pfz +pfz +rYm +nGA +ase +ktP +ktP +ktP +ktP +ktP +ktP +ktP +uuR +aXt +eie +jZr +xOk +fFs +bai +gYI +hXq +iOx +aXt +jqk +uQl +vPk +pur +aXt +gcV +eOl +gcV +aXt +qvO +oMo +sGq +dFA +aXt +gcV +eOl +gcV +gcV +gcV +gcV +eOl +okW +gcV +aXt +dZA +tTm +mmG +tTm +tTm +tTm +tTm +nmP +wjg +ciP +bsp +iwE +iwE +iwE +lvh +iwE +iwE +iwE +btm +ciP +vHs +hPF +qbc +kEt +vIu +vIu +vIu +vIu +vIu +vIu +vIu +ciP +vIu +vIu +vIu +vIu +hrY +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(25,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +tJz +chQ +tJz +tJz +gRN +lOq +eIs +mgo +thG +mgo +eIs +pTm +vfU +vfU +vfU +vfU +vfU +pWD +vfU +vfU +vfU +vfU +vfU +hKh +pXR +vfU +scW +wtv +tgL +fWk +gRN +mlS +fti +mlS +mlS +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mlS +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +mlS +tJz +rQg +rQg +rQg +vVk +jak +rQg +rQg +rQg +rQg +rQg +vVk +slN +qnQ +vVk +rQg +rQg +lAC +lAC +lAC +tJz +tJz +tJz +tJz +tPk +tJz +tPk +tJz +chQ +tJz +tJz +tJz +tJz +tJz +tJz +tJz +chQ +tJz +mlS +tJz +tJz +chQ +tJz +tJz +tPk +tJz +tJz +tPk +tPk +gHo +tJz +gHo +mlS +gHo +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +oMY +kGL +kGL +kGL +ctL +pfz +pfz +ptx +pfz +pfz +pfz +ptx +rYm +nGA +ase +kof +ktP +rbd +rbd +rbd +ktP +fxa +aXt +aXt +aXt +aXt +hHE +fFs +bai +fNW +hXq +nLF +ykX +aXt +aXt +aXt +aXt +aXt +gcV +eOl +fQN +aXt +aXt +aXt +aXt +aXt +aXt +fQN +eOl +eOl +eOl +eOl +eOl +eOl +okW +gHg +aXt +pyl +oQS +mmG +tTm +iIC +nfj +nfj +iII +wjg +ciP +oXh +vIu +ljK +vIu +oGA +vIu +ljK +vIu +oXh +ciP +nDw +hPF +jms +ciP +vIu +vIu +vIu +gBP +vIu +vIu +vIu +tPg +vIu +vIu +vIu +vIu +hPC +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(26,1,1) = {" +sLM +sLM +sLM +tJz +mvf +mvf +mvf +tJz +tJz +tJz +tJz +gRN +lOq +eIs +mgo +mgo +mgo +eIs +pTm +vfU +tJz +tJz +vfU +jBO +gaZ +jBO +vfU +tJz +tJz +vfU +tqQ +dcf +vfU +wtv +tgL +wtv +poD +gRN +tJz +mlS +mlS +mvf +mvf +mvf +mvf +mlS +mvf +mvf +mvf +mvf +tJz +tJz +tJz +tJz +tJz +fti +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +rFR +mRM +lhH +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +xHb +lAC +lAC +tJz +fti +tJz +tJz +tJz +tJz +tJz +tPk +mlS +tJz +tJz +tJz +tJz +tJz +gJu +tJz +tJz +tJz +oGr +gJu +tJz +mlS +tJz +tJz +tJz +tJz +gHo +tPk +ilB +tJz +tPk +tJz +tJz +tJz +gHo +tPk +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +eSs +eSs +eSs +eSs +eSs +eSs +uWb +eSs +eSs +eSs +uWb +eSs +rYm +nGA +ase +kof +ktP +ktP +ktP +ktP +ktP +erh +aXt +iRY +oXo +dOn +xCL +fFs +bai +npf +hXq +bai +aXt +rNd +gxy +ucb +qvO +aXt +gcV +eOl +gcV +aXt +kGA +jBo +ueU +dUl +aXt +gcV +eOl +gcV +gcV +gcV +gcV +eOl +okW +gcV +aXt +eBg +mSm +mmG +tTm +nmP +wjg +wjg +wjg +wjg +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +ciP +vHs +hPF +eAs +ois +vIu +vIu +iGx +ksa +jvX +vIu +vIu +ciP +uBV +vIu +vIu +vIu +jtp +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(27,1,1) = {" +sLM +sLM +sLM +tJz +mvf +mvf +mvf +tJz +tJz +tJz +tJz +vfU +eBy +qgz +mgo +oqA +mgo +qgz +eBy +vfU +tJz +tJz +gRN +gaZ +jBO +gaZ +gRN +tJz +iyK +vfU +ast +pXR +vfU +wtn +exx +dti +vfU +vfU +mlS +mlS +mvf +mvf +mvf +mvf +tJz +tJz +tJz +mvf +mvf +mvf +mvf +gJu +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +mvf +mvf +fJB +cZq +cZq +cZq +cZq +cZq +cZq +mvf +mvf +sTr +tsb +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +chQ +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tPk +tJz +tJz +tJz +tJz +gHo +tPk +fjx +tPk +sIG +tJz +tJz +iGF +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +dEs +nXJ +kKp +gGZ +eSs +eSs +jrk +ggR +fxn +lSU +jrk +eSs +rYm +nGA +ase +kof +ktP +ktP +ktP +ktP +ktP +fxa +aXt +gvC +npf +qIo +axN +axN +xSv +aGS +wxg +bSb +aXt +dIX +wMJ +wMJ +gcV +xio +gcV +eOl +gcV +oqn +gcV +gcV +ieu +rvi +aXt +gcV +eOl +fQN +aXt +aXt +aXt +eOl +aXt +aXt +aXt +drl +jXk +mmG +tTm +nmP +wjg +asN +hPF +ciP +ciP +xSq +rDf +ozy +leo +oIt +aHS +nDz +fyY +sZy +ciP +vHs +hPF +eAs +ois +vIu +vIu +leS +gaK +wuX +vIu +vIu +ciP +exA +vIu +vIu +vIu +uVO +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(28,1,1) = {" +sLM +sLM +sLM +tJz +mvf +mvf +mvf +tJz +tJz +mlS +tJz +vfU +gRN +gRN +vfU +vfU +vfU +gRN +gRN +vfU +tJz +fti +vfU +jCl +jBO +jBO +gRN +tJz +fti +vfU +vfU +vfU +vfU +gRN +gRN +gRN +vfU +iyK +tJz +mvf +mvf +mvf +mvf +mlS +tJz +tJz +mlS +chQ +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +mlS +oAL +tJz +tJz +mvf +mvf +gEK +dNj +dNj +dNj +dNj +dNj +ctT +fti +mlS +mvf +mvf +mvf +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tPk +mlS +tJz +tJz +tPk +tJz +tJz +mlS +tJz +mlS +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tPk +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +ifc +kKp +kKp +sYl +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +cxD +nGA +ase +kof +ktP +ktP +ktP +ktP +ktP +fxa +aXt +ybN +npf +bai +aXt +aXt +aXt +aXt +aXt +aXt +aXt +mzf +uAA +tke +cmL +aXt +gcV +eOl +gcV +aXt +qvO +saL +ieu +ieu +aXt +gcV +eOl +xDl +aXt +jir +eOl +eOl +eOl +jir +aXt +kqx +ezj +mmG +tTm +nmP +wjg +mjE +vIu +hFK +kKX +oXh +oXh +oXh +oXh +oXh +pdv +ipI +eNO +sZy +ciP +vHs +hPF +eAs +ois +vIu +vIu +leS +gaK +wuX +vIu +vIu +ciP +gAO +oBl +rUH +sFV +dRH +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(29,1,1) = {" +sLM +sLM +sLM +tJz +mvf +mvf +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +iyK +tJz +tJz +tRZ +tJz +tJz +vfU +xpm +jBO +gaZ +gRN +tJz +tJz +tRZ +tJz +tJz +tJz +tPk +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mlS +tJz +tJz +mlS +tJz +hDW +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +pxu +pxu +uUK +bhU +bhU +rTB +tJz +tJz +tJz +mvf +mvf +mvf +tJz +mlS +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tPk +tJz +tJz +tJz +tJz +chQ +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +gHo +tPk +tJz +tJz +mlS +tJz +tJz +tPk +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +rrq +kKp +kKp +uRC +eSs +nOa +rDS +qQI +qQI +qQI +qQI +eSs +rYm +nGA +ase +lKp +ejC +ejC +xba +ejC +ejC +yfn +aXt +iRY +npf +bai +aXt +xEb +hJM +aBI +hJM +eIt +aXt +aXt +aXt +aXt +aXt +aXt +phh +eOl +xDl +aXt +lVQ +uRt +eOl +eDs +aXt +gcV +eOl +ggs +axu +eOl +ybO +eOl +ybO +eOl +aXt +eBg +wex +mmG +tTm +nmP +wjg +nZe +vIu +fJY +kKX +oXh +pdv +fTQ +sZy +oXh +vIu +vIu +vIu +tQU +ciP +vHs +hPF +eAs +ois +vIu +leS +oMN +sIu +oMN +wuX +vIu +wOH +eJc +iqn +iqn +iqn +ajF +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(30,1,1) = {" +sLM +sLM +sLM +tJz +mvf +mvf +tJz +tJz +tJz +chQ +tJz +tJz +mlS +mlS +woq +mlS +tJz +tJz +tJz +atZ +tJz +iyK +gRN +jBO +gaZ +gaZ +gRN +tJz +tJz +atZ +tPk +tPk +fti +tJz +tPk +mvf +mvf +mvf +mvf +mvf +kHk +tJz +chQ +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mvf +mvf +tJz +tJz +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +iBV +iBV +xmT +bhU +bhU +rTB +tJz +tJz +tJz +tJz +mvf +mvf +mvf +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tPk +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +chQ +tJz +mlS +tJz +tJz +tPk +tJz +gHo +tJz +iGF +mlS +mlS +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +fpi +kKp +kKp +kKp +vmi +nGA +nGA +nGA +nGA +nGA +nGA +aDo +rYm +nGA +dZq +fsO +fsO +fsO +eFi +fsO +fsO +fsO +qyB +oXo +xCL +bai +hBO +npf +hXq +hXq +hXq +bai +aXt +kpq +lOY +kDD +eCC +aXt +gcV +eOl +ggs +aXt +gAD +dBF +eOl +eOl +aXt +phh +eOl +mHs +axu +eOl +gTE +dyA +gTE +vVd +aXt +pyl +hfb +mmG +tTm +nmP +wjg +lcG +vIu +fJY +mzc +oXh +pdv +fTQ +sZy +oXh +oXh +oXh +oXh +oXh +fZS +vIQ +hPF +eAs +ois +vIu +leS +gaK +fEQ +gaK +wuX +vIu +wOH +hgw +jHR +iqn +jNn +wsH +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(31,1,1) = {" +sLM +sLM +sLM +tJz +mvf +mvf +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +lAC +lAC +lAC +lAC +lAC +tRZ +tJz +tJz +vfU +erG +gaZ +jBO +vfU +tJz +tJz +tRZ +tJz +tJz +chQ +tJz +tPk +mvf +mvf +mvf +tJz +tJz +tJz +tJz +tJz +tJz +fnU +pUk +pUk +pUk +pUk +pUk +fnU +hXd +hXd +fnU +tJz +tJz +tJz +tJz +tJz +mlS +tJz +fti +tJz +tJz +tJz +lPt +fxM +fxM +fxM +fxM +rsJ +rsJ +fxM +fxM +fxM +fxM +tJz +tJz +mvf +kHk +mvf +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +mlS +tPk +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +sIG +tJz +tJz +tJz +fjx +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +epd +kKp +kKp +lDh +eSs +kmE +qQI +qQI +qQI +qQI +qQI +eSs +cxD +nGA +nGA +nGA +nGA +nGA +nGA +nGA +nGA +nGA +wbO +gBw +fFs +bai +hBO +npf +hXq +hXq +hXq +bai +aXt +vYt +gDW +gDW +gcV +xio +gcV +eOl +mHs +aXt +ktL +eOl +eOl +bVn +aXt +gcV +eOl +tHw +axu +eOl +sdK +eOl +sdK +eOl +aXt +dZA +tTm +mmG +tTm +nmP +wjg +nQx +vIu +dgK +kKX +oXh +pdv +fTQ +sZy +oXh +oXh +oXh +oXh +oXh +uSa +vIQ +hPF +eAs +ois +vIu +vIu +leS +gaK +wuX +vIu +vIu +wOH +ipl +iqn +iqn +iqn +fzc +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(32,1,1) = {" +sLM +sLM +sLM +tJz +mvf +mvf +tJz +tJz +tJz +tJz +gHo +tJz +tJz +tJz +lAC +vfU +vfU +vfU +vfU +vfU +vfU +vfU +vfU +vfU +wWg +vfU +vfU +vfU +vfU +fnU +fnU +fnU +fnU +fnU +fnU +cUl +pri +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +taY +qcs +uxH +rXN +rXN +rRY +srn +vru +fnU +tJz +tJz +tJz +tJz +tJz +mlS +mlS +tJz +tJz +tJz +lPt +lPt +hjZ +edS +pEW +fxM +pCf +gZH +fxM +ltd +jzh +fxM +fxM +tJz +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +tJz +tPk +tJz +mlS +tJz +mlS +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +aqs +kKp +kKp +kKp +vmi +nGA +nGA +nGA +nGA +nGA +nGA +aDo +rYm +nGA +jcM +lzl +lzl +lzl +lzl +lzl +lzl +lzl +qyB +lHw +axN +onu +aXt +pWr +cNn +cNn +cNn +pqN +aXt +eKz +fpt +hzk +qvO +aXt +gcV +eOl +tHw +aXt +jBE +csQ +csQ +yeD +aXt +gcV +eOl +xDl +aXt +jir +eOl +fMP +eOl +jir +aXt +hns +tTm +mmG +tTm +nmP +wjg +liu +vIu +nvA +kKX +oXh +pdv +fTQ +sZy +oXh +vIu +vIu +vIu +tQU +ciP +nDw +hPF +jms +ciP +wYt +vIu +vIu +gnu +vIu +vIu +vyv +ciP +qld +iqn +iqn +iqn +sVn +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(33,1,1) = {" +sLM +sLM +sLM +tJz +mvf +mvf +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +lAC +vfU +uYz +nVW +dqP +nVW +nVW +nVW +nVW +nVW +nVW +nVW +dqP +nVW +cBB +fnU +gOQ +gOQ +gOQ +gOQ +gOQ +gOQ +gOQ +gOQ +gOQ +gOQ +gOQ +gOQ +fnU +hqY +gHP +srn +srn +vru +vru +srn +srn +srn +lWU +pUk +tJz +fti +tJz +mlS +tJz +mlS +tJz +tJz +tJz +lPt +lPt +rQA +hCi +urf +iKK +fxM +hLH +nGz +fxM +lkU +ltd +ltd +fxM +fxM +tJz +tJz +mvf +mvf +mvf +mvf +kHk +mvf +mvf +mvf +kHk +mvf +mvf +mvf +mvf +kHk +mvf +mvf +mvf +mvf +kHk +mvf +mvf +mvf +mvf +kHk +mvf +mvf +mvf +mvf +tJz +chQ +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +mxp +kKp +kKp +mns +eSs +nGA +qQI +kTp +qQI +kTp +qQI +eSs +rYm +nGA +ase +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +qyB +wbO +qyB +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +gcV +eOl +xDl +aXt +aXt +aXt +aXt +aXt +aXt +gcV +eOl +fQN +aXt +wjg +wjg +wjg +wjg +wjg +wjg +wjg +eXA +mmG +tTm +nmP +wjg +aKS +vIu +mjx +kKX +oXh +oXh +oXh +oXh +oXh +pdv +seh +tIO +cjj +ciP +vHs +hPF +qbc +kEt +vIu +vIu +vIu +vIu +vIu +vIu +vIu +ciP +uBX +iqn +ikL +iqn +nzr +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(34,1,1) = {" +sLM +sLM +sLM +tJz +mvf +mvf +mvf +tJz +tJz +tJz +mvf +tJz +tJz +tVB +fID +ffJ +wIp +eDl +eDl +eDl +eDl +eDl +eDl +eDl +wOF +eDl +eDl +eDl +vxx +fnU +vef +tWq +jtX +qYQ +jtX +kWj +auQ +nGr +oah +nGr +nXD +rrb +fnU +cFP +gHP +srn +srn +srn +srn +srn +srn +vru +lWU +pUk +tJz +mlS +mlS +tJz +tJz +tJz +tJz +tJz +lPt +lPt +lys +hCi +urf +urf +qah +lPt +hLH +nGz +fxM +lkU +lkU +lkU +fxM +fxM +fxM +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +chQ +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +mvf +mvf +mvf +mvf +mvf +gHo +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +pNo +fbZ +kKp +aOO +eSs +nGA +qgE +kTp +qQI +kTp +qQI +eSs +cxD +nGA +ase +aXt +tso +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +eOl +gcV +gcV +gcV +gcV +guV +gcV +gcV +gcV +eOl +gcV +ads +wjg +aCa +iAV +jAU +ilV +wjg +dZA +tTm +mmG +tTm +nmP +wjg +asN +hPF +iYI +oXh +oXh +oXh +oXh +oXh +oGA +pdv +pQc +uxR +sZy +ciP +vHs +hPF +eAs +ciP +tNq +xxA +oXh +oXh +oXh +gzd +tNq +ciP +bsB +joW +xjP +tni +bsB +ciP +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(35,1,1) = {" +sLM +sLM +sLM +tJz +mvf +mvf +mvf +tJz +mvf +tJz +tJz +tJz +tJz +tJz +tJz +ebz +wIp +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +vxx +fnU +gOQ +tCJ +haI +jxt +ivS +ala +qsk +ovP +haI +jxt +gFk +gOQ +fnU +fnU +rJW +eJs +tHS +ijR +oRq +eSO +vru +vwn +uOx +fnU +lAC +tJz +mlS +mlS +tJz +chQ +tJz +lPt +lPt +siY +hCi +urf +mNX +kfk +qah +lPt +hLH +lqw +fxM +ltd +sQD +ltd +fxM +gty +fxM +fxM +tJz +tJz +mlS +mlS +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +chQ +tJz +tJz +tJz +tJz +tJz +tJz +mvf +mvf +mvf +mvf +mvf +tJz +tJz +mlS +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +eSs +eSs +eSs +eSs +eSs +pPb +eSs +seb +seb +seb +eSs +eSs +rYm +nGA +ase +axu +cxO +gcV +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +eOl +gcV +cjU +wjg +wrb +nKl +nKl +nKl +wjg +pyl +tTm +mmG +tTm +nmP +wjg +wjg +wjg +wjg +wjg +wjg +oxb +vce +oxb +wjg +wjg +wjg +wjg +wjg +wjg +dYf +tTm +nmP +wjg +wjg +wjg +iJu +iJu +iJu +wjg +wjg +ciP +ciP +ciP +ciP +ciP +ciP +yaR +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(36,1,1) = {" +sLM +sLM +sLM +tJz +mvf +mvf +mvf +mvf +tJz +tJz +mvf +tJz +fti +tJz +fID +fAu +wIp +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +vxx +fnU +gOQ +ocR +xBZ +kjx +ovP +dJp +ovP +nRS +jxt +rNu +mpq +gOQ +gOQ +tpc +srn +eXq +vgC +aad +rvd +nby +srn +fnU +fnU +fnU +lAC +tJz +tJz +tJz +tJz +tJz +tJz +fxM +jvO +hCi +urf +urf +pwc +sdJ +qah +lPt +hLH +nGz +fxM +ltd +lkU +lkU +fxM +gty +gty +fxM +tJz +chQ +fti +tJz +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +mvf +mvf +mvf +mvf +tJz +tJz +tJz +fkV +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +pOi +kTp +pez +nGA +nGA +nGA +tON +kTp +pBP +lWH +pBP +eSs +rYm +nGA +ase +axu +arH +gcV +eOl +gcV +ueN +gcV +gcV +gcV +gcV +gcV +ueN +gcV +gcV +gcV +gcV +gcV +ueN +gcV +gcV +gcV +gcV +gcV +ueN +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +gcV +xzG +wjg +gbQ +nKl +nKl +nKl +mPw +tTm +tTm +mmG +tTm +vEb +hfq +hfq +hfq +hfq +hfq +hfq +wCN +hfq +wCN +hfq +hfq +hfq +hfq +hfq +hfq +oTu +tTm +vEb +hfq +hfq +hfq +hfq +hfq +hfq +fiP +wjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(37,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +mvf +tJz +mvf +tJz +mvf +tJz +tJz +fID +ffJ +wIp +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +vxx +fnU +gOQ +tCJ +uLd +nlb +xrm +jsg +xrm +ovP +uLd +xBZ +oEC +gOQ +gOQ +tpc +srn +rKA +iJD +onr +tsj +qKJ +srn +fnU +lAC +lAC +lAC +tJz +tJz +fti +tJz +tJz +tJz +fxM +eTS +urf +urf +urf +xPO +mlq +iKK +fxM +hLH +nGz +fxM +lkU +ltd +lkU +fxM +gty +gty +fxM +tJz +mlS +tJz +tJz +fnU +gOQ +njR +gXS +jrf +gXS +gXS +gXS +gXS +gXS +jrf +gXS +gXS +jrf +gXS +gXS +gXS +gXS +gXS +jrf +gXS +chA +gOQ +fnU +tJz +mvf +mvf +mvf +tJz +tJz +qPL +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +dtg +qvA +qqw +nGA +qfz +nGA +rsT +qGL +lWH +qGL +kTp +seb +rYm +nGA +ase +axu +dPH +gcV +eOl +aLP +aXt +aXt +ahg +ahg +ahg +aXt +aXt +aXt +noC +aXt +noC +aXt +aXt +xDl +oTb +vKP +ilv +xDl +aXt +aXt +aXt +gcV +rWz +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +wjg +sLl +nKl +gps +nKl +wjg +eBu +tTm +mmG +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +nmP +wjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(38,1,1) = {" +sLM +sLM +sLM +sLM +tJz +mvf +mvf +mvf +tJz +mvf +tJz +tJz +tVB +tJz +fID +fAu +wIp +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +eDl +vxx +fnU +vef +wxU +don +mbQ +don +kFl +don +kFl +don +kFl +dgb +gOQ +fnU +fnU +hPK +wAF +gVv +kox +npy +hoH +srn +fnU +fnU +fnU +fnU +fnU +fnU +tJz +tJz +tJz +lPt +lPt +dcD +urf +urf +lBj +qST +rfO +uJu +fxM +hLH +nGz +fxM +lkU +lkU +ltd +fxM +fxM +fxM +nML +nML +tJz +tJz +mlS +fnU +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +fti +mvf +mvf +tJz +gHo +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +kTp +dtg +ejv +nGA +fal +nGA +ddH +qHl +qHl +wst +pMg +eSs +rYm +nGA +ase +axu +ppK +gcV +eOl +gcV +aXt +dvh +mKP +lsh +guM +irT +aXt +xDl +gcV +guV +gcV +xDl +aXt +aXt +aXt +aXt +aXt +aXt +aXt +xDl +guV +gcV +gcV +guV +xDl +aXt +nkS +guV +jnA +guV +top +wjg +lXo +gSu +noX +oYs +wjg +kqx +tTm +mmG +tTm +iIC +nfj +otw +nfj +nfj +nfj +nfj +otw +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +otw +nfj +nfj +nfj +nfj +otw +nfj +jYJ +tTm +nmP +wjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(39,1,1) = {" +sLM +sLM +sLM +sLM +tJz +mvf +mvf +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +vfU +bJO +pMf +pMf +pMf +pMf +pMf +pMf +pMf +pMf +pMf +pMf +pMf +ntK +fnU +gOQ +gOQ +gOQ +fYu +gOQ +gOQ +gOQ +gOQ +fYu +gOQ +gOQ +rrb +fnU +dar +gHP +vru +srn +vru +srn +srn +srn +srn +bgj +dfR +bnr +bnr +fnU +tJz +tJz +lPt +lPt +gpi +hCi +urf +urf +fGn +fxM +fxM +fxM +fxM +rFZ +cqX +fxM +fxM +fxM +fxM +fxM +lwu +ezD +wgM +nML +nML +tJz +mlS +fnU +vef +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +rrb +fnU +tJz +tJz +mvf +mvf +tJz +chQ +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +dtg +qvA +arI +qfJ +nGA +nGA +nGA +nGA +nGA +nGA +pVD +eSs +cxD +nGA +ase +axu +cxO +gcV +eOl +gcV +aXt +gxg +cMK +lsh +lsh +lsh +xnm +gcV +gcV +gcV +gcV +gcV +sbY +eVn +fiI +ovr +wTs +eVn +hqz +gcV +gcV +gcV +gcV +gcV +gcV +aXt +nkS +gcV +jnA +gcV +top +wjg +iIw +rTu +cMS +coE +wjg +afe +tTm +mmG +tTm +nmP +wjg +wjg +vce +vce +vce +wjg +wjg +wjg +vce +vce +vce +vce +vce +vce +wjg +wjg +wjg +vce +vce +vce +wjg +wjg +dYf +tTm +nmP +wjg +wjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(40,1,1) = {" +sLM +sLM +sLM +sLM +tJz +mvf +mvf +tJz +tJz +tJz +tJz +tJz +tJz +lAC +lAC +vfU +vfU +gRN +gRN +gRN +gRN +gRN +gRN +gRN +gRN +gRN +gRN +gRN +vfU +fnU +gOQ +gOQ +fVu +fnU +gOQ +gOQ +gOQ +tCr +fnU +gOQ +gOQ +fVu +fnU +aaU +gHP +dRR +xCo +rYA +mcR +srn +srn +srn +bgj +dfR +bnr +ujq +fnU +tJz +tJz +lPt +vDq +hCi +urf +urf +urf +nMt +fxM +iXp +gFH +gFH +tjz +vEJ +gFH +gFH +gFH +gFH +fxM +bCK +oTz +qDD +wfx +nML +mlS +tJz +fnU +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +chQ +mvf +mvf +tJz +tJz +mlS +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +izl +kTp +pez +eSs +hFJ +iXx +igI +nGA +cVu +kol +ser +eSs +rYm +nGA +ase +aXt +tso +gcV +eOl +gcV +aXt +aqj +asH +lsh +lsh +qla +uNM +gcV +oGx +oGx +oGx +gcV +sbY +hfw +fiI +ieu +wTs +hfw +hqz +gcV +wTs +hfw +hfw +fiI +gcV +aXt +aXt +gcV +jnA +gcV +top +wjg +lXo +lXo +lXo +rhX +wjg +dZA +tTm +mmG +tTm +lvt +wjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +wjg +tAn +tTm +cgs +mZR +wjg +uam +ajH +ajH +jlp +ajH +ajH +ajH +jlp +ajH +ajH +ajH +ajH +adJ +adJ +adJ +adJ +adJ +"} +(41,1,1) = {" +sLM +sLM +sLM +sLM +tJz +mvf +mvf +mvf +tJz +tJz +tJz +mlS +vrd +lAC +fnU +fnU +don +don +cuK +don +don +don +don +don +don +don +cuK +don +don +fnU +don +don +don +fnU +don +don +don +don +fnU +don +don +don +fnU +fnU +fnU +fnU +fnU +fnU +fnU +ios +nrC +fnU +eZe +fnU +bnr +bnr +fnU +pUk +pUk +fxM +oZO +urf +urf +urf +urf +lrX +fxM +hLH +gZH +wjw +wjw +qlp +wjw +bvE +urf +urf +fxM +lTh +oTz +oTz +gyr +fxM +pUk +pUk +fnU +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +tJz +mvf +mvf +tJz +tJz +esh +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +seb +seb +seb +eSs +gkv +imp +kaQ +uQo +xdE +dtg +gqj +seb +rYm +nGA +ase +aXt +aXt +bPs +axu +bPs +aXt +aXt +aXt +jPg +lsh +lsh +oYJ +gcV +hfw +xOp +hfw +gcV +ieu +ieu +ieu +ieu +ieu +ieu +ieu +gcV +wTs +hfw +hfw +fiI +gcV +jnA +jnA +gcV +jnA +gcV +phM +wjg +wjg +wjg +wjg +wjg +wjg +wjg +eXA +mmG +tTm +nmP +vce +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vce +dYf +tTm +cgs +aTe +mgd +ajH +lVw +qCW +qCW +qCW +mQn +qCW +qCW +qCW +dQy +eTi +ajH +adJ +adJ +adJ +adJ +adJ +"} +(42,1,1) = {" +sLM +sLM +sLM +sLM +sLM +tJz +mvf +mvf +tJz +tJz +tJz +mlS +lAC +fnU +fnU +hxf +hxf +hxf +hxf +gOQ +gOQ +hxf +hxf +hxf +dts +hxf +hxf +hxf +gOQ +uCR +gOQ +gOQ +hxf +nCv +gbc +dts +hxf +gOQ +jVL +hxf +gOQ +gOQ +fnU +eSY +icT +oPQ +nFN +eXO +fnU +srn +srn +srn +mcR +fnU +bnr +bnr +dlt +eAg +gsF +fxM +tMG +urf +urf +lBj +lNI +bQj +fxM +hLH +nGz +fxM +fxM +fxM +fxM +fxM +tAH +tAH +fxM +pMO +oTz +wnX +iUu +fxM +vwW +vVY +dlt +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +tJz +mvf +mvf +tJz +tJz +tJz +oGr +mlS +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +adJ +adJ +eSs +seb +seb +seb +eSs +cNZ +dtg +eLA +eSs +rYm +nGA +dZq +fsO +fsO +fsO +fsO +fsO +tEZ +jZB +aXt +alh +lsh +dSj +aXt +gcV +bWW +bWW +bWW +gcV +ieu +ieu +ieu +ieu +ieu +ieu +ieu +gcV +wTs +hfw +wrq +fiI +gcV +gcV +gcV +gcV +gcV +gcV +xDl +aXt +aXt +bnh +wjg +wjg +ybP +hfq +hfq +oTu +tTm +nmP +vce +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vce +dYf +tTm +cgs +uKn +rhB +irV +dFl +dFl +dFl +dFl +dFl +dFl +dFl +dFl +heh +uik +jlp +adJ +adJ +adJ +adJ +adJ +"} +(43,1,1) = {" +sLM +sLM +sLM +sLM +sLM +tJz +mvf +mvf +tJz +tJz +tJz +tJz +tJz +fnU +qkt +gXS +gXS +gXS +gXS +gXS +omf +ful +omf +omf +omf +gXS +slA +omf +omf +omf +omf +omf +omf +omf +jfm +gXS +gXS +rqQ +jIP +gqH +vDJ +rrb +fnU +sgp +ePf +ePf +hOo +hOo +fnU +srn +vru +vru +uln +fnU +bnr +bnr +dlt +eAg +vNQ +fxM +rEF +urf +urf +dKh +fxM +fxM +fxM +hLH +nGz +nML +sAR +bUU +bUU +rHF +oTz +oTz +fxM +lTh +oTz +oTz +qKB +fxM +iUy +vVY +dlt +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +fti +mvf +mvf +tJz +mlS +tJz +tJz +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +adJ +adJ +adJ +adJ +adJ +eSs +seb +seb +seb +eSs +ouY +lzl +lzl +lzl +lzl +lzl +iVj +nGA +ase +sdE +aXt +icd +sFq +oHY +oJG +gcV +gcV +ueN +gcV +gcV +sbY +hfw +fiI +ieu +wTs +hfw +hqz +gcV +wTs +hfw +hfw +fiI +gcV +gcV +gcV +gcV +gcV +gcV +xDl +aXt +bnh +cXK +bnh +wjg +dYf +tTm +tTm +tTm +tTm +nmP +vce +adJ +adJ +adJ +adJ +frK +frK +frK +frK +frK +frK +frK +frK +frK +frK +frK +frK +frK +adJ +adJ +adJ +vce +dYf +tTm +cgs +uKn +rLQ +ajH +dhg +tgd +tgd +tgd +bsC +tgd +tgd +tgd +dMg +eTi +ajH +adJ +adJ +adJ +adJ +adJ +"} +(44,1,1) = {" +sLM +sLM +sLM +sLM +tJz +tJz +tJz +mvf +mvf +mvf +tJz +tVB +fID +mRk +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +oyT +qqR +sUZ +gOQ +fnU +hOo +hOo +ePf +xWX +ePf +ios +vru +vru +vru +mwf +fnU +bnr +bnr +dlt +eAg +ifC +fxM +iUA +urf +urf +dKh +fxM +odq +gFH +tjz +nGz +nML +lHj +mkf +bUU +rxh +oTz +oTz +fxM +vsO +oTz +oTz +ewa +fxM +gfN +vVY +dlt +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +tJz +mvf +mvf +tJz +tJz +chQ +tJz +esh +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +eSs +seb +seb +seb +eSs +eSs +rYm +nGA +ase +xaX +aXt +aXt +aXt +aXt +aXt +aXt +aXt +aXt +iBK +gcV +sbY +nSZ +fiI +ovr +wTs +nSZ +hqz +gcV +gcV +gcV +gcV +gcV +gcV +jnA +jnA +gcV +jnA +gcV +phM +aXt +adJ +bnh +adJ +vce +dYf +tTm +iIC +nfj +nfj +iII +wjg +adJ +adJ +adJ +adJ +frK +hNP +nAJ +bMv +frK +ibG +nrg +vcG +oKb +wfs +nrg +wEY +frK +frK +adJ +adJ +wjg +dYf +tTm +cgs +hZc +wjg +uam +ajH +ajH +jlp +ajH +ajH +ajH +jlp +ajH +ajH +ajH +ajH +adJ +adJ +adJ +adJ +adJ +"} +(45,1,1) = {" +sLM +sLM +sLM +tJz +tJz +gHo +tJz +mvf +mvf +mvf +tJz +tVB +fID +nZX +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +iVu +ovP +keH +gOQ +fnU +lkx +fnU +lkx +fnU +rzF +fnU +vru +vru +vru +acA +fnU +eKa +mpv +fxM +fxM +fxM +fxM +fxM +fxM +pkq +fxM +fxM +uvv +urf +gZH +ggq +nML +eVk +mKA +bUU +rHF +oTz +brH +fxM +fxM +kuJ +kuJ +fxM +fxM +pUk +pUk +fnU +vef +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +rrb +fnU +chQ +mlS +mvf +mvf +tJz +tJz +tJz +mlS +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +bnh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +rYm +nGA +ase +jZB +aXt +bnh +bnh +bnh +adJ +adJ +adJ +aXt +aXt +ahg +ahg +ahg +ahg +ahg +ahg +ahg +aXt +aXt +oGx +oGx +oGx +oGx +oGx +aXt +aXt +gcV +jnA +gcV +ieX +aXt +adJ +bnh +adJ +vce +dYf +tTm +lvt +wjg +wjg +wjg +wjg +adJ +adJ +frK +frK +eCs +uRG +sej +bRc +frK +wIC +wCi +wCi +wCi +wCi +wCi +irm +frK +rkZ +nfA +adJ +wjg +tAn +tTm +nmP +wjg +wjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(46,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +tJz +mvf +mvf +tVB +tVB +fID +nZX +cyn +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +tCJ +bcl +sUZ +gOQ +fnU +yaO +fnU +ffq +aXh +hAD +fnU +muB +saI +saI +muB +fnU +pUk +pUk +fxM +uEs +bvR +jyq +fxM +hjy +pPv +aFQ +fxM +oVv +urf +xEG +fxM +fxM +gKg +eHa +fxM +rHF +oTz +oTz +eqK +agH +oTz +oTz +vKu +nML +cSv +gOQ +gOQ +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +tJz +mvf +mvf +tJz +tJz +tJz +oGr +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +bnh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +bRC +jvG +cZT +eSs +aXt +adJ +adJ +bnh +bnh +adJ +adJ +bnh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +aXt +smn +smn +smn +smn +smn +aXt +nkS +gcV +jnA +gcV +ieX +aXt +adJ +bnh +adJ +vce +dYf +tTm +cgs +tMn +fbg +fbg +wjg +adJ +adJ +frK +cKO +cKO +cKO +cKO +hhA +frK +vwP +wCi +wCi +wCi +wCi +wCi +ibG +frK +rkZ +nfA +adJ +wjg +dYf +tTm +nmP +wjg +adJ +adJ +adJ +snC +snC +snC +snC +snC +snC +snC +snC +snC +adJ +adJ +adJ +adJ +adJ +adJ +"} +(47,1,1) = {" +sLM +sLM +tJz +tJz +mvf +mvf +tJz +mvf +mvf +mvf +tVB +tVB +fID +nZX +cyn +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +xSx +tsc +oju +gOQ +fnU +fnU +fnU +fnU +fnU +fnU +fnU +fnU +dfR +dfR +fnU +fnU +tJz +tJz +fxM +ptF +qwC +mtH +lfl +iCF +fyD +mhk +lPt +bQR +urf +nGz +nML +aey +bUU +bUU +hii +lci +oTz +oTz +oTz +oTz +oTz +oTz +mMv +nML +aLl +gOQ +gOQ +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +tJz +mvf +mvf +tJz +tJz +tJz +gJu +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +bnh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +cxD +nGA +ase +eSs +bnh +bnh +adJ +adJ +bnh +bnh +bnh +bnh +bnh +bnh +adJ +adJ +adJ +adJ +adJ +adJ +bnh +aXt +aXt +aXt +aXt +aXt +aXt +aXt +nkS +ueN +jnA +ueN +ieX +aXt +bnh +bnh +bnh +wjg +dYf +tTm +cgs +udq +tMn +fbg +vce +adJ +adJ +frK +mMq +aLu +kKs +cKO +hax +frK +jGA +wCi +vgA +try +kGT +eLW +eCs +frK +frK +adJ +adJ +vce +dYf +tTm +nmP +wjg +adJ +adJ +adJ +snC +goe +goe +goe +wGE +goe +goe +goe +snC +adJ +adJ +adJ +adJ +adJ +adJ +"} +(48,1,1) = {" +sLM +tJz +tJz +tJz +tJz +tJz +mvf +mvf +mvf +tJz +jfw +tVB +fID +mRk +cyn +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +tCJ +vUB +gVh +gOQ +fnU +wMN +plv +oiT +iAT +vJf +fnU +bjf +mEk +jLT +bjf +fnU +tJz +tJz +fxM +aDC +urf +mtH +lfl +iCF +cuu +mhk +lPt +hLH +urf +nGz +nML +wwK +mkf +bUU +xhl +lci +oTz +oTz +oTz +oTz +oTz +oTz +sOr +nML +nSN +gOQ +gOQ +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +fti +mvf +mvf +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +bnh +bnh +adJ +adJ +adJ +adJ +adJ +seb +rYm +nGA +ase +seb +adJ +bnh +bnh +adJ +bnh +bnh +adJ +bnh +adJ +bnh +bnh +adJ +adJ +adJ +adJ +bnh +bnh +adJ +adJ +adJ +bnh +adJ +adJ +aXt +aXt +aXt +aXt +aXt +aXt +oYY +adJ +bnh +adJ +vce +dYf +tTm +cgs +udq +udq +uMF +vce +adJ +frK +frK +frK +frK +frK +gGk +frK +frK +frK +clT +frK +frK +frK +frK +frK +rkZ +nfA +adJ +adJ +vce +dYf +tTm +nmP +wjg +wjg +wjg +wjg +snC +goe +goe +goe +goe +goe +goe +gKE +snC +adJ +adJ +adJ +adJ +adJ +adJ +"} +(49,1,1) = {" +sLM +tJz +tJz +tJz +tJz +mvf +mvf +mvf +mvf +tJz +tJz +tVB +fID +nZX +cyn +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +jud +lnr +bUd +rrb +fnU +cDl +plv +ryx +gZt +tWa +fnU +qNs +mEk +dPy +maY +fnU +tJz +fti +lPt +hdC +qwC +mtH +lfl +iCF +fKd +mhk +lPt +hLH +gZH +ggq +nML +eVk +mKA +bUU +lxO +lci +oTz +vjA +fxM +fxM +tHa +tHa +fxM +fxM +aHv +gOQ +gOQ +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +tJz +mvf +mvf +tJz +tJz +tJz +mlS +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +bnh +bnh +adJ +adJ +seb +rYm +nGA +ase +seb +adJ +adJ +bnh +adJ +bnh +adJ +adJ +bnh +adJ +adJ +bnh +adJ +adJ +adJ +adJ +bnh +adJ +adJ +adJ +adJ +bnh +adJ +adJ +adJ +bnh +adJ +adJ +adJ +bnh +adJ +adJ +bnh +adJ +vce +dYf +tTm +cgs +udq +ieC +iwk +vce +adJ +kue +cbK +smv +frK +iry +oPO +lUD +lUD +lUD +oPO +frK +pdj +aJF +swL +frK +rkZ +nfA +adJ +adJ +vce +dYf +tTm +nmP +hki +vNO +fhM +wjg +snC +goe +goe +goe +goe +goe +goe +sor +snC +adJ +adJ +adJ +adJ +adJ +adJ +"} +(50,1,1) = {" +sLM +tJz +tJz +tJz +mvf +mvf +tJz +tJz +tJz +mvf +tJz +tVB +fID +nZX +cyn +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +nwV +vVI +mvw +mvw +vVI +fnU +wXs +plv +cHl +gZt +wkj +fnU +xfp +mEk +jLT +oTB +fnU +iyK +tJz +lPt +hNH +hIe +lTL +fxM +iCF +fyD +ncI +fxM +hLH +nGz +fxM +fxM +kqr +npT +ogO +bJW +kPK +oTz +oTz +fxM +ros +cNm +cNm +bfb +nML +cSv +gOQ +gOQ +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +gHo +mvf +mvf +tJz +oGr +chQ +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +bnh +seb +rYm +nGA +ase +seb +bnh +bnh +bnh +bnh +cXK +bnh +bnh +wTt +bnh +bnh +cXK +bnh +bnh +bnh +bnh +cXK +bnh +bnh +bnh +bnh +cXK +bnh +bnh +bnh +cXK +bnh +bnh +bnh +bnh +bnh +bnh +cXK +bnh +wjg +tAn +gBb +cgs +udq +olw +xpg +vce +adJ +kue +fta +kxw +dYV +oPO +oPO +oPO +oPO +oPO +oPO +xlO +oPO +oPO +rTD +frK +frK +adJ +adJ +adJ +vce +dYf +tTm +cgs +fCL +tTm +tTm +pGu +qBC +goe +goe +goe +goe +goe +goe +sor +snC +adJ +adJ +adJ +adJ +adJ +adJ +"} +(51,1,1) = {" +sLM +tJz +tJz +mvf +mvf +tJz +mvf +mvf +tJz +mvf +tVB +tVB +fID +nZX +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +fnU +pUk +pUk +pUk +pUk +fnU +vJf +pUQ +dCB +pUQ +srn +fnU +kEs +mEk +jLT +qIZ +fnU +tJz +tJz +fxM +fxM +lgV +xWi +fxM +paM +pXM +xis +fxM +fsg +nGz +nML +mjQ +miA +bbA +crr +mpO +cgm +uJB +gWM +fxM +xqe +vQD +bqr +lOi +nML +nSN +gOQ +gOQ +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +rrb +fnU +tJz +chQ +mvf +mvf +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +bnh +bnh +adJ +adJ +seb +rYm +nGA +ase +seb +adJ +adJ +bnh +adJ +bnh +adJ +adJ +bnh +adJ +adJ +bnh +adJ +adJ +adJ +adJ +bnh +adJ +adJ +adJ +adJ +bnh +adJ +adJ +adJ +bnh +adJ +adJ +adJ +bnh +adJ +adJ +bnh +adJ +vce +dYf +tTm +cgs +udq +udq +ebN +vce +adJ +kue +lrI +vwY +frK +fWV +oPO +oPO +xTE +oPO +oPO +frK +oPO +oPO +iuR +frK +rkZ +nfA +adJ +adJ +vce +dYf +tTm +nmP +hki +tTm +tTm +wjg +snC +goe +goe +goe +goe +goe +goe +sor +snC +adJ +adJ +adJ +adJ +adJ +adJ +"} +(52,1,1) = {" +sLM +tJz +tJz +tJz +mvf +mvf +tJz +mvf +mvf +mvf +tJz +tVB +fID +iyT +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +lrc +dlt +xBZ +xBZ +xBZ +xBZ +cji +rJo +rJo +rJo +rJo +rJo +xie +rJo +kFg +vPu +wXx +pUk +tJz +tJz +lPt +kvk +urf +ata +mzp +vQD +xYk +bqr +cYE +urf +nGz +nML +szK +wOm +cZH +pSO +gVQ +odA +nnO +apf +fxM +hFV +rex +xpi +nkW +nML +oxa +reD +gOQ +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +mlS +mvf +mvf +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +bnh +bnh +adJ +adJ +adJ +adJ +adJ +seb +rYm +nGA +ase +seb +adJ +bnh +bnh +adJ +bnh +bnh +adJ +bnh +adJ +bnh +bnh +adJ +adJ +adJ +adJ +bnh +bnh +adJ +adJ +adJ +bnh +adJ +adJ +osb +osb +osb +osb +osb +osb +osb +adJ +bnh +adJ +vce +dYf +tTm +cgs +udq +sZB +bfH +vce +adJ +frK +frK +frK +frK +frK +amV +frK +eCs +wRe +oPO +frK +oPO +oPO +jJa +frK +rkZ +nfA +adJ +adJ +vce +dYf +tTm +nmP +wjg +wjg +wjg +wjg +snC +goe +goe +goe +goe +goe +goe +dYP +snC +adJ +adJ +adJ +adJ +adJ +adJ +"} +(53,1,1) = {" +sLM +tJz +tJz +tJz +mvf +mvf +tJz +tJz +tJz +mvf +tJz +tVB +fID +nZX +cyn +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +dlt +xBZ +xBZ +xBZ +xBZ +cji +nbn +nbn +nbn +bRD +hiV +nbn +vYw +nGl +hSN +oRl +pUk +tJz +tJz +lPt +kvk +urf +ata +mzp +tsK +meG +fbJ +cYE +urf +nGz +nML +bpw +inv +rlk +oea +yaB +wrP +avl +apf +fxM +eUn +rex +xpi +tBT +nML +oxa +gOQ +gOQ +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +fti +mvf +mvf +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +bnh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +cxD +nGA +ase +eSs +bnh +bnh +adJ +adJ +bnh +bnh +bnh +bnh +bnh +bnh +adJ +adJ +adJ +adJ +adJ +adJ +bnh +osb +osb +osb +osb +osb +osb +osb +wWU +bfN +bfN +ixG +wRC +osb +bnh +bnh +bnh +wjg +dYf +tTm +cgs +udq +sZB +sZB +vce +adJ +adJ +frK +oiH +vNx +iXE +oPO +mmu +frK +amV +amV +frK +oPO +uNx +uNx +eCs +frK +frK +adJ +adJ +vce +dYf +tTm +nmP +wjg +adJ +adJ +adJ +snC +goe +goe +goe +bTz +goe +goe +goe +snC +adJ +adJ +adJ +adJ +adJ +adJ +"} +(54,1,1) = {" +sLM +tJz +tJz +tJz +tJz +mvf +mvf +tJz +mvf +tJz +tVB +tVB +fID +mRk +cyn +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +fnU +pUk +pUk +pUk +pUk +fnU +wgp +srn +vJf +tdd +jLT +fnU +dlQ +wZM +tls +dlQ +fnU +tJz +tJz +fxM +fxM +lgV +gvI +fxM +vwT +pPv +dyK +fxM +pKg +nGz +nML +ohV +eFN +nSk +qbl +tJr +lWx +xdN +hJt +fxM +aDj +tsK +fbJ +pag +nML +cSv +gOQ +gOQ +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +rrb +fnU +tJz +tJz +mvf +mvf +tJz +mlS +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +bnh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +bRC +jvG +cZT +eSs +eSs +adJ +adJ +bnh +bnh +adJ +adJ +bnh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +osb +lsg +dAU +nZk +qlc +vPK +osb +ixG +ixG +ixG +ixG +nse +osb +adJ +bnh +adJ +vce +dYf +tTm +cgs +gpb +sHT +tQw +wjg +adJ +adJ +frK +lyW +vNx +azN +oPO +kxw +frK +gsB +ssW +frK +aFb +etr +niG +jIb +frK +rkZ +nfA +adJ +wjg +dYf +tTm +nmP +wjg +adJ +adJ +adJ +snC +snC +snC +snC +snC +snC +snC +snC +snC +adJ +adJ +adJ +adJ +adJ +adJ +"} +(55,1,1) = {" +sLM +tJz +tJz +tJz +mvf +tJz +tJz +mvf +tJz +mvf +tJz +tVB +fID +nZX +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +fmQ +psX +rnW +rnW +rnW +fnU +tYt +srn +srn +mEk +suT +fnU +ltU +soz +jfZ +pOV +fnU +tJz +iyK +lPt +hNH +bvR +jyq +fxM +iCF +fyD +ncI +fxM +hLH +nGz +fxM +fxM +bRF +eEu +oKL +vqP +vqP +oTz +oTz +fxM +ros +cNm +cNm +bfb +nML +nSN +gOQ +gOQ +gOQ +tou +qPk +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +chQ +mvf +mvf +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +bnh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +rYm +nGA +dZq +dLc +eSs +bnh +bnh +bnh +adJ +adJ +adJ +osb +osb +hGz +hGz +hGz +hGz +hGz +hGz +hGz +osb +osb +ixG +ixG +ixG +ixG +ixG +uJb +ixG +dpf +hVt +ixG +qFC +osb +adJ +bnh +adJ +vce +dYf +tTm +lvt +wjg +wjg +wjg +wjg +adJ +adJ +frK +frK +eCs +lFa +oPO +hyf +frK +crZ +xCA +frK +oPO +oPO +oPO +oPO +frK +rkZ +nfA +adJ +wjg +tAn +tTm +nmP +wjg +wjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(56,1,1) = {" +sLM +tJz +tJz +tJz +tJz +mvf +mvf +mvf +mvf +mvf +tVB +tVB +fID +nZX +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +hLd +kcQ +gqH +xyp +tLW +fnU +jpY +uwa +jkN +mEk +jLT +fnU +koA +nwi +atT +hMQ +pUk +tJz +fti +lPt +oHW +qwC +mtH +lfl +iCF +rrO +mhk +lPt +hLH +vEJ +bLl +nML +eVk +faa +bUU +lxO +lci +oTz +brH +fxM +fxM +qyb +qyb +fxM +fxM +aHv +gOQ +gOQ +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +tJz +mvf +mvf +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +qBQ +qBQ +vCF +vCF +vCF +qBQ +qBQ +rYm +nGA +nGA +sQk +eSs +eSs +eSs +eSs +eSs +eSs +eSs +osb +qew +mGP +ePp +iSW +fkA +ayu +sKW +mGP +rkn +osb +qpB +ixG +ixG +ixG +ixG +ixG +ixG +tMP +cQi +ixG +ovy +osb +adJ +bnh +adJ +vce +dYf +tTm +vEb +hfq +hfq +fiP +wjg +adJ +adJ +adJ +adJ +frK +rzq +xTE +axL +frK +aMe +vSI +frK +ljn +gxV +bGu +qNB +frK +frK +adJ +adJ +wjg +dYf +tTm +cgs +oPH +wjg +adJ +rWF +rWF +rWF +vIc +vIc +rWF +rWF +rWF +rWF +mLi +adJ +adJ +adJ +adJ +adJ +adJ +"} +(57,1,1) = {" +sLM +tJz +tJz +mvf +tJz +tJz +tJz +mvf +mvf +tJz +jfw +tVB +fID +nZX +cyn +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +fAH +fTe +epF +hxf +fnU +lRu +vru +iiw +mEk +bnr +ldu +nwi +fTl +vuE +aSV +pUk +tJz +tJz +fxM +aDC +urf +mtH +lfl +iCF +xRf +mhk +lPt +hLH +urf +nGz +nML +nNU +mkf +bUU +wPj +lci +oTz +oTz +oTz +oTz +oTz +oTz +liW +nML +cSv +gOQ +gOQ +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +gHo +tJz +mvf +mvf +tJz +mlS +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +adJ +adJ +adJ +adJ +adJ +qBQ +vCF +vCF +vCF +qBQ +qvv +ppW +qvv +ppW +fie +qBQ +rYm +nGA +nGA +iJi +eSs +uJP +hOy +fiM +hjo +klL +eSs +ykh +isa +fqN +fqN +fqN +fqN +fqN +fqN +fqN +isa +iUD +ixG +ixG +ixG +ixG +ixG +aAG +ixG +ixG +ixG +xjz +nse +osb +bnh +cXK +bnh +wjg +dYf +tTm +tTm +tTm +tTm +nmP +vce +adJ +adJ +adJ +adJ +frK +frK +frK +frK +frK +igF +vpt +frK +frK +frK +frK +frK +frK +adJ +adJ +adJ +vce +dYf +tTm +cgs +uKn +rLQ +rWF +rWF +lhx +lhx +hnM +hnM +nDd +mZx +srA +tlS +bmv +adJ +adJ +adJ +adJ +adJ +adJ +"} +(58,1,1) = {" +sLM +sLM +tJz +tJz +tJz +tJz +mvf +mvf +mvf +tJz +tJz +tVB +fID +mRk +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +sFZ +hXC +tEM +hxf +fnU +jAn +srn +nHx +mEk +jLT +fnU +nUA +pxW +fbq +onL +fnU +tJz +tJz +fxM +avN +qwC +mtH +lfl +iCF +fyD +mhk +lPt +bQR +urf +nGz +nML +tvv +bUU +bUU +oOS +lci +oTz +oTz +oTz +oTz +oTz +oTz +fRY +nML +aLl +gOQ +gOQ +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +fti +mvf +mvf +tJz +tPk +tJz +mlS +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +bnh +bnh +adJ +adJ +qBQ +vCF +vCF +vCF +qBQ +qvv +ppW +qvv +xGd +bTV +hFO +diL +xtg +iqg +qBQ +rYm +nGA +nGA +sCq +eSs +uJP +hOy +eSs +jSz +oUn +eSs +sZb +osb +gJX +xEu +gJX +xEu +gJX +xEu +gJX +osb +osb +xjY +ixG +bGm +ixG +eYF +osb +mhV +ayT +dIR +ixG +wRC +wjg +wjg +bnh +wjg +wjg +qUN +nfj +nfj +jYJ +tTm +nmP +vce +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +wjg +rxX +rxX +wjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vce +dYf +tTm +cgs +uKn +vIm +pYp +hnM +hnM +hnM +hnM +hnM +hnM +hnM +wmC +tlS +bmv +adJ +adJ +adJ +adJ +adJ +adJ +"} +(59,1,1) = {" +sLM +sLM +tJz +tJz +mvf +tJz +mvf +mvf +mvf +tJz +tJz +tVB +fID +nZX +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +siL +rtJ +sUZ +dts +wkC +mNS +mNS +mNS +tOi +jdM +fnU +fnU +fnU +fnU +fnU +fnU +pUk +pUk +fxM +uEs +hIe +lTL +fxM +paM +pXM +tfn +fxM +uvv +urf +xEG +fxM +fxM +xcG +eHa +fxM +rHF +oTz +oTz +mZw +kjH +oTz +oTz +nyE +nML +nSN +gOQ +gOQ +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +chQ +mvf +mvf +tJz +tJz +tJz +mlS +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +qBQ +vCF +vCF +vCF +qBQ +qvv +fUF +xGd +qvv +qvv +quM +jHG +xGd +buT +buT +iXO +buT +bkU +qBQ +rYm +nGA +nGA +dZq +nAj +hOy +nyl +eSs +eSs +eSs +eSs +ykh +sxS +jXy +jXy +jXy +jXy +jXy +jXy +jXy +sxS +osb +osb +qgd +osb +kaX +osb +osb +osb +osb +osb +osb +osb +wjg +wjg +wjg +wjg +wjg +wjg +wjg +wjg +dYf +tTm +nmP +vce +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +wjg +dYf +nmP +wjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vce +dYf +tTm +cgs +rUo +mgd +rWF +rWF +teM +teM +teM +dJP +teM +rmX +cWB +tlS +bmv +adJ +adJ +adJ +adJ +adJ +adJ +"} +(60,1,1) = {" +sLM +sLM +sLM +tJz +tJz +tJz +mvf +mvf +mvf +mvf +tVB +tVB +fID +nZX +cyn +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +hxU +ovP +niY +hxf +fnU +muB +srn +srn +mEk +jmk +fnU +iDh +ovP +hXC +iDh +fnU +bDj +cWj +fxM +fxM +fxM +fxM +fxM +fxM +kkM +fxM +fxM +oVv +urf +vEJ +bLl +nML +eVk +faa +bUU +rHF +oTz +brH +fxM +fxM +kuJ +kuJ +fxM +fxM +pUk +pUk +fnU +vef +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +rrb +fnU +tJz +mlS +mvf +mvf +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +qBQ +qvv +xGd +qvv +qvv +qvv +qLO +jHG +qvv +ppW +qvv +ppW +xGd +buT +buT +buT +buT +buT +qBQ +rYm +nGA +nGA +jcM +nAj +hOy +hOy +xQh +sbF +klL +eSs +osb +bfd +uow +uow +uow +uow +uow +uow +uow +uow +uow +uow +uow +gWI +uow +uow +uow +uow +uow +gWI +uow +uow +umn +sDS +iZU +iZU +dEN +iZU +iZU +sKC +mmG +tTm +lvt +wjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +wjg +dYf +nmP +wjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +wjg +tAn +tTm +cgs +tZB +wjg +adJ +rWF +rWF +rWF +rWF +rWF +rWF +rWF +rWF +rWF +pNh +adJ +adJ +adJ +adJ +adJ +adJ +"} +(61,1,1) = {" +sLM +sLM +sLM +sLM +tJz +tJz +mvf +mvf +mvf +mvf +tVB +tVB +fID +nZX +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +tCJ +bcl +sUZ +gOQ +fnU +sfM +srn +srn +mEk +mUc +fnU +iDh +ovP +hXC +iDh +fnU +bnr +bnr +dlt +eAg +ndi +fxM +qyR +urf +urf +sXM +fxM +dEp +wjw +pCf +nGz +nML +nNU +mkf +bUU +sPa +oTz +oTz +fxM +vsO +oTz +oTz +ewa +fxM +gAs +vVY +dlt +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +tJz +mvf +mvf +tJz +tJz +chQ +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +qvv +quM +fie +qvv +vOq +buT +buT +buT +buT +buT +buT +xGd +buT +buT +buT +buT +buT +qBQ +rYm +nGA +nGA +sCq +eSs +amP +hOy +eSs +jSz +oUn +eSs +bTt +qsg +nlX +dnm +dnm +dnm +dnm +rrp +xYo +nlX +dnm +dnm +dnm +dnm +rrp +nlX +dnm +dnm +dnm +dnm +dnm +dnm +pwL +ink +iZU +iZU +iZU +iZU +iZU +tVX +mmG +tTm +nmP +wjg +wjg +vce +vce +vce +vce +vce +vce +wjg +wjg +dYf +nmP +wjg +wjg +vce +vce +vce +vce +vce +vce +wjg +wjg +dYf +tTm +nmP +wjg +wjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(62,1,1) = {" +sLM +sLM +sLM +sLM +sLM +tJz +tJz +mvf +mvf +mvf +tJz +tJz +tJz +fnU +nCM +uKg +khe +hDK +hDK +uKg +uKg +uKg +hDK +hDK +khe +hDK +oUP +khe +hDK +khe +hDK +hDK +uKg +uKg +cWW +hDK +hDK +mjL +vpZ +cZG +aTN +rrb +fnU +lZQ +iiw +vJf +mEk +jLT +fnU +sZm +hXC +ovP +dlo +fnU +bnr +bnr +dlt +eAg +wSr +fxM +qyR +urf +urf +sXM +fxM +fxM +fxM +hLH +nGz +nML +tpj +bUU +bUU +rHF +oTz +oTz +fxM +lTh +oTz +oTz +gyr +fxM +bxA +vVY +dlt +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +kvd +mvf +mvf +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +qvv +xGd +qvv +ppW +buT +buT +buT +buT +buT +buT +buT +buT +buT +buT +sdP +buT +buT +qBQ +rYm +nGA +nGA +sQk +eSs +amP +nyl +eSs +eSs +eSs +eSs +faU +qsg +uUA +cOw +lvp +lvp +qef +qsg +xYo +uUA +qvx +lvp +lvp +pFM +qsg +uUA +osb +osb +osb +osb +osb +osb +osb +wjg +wjg +vce +fMQ +vce +wjg +wjg +dYf +tTm +vEb +hfq +xuW +hfq +hfq +hfq +hfq +hfq +hfq +xuW +hfq +oTu +vEb +hfq +xuW +hfq +hfq +hfq +hfq +hfq +hfq +xuW +hfq +oTu +tTm +nmP +wjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(63,1,1) = {" +sLM +sLM +sLM +sLM +bsh +tJz +chQ +tJz +mvf +mvf +tJz +tJz +lAC +fnU +fnU +klm +hxf +hxf +hxf +hxf +dts +hxf +gOQ +gOQ +gOQ +gOQ +gOQ +gOQ +gOQ +vRN +hxf +dts +vRN +hxf +gbc +gOQ +jLf +hxf +kni +hxf +gOQ +gOQ +fnU +rMi +veZ +srn +mEk +jLT +fnU +iDh +ovP +hXC +iDh +fnU +bnr +bnr +dlt +eAg +esp +fxM +bTM +urf +urf +vXw +eXc +qqi +fxM +hLH +nGz +fxM +fxM +fxM +fxM +fxM +tAH +tAH +fxM +pMO +oTz +wnX +iUu +fxM +gTz +vVY +dlt +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +mlS +mvf +mvf +tJz +sIG +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +ppW +qvv +jHG +buT +buT +buT +qvv +xGd +fie +buT +buT +xGd +buT +buT +buT +buT +buT +qBQ +rYm +nGA +nGA +iJi +eSs +amP +hOy +onE +onI +klL +eSs +rGY +qsg +uUA +uNZ +bGn +wap +vON +kRT +xYo +kZg +fQI +wap +upJ +gvS +qsg +uUA +nrJ +yhY +mnr +osb +adH +tVr +ltE +wjg +iht +qLq +omY +bvs +mpP +wjg +dYf +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +tTm +nmP +wjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(64,1,1) = {" +sLM +sLM +sLM +sLM +sLM +tJz +tJz +tJz +mvf +mvf +tJz +tJz +vrd +lAC +fnU +fnU +jtX +jtX +vfs +jtX +jtX +jtX +jtX +jtX +jtX +jtX +vfs +jtX +jtX +fnU +vQE +vQE +fnU +jtX +jtX +jtX +fnU +xui +fnU +jtX +jtX +jtX +fnU +fnU +fnU +fnU +dfR +dfR +fnU +fnU +rVI +rVI +fnU +fnU +bnr +bnr +fnU +pUk +pUk +fxM +hMj +urf +urf +lBT +urf +xCV +fxM +hLH +vEJ +gFH +gFH +fah +gFH +xtU +urf +urf +fxM +lTh +oTz +oTz +qKB +fxM +pUk +pUk +fnU +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +tJz +mvf +mvf +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +fie +qvv +buT +buT +buT +qvv +qvv +pMS +rQk +buT +buT +xGd +buT +buT +buT +buT +buT +qBQ +rYm +nGA +jcM +ggE +eSs +amP +hOy +eSs +jSz +oUn +eSs +bTt +qsg +uUA +gvS +pcg +kMD +dbI +cmZ +cmZ +cmZ +kMD +dbI +dAd +gvS +qsg +txW +uow +uow +umn +tyo +adH +dxQ +kkT +wjg +vrg +mBi +dOx +mBi +vrg +aic +mmG +tTm +iIC +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +nfj +jYJ +tTm +nmP +wjg +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(65,1,1) = {" +sLM +sLM +sLM +sLM +sLM +tJz +tJz +tJz +mvf +mvf +tJz +tJz +tJz +lAC +lAC +ikt +ikt +gKF +gKF +gKF +gKF +gKF +gKF +gKF +gKF +gKF +gKF +gKF +ikt +ikt +wqZ +wqZ +fnU +fnU +fnU +fnU +fnU +jYa +fnU +fnU +fnU +fnU +fnU +qEz +bLA +eim +dCq +sFl +mmT +hXC +ovP +ovP +bgj +dfR +bnr +ujq +fnU +tJz +tJz +lPt +qNi +wBu +lBT +lBT +wrt +vMi +fxM +eFF +wjw +wjw +pCf +gZH +wjw +wjw +wjw +wjw +fxM +bCK +oTz +xpk +oBa +nML +tJz +tJz +fnU +gOQ +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +gOQ +fnU +tJz +mlS +mvf +mvf +tJz +mlS +mlS +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +ppW +buT +buT +buT +ppW +qvv +qvv +ppW +iFn +buT +buT +xGd +buT +buT +qJP +buT +bkU +qBQ +rYm +nGA +ase +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +eSs +qsg +uUA +gvS +vpw +uGb +noT +vrJ +cmZ +vrJ +tnw +wTV +uRK +gvS +eWM +osb +uKS +npS +uUA +tyo +adH +nID +ubd +wjg +vrg +mBi +isJ +isJ +bkK +wjg +qUN +hqL +iII +rzI +aff +bcb +vry +vkM +ozU +aff +rzI +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +ofZ +lJY +mti +nPO +fqi +lJY +lJY +cCA +lJY +lJY +eDn +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(66,1,1) = {" +sLM +sLM +sLM +sLM +tJz +tJz +mlS +tJz +mvf +mvf +tJz +tJz +tJz +tJz +tJz +ikt +fQz +rTf +rTf +rTf +rTf +rTf +rTf +rTf +rTf +rTf +rTf +rTf +cns +ikt +wqZ +wqZ +fnU +viA +viA +qCH +fLS +uRN +kns +qCH +viA +viA +fnU +lGp +hXC +ovP +ovP +ovP +ovP +hXC +hXC +hXC +bgj +dfR +bnr +bnr +fnU +tJz +chQ +lPt +lPt +dbJ +wBu +lBT +urf +eiJ +fxM +fxM +fxM +fxM +rFZ +cqX +fxM +fxM +fxM +fxM +fxM +qDx +xft +bEA +nML +nML +tJz +tJz +fnU +vef +tou +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +viA +aqq +rrb +fnU +tJz +mlS +mvf +mvf +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +qBQ +qvv +buT +buT +qvv +fie +xGd +qvv +dKp +weE +buT +buT +xGd +bTV +hFO +diL +xtg +iqg +qBQ +rYm +nGA +ase +eSs +ulY +sxS +ykh +ykh +ykh +sxS +ulY +osb +qsg +uUA +gvS +qsg +cmZ +vrJ +vti +vrJ +qXK +vrJ +cmZ +uUA +gvS +qsg +eNH +fXY +fXY +uUA +osb +adH +gwS +lGw +wjg +aSu +lGl +mLC +gZg +qsH +rzI +rzI +kQR +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +iuJ +cEx +fQf +xZd +nPO +lVF +iHt +gCV +nPO +nBx +ltc +bgl +wJb +nPO +ofZ +lJY +mti +nPO +ygY +deB +fCs +qgA +ntY +veQ +mjb +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(67,1,1) = {" +sLM +sLM +sLM +sLM +tJz +tJz +tJz +tJz +mvf +mvf +mvf +tJz +tVB +tJz +fID +uhJ +gTa +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +dWh +ikt +dJr +wqZ +fnU +viA +qCH +sOo +xSI +vCS +xSI +sOo +qCH +viA +fnU +jsR +hXC +hXC +hXC +hXC +lGp +ovP +hXC +fnU +fnU +fnU +fnU +fnU +fnU +tJz +tJz +tJz +lPt +lPt +wZv +urf +urf +vXw +bpL +nLl +rcE +fxM +hLH +nGz +fxM +lkU +lkU +lkU +fxM +fxM +fxM +nML +nML +tJz +tJz +tJz +fnU +gOQ +deV +uKg +uKg +uKg +uKg +uKg +uKg +uKg +uKg +uKg +uKg +uKg +uKg +uKg +uKg +uKg +uKg +uKg +uKg +mjL +gOQ +fnU +tJz +fti +mvf +mvf +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +qvv +buT +buT +qvv +nnF +qvv +qvv +qvv +lCi +buT +buT +qvv +quM +fie +utJ +lmy +utJ +qBQ +rYm +nGA +ase +eSs +ykh +jgC +fxT +vfZ +fxT +mqD +ykh +osb +vUI +uUA +gvS +qsg +cmZ +cmZ +vrJ +bWK +vrJ +cmZ +cmZ +uUA +gvS +qsg +mOo +mqf +fXY +rSS +osb +osb +osb +osb +rzI +rzI +rzI +rzI +rzI +rzI +rzI +bOI +jXb +xtW +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +fgZ +lJY +lJY +wDR +nSc +uef +lJY +kpt +tUK +juv +kpt +bgl +wJb +nPO +wem +lJY +mti +nPO +tiF +deB +anh +vrA +qDH +veQ +sIS +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(68,1,1) = {" +sLM +sLM +sLM +tJz +tJz +tJz +tJz +mvf +mvf +mvf +tJz +tJz +tJz +tVB +tJz +jrC +gTa +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +dWh +ikt +wqZ +wqZ +fnU +fnU +kns +kfn +vCS +gEl +vCS +tPC +kns +fnU +fnU +fnU +rVx +hXC +ovP +ovP +lGp +hXC +uXT +fnU +tJz +tJz +tJz +tJz +tJz +mlS +fti +tJz +tJz +fxM +wZv +urf +urf +urf +urf +xMa +ent +fxM +hLH +nGz +fxM +lkU +lkU +lkU +fxM +gty +gty +fxM +tJz +tJz +fti +tJz +fnU +gOQ +gOQ +vwR +gOQ +vwR +gOQ +gOQ +vwR +gOQ +gOQ +vwR +vwR +gOQ +gOQ +vwR +gOQ +gOQ +vwR +gOQ +vwR +gOQ +gOQ +fnU +tJz +tJz +mvf +mvf +tJz +gHo +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +vOq +buT +buT +qvv +qvv +qvv +jXc +ppW +qvv +buT +buT +ppW +qvv +ppW +utJ +utJ +utJ +qBQ +rYm +nGA +sIn +eSs +ykh +jgC +fxT +doy +fxT +mqD +ykh +osb +qsg +uUA +gvS +qsg +cmZ +vrJ +cxe +vrJ +tpQ +vrJ +cmZ +uUA +gvS +qsg +eNH +fXY +fXY +uUA +osb +adH +jaZ +ltE +rzI +sbf +egO +sbf +egO +sbf +egO +pZO +egO +tWr +rtC +qPs +isB +qnB +vFG +wgc +uiD +rzI +fgZ +lJY +lJY +wDR +nSc +uef +lJY +kpt +tUK +juv +kpt +bgl +eoe +nPO +ofZ +lJY +mti +nPO +afs +veQ +veQ +ljX +veQ +veQ +afs +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(69,1,1) = {" +sLM +sLM +sLM +tJz +tJz +tJz +tJz +mvf +mvf +mvf +tJz +mvf +fti +tJz +fID +utN +gTa +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +dWh +ikt +wqZ +wqZ +xVV +jYa +uRN +vCS +ceC +pMa +sPz +vCS +uod +gXs +lKs +ipn +hXC +hXC +hXC +lGp +hXC +ovP +ovP +fnU +fnU +fnU +tJz +mlS +chQ +tJz +mlS +tJz +tJz +fxM +gMN +wBu +urf +urf +lBT +urf +qbU +lPt +hLH +nGz +fxM +lkU +lkU +qfq +fxM +gty +gty +fxM +tJz +tJz +mlS +tJz +fnU +fnU +fnU +tDh +tDh +tDh +hKa +tDh +tDh +tDh +hKa +tDh +cRZ +tDh +tDh +tDh +hKa +tDh +tDh +tDh +hKa +fnU +fnU +fnU +mlS +mvf +mvf +mvf +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +xPP +buT +buT +ksk +rIO +rma +qvv +qvv +xGd +buT +buT +buT +obD +uJd +qvv +ppW +vOq +qBQ +rYm +nGA +ase +eSs +ykh +ykh +pqW +pqW +pqW +ykh +ykh +osb +qsg +uUA +gvS +oFZ +kMD +kdg +vrJ +cmZ +vrJ +rgd +dbI +bos +gvS +eWM +osb +uws +wQK +uUA +tyo +adH +evU +ubd +rzI +aZj +oQT +aZj +mbB +aZj +fBm +jVd +egO +kwP +lMG +lMG +lMG +lMG +lMG +lMG +xtW +rzI +nMU +eBi +jjX +fsG +nPO +fog +sot +kpt +nPO +gmx +eXj +bgl +eoe +nPO +ofZ +lJY +mti +nPO +rYx +veQ +bRt +dNn +vaf +veQ +xsg +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(70,1,1) = {" +sLM +sLM +sLM +tJz +tJz +tJz +tJz +mvf +mvf +tJz +tJz +mvf +tJz +tJz +fID +uhJ +gTa +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +xOF +dWh +ikt +wqZ +wqZ +fnU +fnU +kns +kfn +vCS +gof +vCS +tPC +kns +fnU +fnU +fnU +pUk +pUk +pUk +pUk +lGp +ovP +ovP +hXC +pSB +fnU +tJz +tJz +tJz +tJz +tJz +tJz +tJz +lPt +lPt +lNa +wBu +lBT +lBT +wrt +lOr +lPt +hLH +vAq +fxM +lkU +lkU +lkU +fxM +gty +fxM +bFA +tJz +tJz +chQ +tJz +tJz +tJz +qvo +qvo +qvo +qvo +qvo +qvo +qvo +qvo +qvo +qvo +qvo +qvo +qvo +qvo +qvo +qvo +qvo +qvo +tJz +tJz +tJz +tJz +mvf +mvf +mvf +mvf +tJz +tJz +sIG +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +xPP +buT +buT +kEE +kEE +iKO +qvv +nnF +eVw +dHW +buT +buT +buT +qvv +qvv +quM +fie +qBQ +rYm +tYw +ase +eSs +mGP +ykh +ykh +ykh +ykh +ykh +mGP +osb +qsg +uUA +gvS +pcg +uGb +wTV +cmZ +cmZ +cmZ +uGb +wTV +dAd +gvS +qsg +nKL +dnm +dnm +pwL +tyo +adH +dxQ +kkT +rzI +aZj +rOv +aZj +dMi +aZj +rgS +jVd +mrZ +sMg +sMg +sMg +sMg +sMg +sMg +xpS +oJk +rzI +rzI +nPO +nPO +nPO +nPO +nPO +cwb +hnz +nPO +nPO +jKF +bgl +bVM +nPO +ofZ +lJY +mti +nPO +lJY +dOS +cDb +rjU +kow +xGX +lJY +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(71,1,1) = {" +sLM +sLM +sLM +tJz +tJz +tJz +tJz +mvf +mvf +tJz +mvf +tJz +tVB +tJz +fID +utN +gTa +xOF +xOF +xOF +xOF +xOF +xOF +xOF +ruD +xOF +xOF +xOF +dWh +ikt +dJr +wqZ +fnU +viA +qCH +sOo +jqw +vCS +jqw +sOo +qCH +viA +fnU +mkU +nHO +ovP +wBp +hse +ovP +hXC +ovP +ovP +pSB +pUk +tJz +tJz +mlS +mlS +mlS +tJz +tJz +tJz +lPt +lPt +sdf +wBu +lBT +urf +bSN +lPt +hLH +nGz +fxM +lkU +lkU +lkU +fxM +fxM +fxM +tJz +tJz +gHo +mlS +mlS +chQ +tJz +tVB +tVB +tVB +tVB +tVB +tVB +tVB +tVB +tVB +tVB +tVB +tVB +tVB +tVB +tVB +tJz +tJz +tVB +tJz +tJz +tJz +mvf +mvf +mvf +mvf +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +qBQ +tYW +buT +buT +sXn +kEE +pGW +qvv +xGd +xkj +eVw +dGO +buT +buT +buT +fie +ppW +qvv +qBQ +rYm +kNW +ase +eSs +osb +iFr +oZQ +iFr +oZQ +iFr +osb +osb +qsg +uUA +gvS +uCE +siy +lOJ +rrp +xYo +nlX +qgL +siy +nJs +gvS +qsg +uUA +nrJ +cTG +oUG +osb +adH +gOa +lGw +rzI +aZj +qrN +aZj +ueF +aZj +flD +jVd +mRf +qZz +sKY +lEI +pON +rTT +rsG +pZO +tWr +kHq +rzI +nsJ +nsJ +nsJ +nPO +fgJ +juv +kpt +wOB +nPO +rus +bgl +bVM +nPO +wem +lJY +mti +nPO +lJY +dOS +jVM +lJY +xKd +xGX +lJY +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(72,1,1) = {" +sLM +sLM +sLM +sLM +tJz +tJz +mvf +mvf +mvf +gHo +tJz +tJz +tJz +tJz +lAC +ikt +iCR +qvc +qZy +qvc +qvc +qvc +qvc +qvc +qvc +qvc +qZy +qvc +hHD +ikt +wqZ +wqZ +fnU +viA +viA +qCH +kns +uRN +kns +qCH +viA +viA +fnU +aDf +qAX +hXC +ovP +hse +ovP +ovP +hXC +lGp +uze +fnU +tJz +tJz +fWG +tJz +tJz +tJz +mlS +chQ +tJz +lPt +lPt +jMu +wBu +urf +lRi +fxM +hLH +nGz +fxM +lkU +lkU +lkU +fxM +fxM +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tVB +jfw +tVB +tVB +tJz +jfw +tVB +tVB +jfw +tJz +tVB +fti +tJz +tVB +tVB +jfw +tVB +tVB +tJz +tJz +mvf +kHk +mvf +mvf +tJz +gHo +tJz +tJz +chQ +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +lbU +buT +buT +buT +buT +buT +fie +qvv +qvv +eVw +rLs +dOQ +buT +buT +buT +buT +buT +eoV +hpe +clx +dZq +sZD +uow +uow +uow +gWI +uow +uow +uow +uow +kRT +uUA +eAJ +mnx +mnx +qef +qsg +xYo +uUA +qvx +mnx +mnx +pJf +qsg +uUA +osb +osb +osb +osb +osb +osb +osb +rzI +cTs +rzI +lJp +rzI +eNh +rzI +qBf +mRf +egO +egO +egO +egO +egO +egO +pZO +cGH +wHq +rzI +eHi +eHi +eHi +nPO +qWl +juv +kpt +pwe +nPO +nPO +nPO +nPO +nPO +ofZ +lJY +mti +nPO +lJY +dOS +cgU +fNL +nFa +xGX +lJY +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(73,1,1) = {" +sLM +sLM +sLM +sLM +tJz +chQ +mvf +mvf +mvf +tJz +tJz +tJz +mlS +mlS +lAC +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +qyK +ikt +ikt +ikt +ikt +ikt +wqZ +wqZ +fnU +fnU +fnU +fnU +fnU +ovu +fnU +fnU +fnU +fnU +fnU +pUk +dnp +mUz +ovP +mzs +ovP +lcH +hXC +ovP +ovP +fnU +tJz +mlS +tJz +tJz +tJz +tJz +mlS +mlS +fti +tJz +lPt +lPt +lXe +mws +qeR +fxM +tjz +vEJ +fxM +lkU +lkU +fxM +fxM +tJz +tJz +mlS +tJz +tJz +mlS +chQ +tJz +tJz +mvf +mvf +mvf +mvf +mvf +mvf +tJz +tJz +mvf +tJz +tJz +mvf +mvf +mvf +mvf +tJz +mvf +mvf +tJz +mvf +mvf +mvf +mvf +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +lbU +buT +buT +buT +buT +buT +qvv +qvv +qvv +mcG +pUg +oks +buT +buT +buT +buT +buT +buT +iVj +foF +jcM +dnm +dnm +dnm +dnm +pQR +dnm +dnm +dnm +dnm +rrp +kZg +uow +uow +uow +uow +kRT +xYo +kZg +uow +uow +uow +uow +kRT +kZg +uow +umn +osb +adJ +adJ +adJ +adJ +rzI +tTt +xDX +tTt +xDX +tTt +xDX +jVd +mRf +cux +pNp +hxQ +wYC +uBy +eJx +pZO +tWr +sMN +rzI +qEQ +qEQ +qEQ +gjt +nqg +uaY +sji +nqg +lRO +vkc +pzN +eII +eII +tSu +iHL +gFP +pIL +lJY +veQ +uYN +uYN +uYN +veQ +lJY +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(74,1,1) = {" +sLM +sLM +sLM +sLM +tJz +tJz +mvf +mvf +mvf +tJz +tJz +tJz +mlS +tJz +vrd +lAC +lAC +tJz +tJz +tRZ +tJz +tJz +ikt +drf +wqZ +cDe +ikt +tJz +iyK +ikt +wqZ +wqZ +ikt +tJz +tJz +tJz +ikt +wqZ +ikt +tJz +tJz +tJz +tRZ +tJz +pUk +pUk +pUk +pUk +pUk +pUk +fnU +jyU +jyU +fnU +tJz +tJz +mlS +chQ +mlS +tJz +tJz +tJz +tJz +tJz +tJz +lPt +fxM +fxM +fxM +fxM +ljl +ljl +fxM +fxM +fxM +fxM +tJz +tJz +tJz +fti +tJz +tJz +chQ +tJz +tJz +gHo +mvf +mvf +tJz +mvf +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +qBQ +boV +buT +buT +sXn +kEE +iKO +xGd +qvv +pUg +eVw +vWq +kAL +buT +buT +qvv +ppW +qvv +vCF +rYm +fGk +ase +osb +osb +iFr +mSq +iFr +mSq +iFr +osb +osb +wMx +dnm +dnm +dnm +dnm +dnm +dnm +pQR +rrp +nlX +dnm +dnm +dnm +dnm +dnm +rrp +uUA +osb +adJ +adJ +adJ +adJ +rzI +tTt +tTt +tTt +tTt +tTt +tTt +jVd +kwP +jXb +jXb +jXb +jXb +jXb +jXb +qwF +oJk +rzI +rzI +tAi +lJY +kJs +juv +lJY +lJY +lJY +lJY +kpt +eNb +eHN +lJY +lJY +lJY +lJY +mti +nPO +afs +lJY +lJY +rgP +lJY +lJY +vMs +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(75,1,1) = {" +sLM +sLM +sLM +tJz +tJz +tJz +mvf +mvf +mvf +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +atZ +tJz +iyK +gKF +wqZ +cDe +wqZ +gKF +tJz +tJz +gKF +wqZ +wqZ +gKF +tJz +tJz +iyK +gKF +wqZ +gKF +tJz +tJz +tJz +atZ +tJz +tJz +tJz +tJz +tJz +tJz +chQ +tJz +mvf +mvf +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +pxu +pxu +uUK +bhU +bhU +rTB +tJz +tJz +tJz +tJz +tJz +tJz +chQ +mlS +mlS +mlS +tJz +tJz +tJz +mvf +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +oGb +buT +buT +kEE +kEE +pGW +qvv +uMm +xkj +xOt +buT +buT +buT +qvv +qvv +quM +vOq +vCF +rYm +vHT +ase +osb +lAi +rRb +cRb +tcB +cRb +twu +lAi +osb +osb +osb +osb +tLz +osb +osb +osb +osb +vUI +uUA +myw +cUk +ihK +hlH +sUi +qsg +rSS +osb +adJ +adJ +adJ +adJ +rzI +tTt +tTt +tTt +tTt +tTt +tTt +jVd +egO +mrZ +byz +xpS +mrZ +byz +byz +byz +vyx +rzI +rzI +dzJ +dzJ +dzJ +cGC +yjZ +sot +nCS +yjZ +nGg +eNb +sAZ +jDz +jDz +kKV +lJY +mti +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(76,1,1) = {" +sLM +sLM +sLM +tJz +tJz +tJz +mvf +mvf +mvf +tJz +tJz +mlS +tJz +mlS +tJz +tJz +tJz +tJz +tJz +atZ +tJz +tJz +ikt +ktJ +cDe +cDe +gKF +tJz +tJz +gKF +wqZ +wqZ +gKF +tJz +tJz +tJz +gKF +wqZ +gKF +tJz +tJz +iyK +atZ +tJz +tJz +chQ +tJz +tJz +tJz +tJz +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +fJB +cZq +iBV +iBV +xmT +bhU +bhU +rTB +tJz +mlS +chQ +tJz +mlS +tJz +tJz +gHo +tJz +tJz +gHo +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +oGb +buT +buT +gcr +hkc +rma +xGd +qvv +qvv +buT +buT +buT +qvv +sqk +ppW +qvv +fie +vCF +rYm +nGA +ase +osb +lAi +rRb +cRb +eng +cRb +twu +lAi +osb +dvG +sZk +rVg +sZk +sZk +wdk +dTz +osb +qsg +uUA +kpC +lek +dkB +cPQ +hra +qsg +uUA +osb +adJ +adJ +adJ +adJ +rzI +tTt +tTt +tTt +tTt +tTt +tTt +jVd +egO +tWr +bsz +jVd +tWr +spM +sFj +aMJ +xka +rzI +rzI +kcH +kcH +kcH +nPO +dea +juv +kpt +dIb +nPO +nPO +nPO +nPO +nPO +ofZ +lJY +mti +nPO +csZ +tLy +iot +iot +iot +tLy +csZ +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(77,1,1) = {" +sLM +sLM +sLM +tJz +tJz +tJz +mvf +mvf +tJz +tJz +tJz +fgP +tJz +mlS +mlS +mlS +tJz +tJz +fti +atZ +tJz +tJz +ikt +pNy +wqZ +cDe +gKF +tJz +fti +gKF +wqZ +wqZ +gKF +tJz +fti +tJz +gKF +wqZ +gKF +tJz +tJz +tJz +atZ +tJz +mvf +kHk +mvf +mvf +mvf +mvf +mvf +mvf +kHk +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +gHo +mvf +xHb +idU +fDx +fDx +fDx +fDx +fDx +yjy +fti +tJz +tJz +tJz +tJz +tJz +gHo +tJz +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +tJz +tJz +chQ +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +vOq +buT +buT +qvv +qvv +qvv +fDG +qvv +nyb +buT +buT +qvv +qvv +xGd +qvv +bTx +bTx +vCF +rYm +nGA +sIn +osb +bVP +cRb +cRb +cRb +cRb +twu +lAi +osb +qrs +sZk +fgh +sZk +sZk +ubh +wQR +osb +qsg +uUA +rgN +cam +cam +cam +kpC +qsg +uUA +osb +adJ +adJ +adJ +adJ +tPc +rzI +rzI +rzI +rzI +rzI +rzI +ntq +sMg +vyx +rzI +jVd +tWr +rzI +rzI +rzI +rzI +rzI +rzI +lPo +lPo +lPo +nPO +uxb +juv +kpt +nmC +nPO +bEB +mGW +iPk +nPO +wem +lJY +mti +nPO +jHp +jHp +jHp +jHp +jHp +jHp +jHp +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(78,1,1) = {" +sLM +sLM +sLM +tJz +chQ +mvf +mvf +mvf +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +atZ +tJz +tJz +gKF +wqZ +cDe +wqZ +gKF +tJz +tJz +gKF +wqZ +wqZ +gKF +tJz +iyK +tJz +gKF +wqZ +gKF +tJz +tJz +tJz +atZ +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +gHo +tJz +tJz +tJz +tJz +tJz +tJz +tJz +chQ +tJz +mvf +sTr +tsb +tsb +tsb +tsb +tsb +tsb +tsb +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +mvf +mvf +mvf +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +ewz +tJz +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +qvv +buT +buT +qvv +smc +qvv +qvv +qvv +uDC +buT +buT +qvv +quM +fie +bTx +bTx +bTx +vCF +rYm +nGA +ase +osb +lAi +rRb +cRb +bSf +cRb +twu +lAi +osb +cKt +sZk +gtk +sZk +sZk +dwn +boO +osb +qsg +uUA +cPQ +cam +xew +cam +cPQ +qsg +uUA +osb +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +rzI +hDe +rtG +hDe +rzI +jVd +tWr +riH +riH +riH +fRW +rzI +rzI +nPO +nPO +nPO +nPO +nPO +cwb +hnz +nPO +nPO +bzC +bzC +bzC +nPO +ofZ +gJM +mti +nPO +nar +jHp +lJY +lJY +lJY +jHp +ayh +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(79,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +mvf +tJz +tJz +tJz +tJz +mlS +mlS +tJz +ePO +chQ +tJz +tJz +tRZ +tJz +tJz +ikt +cDe +wqZ +cDe +ikt +tJz +tJz +ikt +wqZ +wqZ +ikt +tJz +tJz +tJz +ikt +wqZ +ikt +tJz +tJz +tJz +atZ +tJz +mvf +mvf +mvf +tJz +tJz +tJz +mvf +mvf +tJz +tJz +tJz +tJz +tJz +chQ +gHo +tJz +tJz +tJz +tJz +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +mvf +mvf +tJz +mvf +mvf +mvf +mvf +mvf +tJz +mvf +mvf +mvf +mvf +tJz +tJz +mvf +tJz +mvf +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +gHo +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +qBQ +ppW +buT +buT +qvv +qvv +ppW +dKp +qvv +rQk +buT +buT +xGd +qvv +bTx +bTx +lXw +bTx +vCF +rYm +nGA +ase +osb +lAi +yiT +cRb +tcB +cRb +lPV +lAi +osb +cDV +sZk +sZk +sZk +sZk +sZk +quL +osb +qsg +uUA +kpC +cam +cam +cam +mTZ +qsg +uUA +osb +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +rzI +bOI +lMG +xtW +rzI +qBf +tWr +ise +ise +ise +edF +rzI +qpJ +qol +oJP +cdV +nPO +qcW +uaY +kpt +nPO +xdX +lJY +lJY +uOS +nPO +ofZ +lJY +mti +nPO +nPO +nPO +vWR +nPO +vWR +nPO +nPO +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(80,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +tJz +tJz +tIs +tJz +tJz +tJz +mlS +mlS +mlS +tJz +tJz +tJz +ikt +ikt +ikt +ikt +ikt +dCr +ikt +ikt +ikt +ikt +ikt +pTT +pTT +ikt +ikt +ikt +ikt +ikt +qqT +ikt +ikt +yic +yic +ndl +tJz +mvf +mvf +mvf +gHo +eOW +eOW +mcX +mcX +eOW +eOW +eOW +eOW +eOW +eOW +gwz +gwz +gwz +ovn +gwz +gwz +gwz +ovn +gwz +gwz +gwz +fcL +tJz +tJz +tJz +mlS +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mvf +mvf +mvf +mvf +mvf +mvf +tJz +mvf +mvf +tJz +tJz +mvf +mvf +mvf +tJz +tJz +mvf +mvf +tJz +tJz +tJz +tJz +tJz +gHo +tJz +tJz +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +qvv +buT +buT +buT +xGd +qLO +qvv +ppW +iFn +buT +buT +qvv +wwG +bTx +bTx +bTx +bTx +vCF +rYm +nGA +ase +osb +osb +osb +iFr +osb +iFr +osb +osb +osb +hVo +sZk +sZk +sZk +sZk +hnt +vnp +osb +qsg +uUA +lek +dkB +hra +cPQ +rgN +qsg +uUA +osb +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +rzI +rzI +rzI +jVd +egO +tWr +rzI +jVd +tWr +rOr +rOr +rOr +mtm +rzI +oAD +lJY +lJY +cjw +qcz +aaB +lJY +kpt +mMF +lJY +lJY +oGH +ckZ +nPO +ofZ +lJY +mTN +eII +eII +eII +uAG +eII +uAG +smo +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(81,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +tJz +tJz +tJz +tJz +tJz +tJz +chQ +mlS +mlS +tJz +tJz +tJz +gKF +ptP +vxK +mhw +vvC +qGr +jhd +mhw +kkN +kkN +snz +dHM +dHM +hOf +kkN +kkN +kkN +snz +dHM +jhd +xAj +mvf +mvf +mvf +mvf +mvf +mvf +mvf +gHo +eOW +jBg +bda +bda +hwb +eOW +wGg +yfK +wlp +eOW +chQ +mlS +mvf +hjC +mvf +tIK +mvf +hjC +mvf +tJz +chQ +fDF +tJz +mlS +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +gHo +tJz +mvf +mvf +mvf +tJz +mvf +mvf +mvf +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +esh +tJz +tJz +mlS +mlS +tJz +mlS +mlS +tJz +tJz +tJz +tJz +chQ +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +xGd +qvv +buT +buT +buT +qLO +qvv +nnF +weE +buT +buT +fie +qvv +bTx +bTx +bOw +bTx +vCF +rYm +nGA +dZq +fsO +fsO +eFi +fsO +fsO +fsO +eFi +tEZ +eSs +eSs +nbQ +lsy +cYp +sZk +rBS +wQR +osb +vUI +uUA +myw +cUk +ihK +hlH +kpC +qsg +rSS +osb +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +rzI +eEz +ggZ +jVd +mrZ +vyx +rzI +jVd +tWr +gJj +gJj +gJj +wHd +rzI +lDI +lJY +lJY +cjw +qcz +aaB +lJY +kpt +mMF +lJY +lJY +lJY +lJY +nPO +wem +lJY +lJY +lJY +dTw +lJY +lJY +lJY +lJY +ujO +jiu +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(82,1,1) = {" +sLM +sLM +sLM +chQ +tJz +mvf +mvf +tJz +chQ +tJz +tJz +tJz +mlS +fti +tJz +mlS +tJz +tJz +tJz +gKF +cyD +cYU +dHM +dHM +dHM +dHM +dHM +dHM +dHM +dHM +dHM +dHM +dHM +dHM +dHM +dHM +dHM +dHM +dHM +xAj +mvf +mvf +mvf +mvf +mvf +kHk +mvf +tJz +eOW +tVQ +bda +bda +bRw +kAS +rwr +nUM +lJz +eOW +gHo +tJz +mvf +hjC +mvf +mvf +mvf +hjC +mvf +ych +mlS +fDF +tJz +tJz +gHo +tJz +tJz +mlS +chQ +tJz +tJz +tPk +tJz +gHo +tJz +mlS +tJz +tJz +mvf +mvf +mvf +mvf +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +tJz +chQ +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tPk +mlS +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +qvv +fie +vOq +buT +buT +buT +ppW +qvv +cOJ +buT +buT +qvv +qvv +bTx +bTx +bTx +bTx +vCF +rYm +nGA +nGA +nGA +nGA +nGA +nGA +nGA +nGA +nGA +ase +cYS +eSs +crA +jNh +dYJ +sZk +jOB +bSm +osb +qsg +kZg +uow +uow +uow +uow +uow +kRT +uUA +osb +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +hDe +jzn +bOI +qwF +tWr +jzn +hDe +jVd +tWr +umT +umT +umT +fFo +rzI +kXx +ika +oCS +vuP +nPO +pvN +vsE +nuK +nPO +atg +ccF +cgE +xfK +nPO +ofZ +lJY +uqw +jDz +jDz +jDz +rAi +rER +rAi +iwL +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(83,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +gKF +ptP +aDO +klt +mrL +dHM +aEb +klt +klt +klt +klt +klt +klt +klt +klt +klt +klt +klt +klt +klt +xAj +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +eOW +dgv +bda +bda +bxz +kAS +bNo +nUM +oAY +kAS +mvf +mvf +mvf +hjC +mvf +mvf +mvf +hjC +mvf +mvf +mvf +fDF +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +mlS +tJz +mvf +mvf +tJz +tJz +mvf +mvf +mvf +mvf +tJz +tJz +mvf +mvf +tJz +mvf +mvf +tJz +mvf +mvf +mlS +tJz +mlS +tJz +tJz +mlS +tJz +mlS +tJz +wRu +tJz +tJz +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +qvv +qvv +ppW +jHG +buT +buT +buT +buT +buT +buT +buT +xGd +sqk +bTx +bTx +hFS +bTx +vCF +rYm +nGA +jcM +lzl +lzl +lzl +lzl +lzl +iVj +nGA +ase +xaX +eSs +osb +hGz +hGz +hGz +hGz +osb +osb +wMx +dnm +dnm +rrp +xYo +nlX +dnm +dnm +pwL +osb +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +hDe +qYl +mcm +egO +hIM +vZZ +hDe +jVd +tWr +phi +phi +phi +wMP +rzI +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +ofZ +lJY +mti +nPO +nPO +nPO +ijw +nPO +ijw +nPO +nPO +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(84,1,1) = {" +sLM +sLM +sLM +tJz +chQ +mvf +mvf +tJz +tJz +tJz +tJz +ikt +gKF +gKF +gKF +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +vuo +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +tJz +tJz +tJz +tJz +mvf +mvf +mvf +mvf +doF +bda +bda +bda +bxz +kAS +liO +nUM +aNi +kAS +mvf +kHk +mvf +geo +mvf +mvf +mvf +afq +mvf +mvf +mvf +fDF +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tPk +chQ +tJz +tJz +tJz +tJz +tJz +mvf +mvf +tJz +mvf +mvf +tJz +mvf +mvf +mvf +tJz +tJz +mvf +mvf +gHo +mvf +mvf +mvf +mvf +tJz +tJz +tJz +chQ +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vCF +qvv +quM +qvv +vOq +buT +buT +buT +buT +buT +buT +buT +qvv +quM +fie +bTx +bTx +bTx +vCF +rYm +nGA +ase +cYS +cYS +jrk +cYS +cYS +rYm +nGA +ase +sdE +eSs +adJ +adJ +adJ +adJ +adJ +adJ +osb +osb +osb +osb +qsg +xYo +uUA +osb +osb +osb +acq +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +hDe +qYl +ntq +aZf +vyx +vZZ +hDe +jVd +tWr +ekl +ekl +ekl +nWQ +rzI +nPB +djc +uHA +uWu +tiF +pHV +cBW +uWu +uHA +djc +ubR +nPO +iBn +eII +tSu +lJY +mti +nPO +nar +lxq +lJY +lJY +lJY +lxq +ayh +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(85,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +tJz +tJz +tJz +tIs +gKF +pKm +ogD +ogD +fzb +kDc +eOK +hyg +eOK +ikt +ptP +yez +cyD +fNc +cyD +yez +ptP +ikt +keO +xWv +gAP +ikt +wZp +wZp +wZp +ikt +lMv +tJz +wjI +tJz +tJz +tJz +tJz +mvf +mvf +mvf +mvf +xxd +bda +bda +bda +pdx +eOW +dvg +nUM +xbw +kAS +mvf +mvf +ebp +hjC +mvf +mvf +mvf +hjC +bPw +mvf +mvf +fDF +tJz +tJz +tJz +tJz +mlS +tJz +chQ +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +mvf +mvf +mvf +mvf +mvf +tJz +mvf +mvf +mvf +tJz +tJz +mlS +tJz +tJz +tJz +mlS +tJz +tJz +mlS +tJz +tJz +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +qBQ +ppW +qvv +fie +qvv +qvv +qLO +xGd +qvv +jHG +qvv +qvv +qvv +qvv +xGd +qvv +bTx +bTx +vCF +rYm +nGA +ase +cYS +wIB +vFp +ixq +cYS +rYm +nGA +ase +kvP +eSs +adJ +adJ +adJ +adJ +fjg +fjg +fjg +fjg +adJ +osb +vUI +xYo +rSS +osb +adJ +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +rzI +qYl +puf +sgj +uEN +vZZ +rzI +jVd +tWr +sfS +sfS +sfS +jAt +rzI +rrS +hpJ +djc +djc +djc +djc +djc +djc +djc +djc +djc +vZd +eHN +lJY +lJY +lJY +dXa +nPO +lxq +lxq +lxq +lxq +lxq +lxq +lxq +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(86,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +chQ +tJz +fti +tJz +gKF +qIv +pNx +iwf +rrZ +kDc +jFQ +xvT +qAM +ikt +oWM +nOJ +nOJ +nOJ +nOJ +nOJ +pbI +ikt +jsB +jsB +jsB +ikt +hJi +hJi +hJi +ikt +ikt +ikt +chQ +tJz +wjI +gHo +tJz +mvf +mvf +mvf +mvf +xxd +bda +bda +bda +bda +qZS +nUM +nUM +wuP +eOW +mvf +mvf +eOh +hjC +mvf +mvf +mvf +hjC +eOh +mvf +mvf +fDF +tJz +tJz +chQ +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +chQ +tJz +gHo +mvf +mvf +tJz +mvf +mvf +mvf +tJz +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +uMC +vCF +vCF +vCF +qBQ +qvv +vcQ +fie +qvv +qvv +quM +xGd +qvv +ppW +qvv +fie +qvv +fie +vCF +rYm +nGA +ase +jrk +qdM +wZc +qaj +jrk +rYm +nGA +ase +cYS +eSs +adJ +adJ +adJ +fjg +fjg +fjg +fjg +fjg +fjg +iFr +qsg +xYo +uUA +iFr +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +rzI +jvw +gRz +rzI +gRz +iOM +rzI +qBf +tWr +vop +vop +vop +pxZ +rzI +wsD +djc +djc +djc +djc +djc +djc +djc +djc +djc +ubR +nPO +lVR +fkO +jDz +rAi +wIQ +nPO +tfv +bXY +tfv +tfv +tfv +bXY +tfv +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(87,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +tJz +tJz +gHo +tJz +gKF +vsk +dzI +fCJ +fmm +kDc +dGj +pqU +wIV +ikt +eIa +nOJ +nOJ +nOJ +nOJ +nOJ +qog +faJ +rno +chj +hZP +nTf +vXr +rOI +rno +kXn +opB +ikt +tJz +tJz +tJz +wjI +tJz +mvf +mvf +mvf +mvf +xxd +bda +bda +bda +clO +eOW +cEu +uNO +xko +eOW +mvf +mvf +gqL +hjC +mvf +uud +mvf +hjC +gqL +mvf +mvf +fDF +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +chQ +tJz +tJz +gJu +mlS +tJz +tJz +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +mvf +tJz +tJz +tJz +tJz +tJz +tPk +tJz +tJz +tPk +tJz +tJz +tJz +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +qBQ +vCF +vCF +vCF +qBQ +qvv +qvv +qvv +fie +qvv +sqk +qvv +quM +qvv +vCF +rYm +nGA +ase +cYS +mCj +brr +qaj +cYS +rYm +nGA +ase +eSs +eSs +adJ +adJ +adJ +fjg +fjg +fjg +fjg +fjg +lTD +kok +qsg +xYo +uUA +kok +xVK +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +rzI +wFO +hFb +vdr +hFb +rSQ +rzI +ntq +vyx +iNW +iNW +iNW +poB +rzI +hwj +qzg +syd +hwj +nPO +riu +djc +wnU +djc +oUX +nPO +nPO +nPO +nPO +jiu +toM +jiu +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(88,1,1) = {" +sLM +sLM +sLM +chQ +tJz +mvf +mvf +tJz +tJz +tJz +tJz +ikt +mGe +mGe +qEZ +mGe +kDc +bqK +qeu +rgp +ikt +cyD +nOJ +eiU +nOJ +eiU +nOJ +qog +uDl +rno +vkn +nOK +tVG +rno +hdo +rno +kXn +opB +ikt +tJz +gHo +fti +tJz +tJz +mvf +kHk +mvf +tJz +eOW +wke +bda +bda +tbP +eOW +eOW +eOW +eOW +eOW +mvf +mvf +itw +wql +iaf +iaf +iaf +gxS +itw +mvf +mvf +fDF +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tPk +tJz +tJz +tJz +tJz +mvf +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +tJz +tJz +mlS +tJz +tpO +tJz +tJz +tJz +tJz +tJz +chQ +wRu +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +qBQ +vCF +vCF +vCF +qBQ +qvv +ppW +qvv +qvv +fie +qBQ +opo +seb +opo +seb +bIJ +eda +qaj +seb +opo +seb +opo +seb +adJ +adJ +adJ +adJ +fjg +fjg +fjg +fjg +fjg +fjg +iFr +qsg +xYo +uUA +iFr +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +rzI +uBb +ykp +rzI +ykp +qRh +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +lJU +gAa +syd +sEB +nPO +wdG +bhI +tmr +mkF +jMn +nPO +nlc +nlc +nlc +nlc +eAy +nlc +nlc +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(89,1,1) = {" +sLM +sLM +tJz +tJz +tJz +mvf +mvf +tJz +tJz +chQ +tJz +ikt +ikt +yfo +ikt +ikt +ikt +kDc +wac +kDc +ikt +arm +nOJ +fnQ +nOJ +eiU +nOJ +qog +uDl +rno +mnU +tMz +nPa +rXG +uNg +rno +kXn +opB +ikt +tJz +tJz +wjI +gHo +tJz +mvf +mvf +mvf +tJz +eOW +rVM +bda +bda +bda +kSJ +oFt +lSi +oFt +kSJ +mvf +mvf +mvf +mvf +mvf +kHk +mvf +mvf +mvf +mvf +mvf +fDF +tJz +tJz +tJz +tJz +tJz +chQ +tJz +tJz +mlS +tJz +tJz +tJz +tJz +chQ +gHo +tJz +mvf +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +mvf +tJz +mvf +mvf +mvf +mvf +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +mlS +mlS +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +qBQ +qBQ +vCF +vCF +vCF +qBQ +qBQ +jrk +seb +jrk +seb +nZh +kxZ +awU +seb +jrk +seb +jrk +seb +adJ +adJ +adJ +adJ +adJ +fjg +fjg +fjg +fjg +adJ +osb +pCX +dxX +jLy +osb +adJ +fjg +fjg +fjg +fjg +adJ +adJ +adJ +wDi +wDi +wDi +wDi +hlj +xzI +wDi +efX +dnW +wDi +wDi +adJ +adJ +adJ +adJ +adJ +nPO +qSC +fNM +sok +vUQ +nPO +rBI +djc +iXQ +djc +evo +nPO +nlc +pqS +imQ +pJi +jHd +udY +nlc +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(90,1,1) = {" +sLM +sLM +tJz +tJz +tJz +mvf +mvf +tJz +tJz +tJz +sIG +gKF +wqp +oyn +oyn +qAA +oyn +oyn +oyn +hTJ +ikt +mgv +nOJ +nOJ +nOJ +nOJ +nOJ +qog +kjY +rno +vPU +uPs +lEt +ddY +lMN +rno +kXn +opB +ikt +tJz +tJz +tJz +gHo +chQ +mvf +mvf +mvf +chQ +eOW +hYp +bda +bda +bda +kSJ +fLa +fLa +fLa +vbb +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +wye +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +mvf +mvf +tJz +mvf +mvf +tJz +tJz +mvf +mvf +mvf +mvf +tJz +mvf +tJz +tJz +tJz +mvf +mvf +tJz +tJz +tJz +tJz +tJz +tJz +gHo +mlS +tJz +tJz +tJz +mlS +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eSs +jrk +seb +jrk +seb +seb +seb +seb +seb +jrk +seb +jrk +seb +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +osb +osb +osb +osb +osb +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +wDi +jOb +jOb +jOb +jOb +jOb +bRy +jOb +jOb +jOb +wDi +vEK +adJ +adJ +adJ +adJ +nPO +nPO +nPO +nPO +nPO +nPO +jiu +jiu +jiu +jiu +jiu +nPO +nlc +pRh +jHd +hPO +jHd +ajI +nlc +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(91,1,1) = {" +sLM +sLM +tJz +chQ +tJz +mvf +mvf +tJz +tJz +tJz +tJz +gKF +tiB +xFs +lre +lre +lre +xFs +oyn +jLZ +ikt +ptP +nOJ +wcw +nOJ +nOJ +nOJ +dow +ikt +nWT +nWT +nWT +ikt +twm +twm +twm +ikt +ikt +ikt +gHo +tJz +wjI +tJz +tJz +mvf +mvf +mvf +tJz +eOW +fls +bda +bda +jDQ +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +bNg +eOW +ugE +eOW +eOW +eOW +eOW +eOW +tJz +tJz +chQ +tJz +tJz +tJz +tJz +tJz +chQ +tJz +tJz +tJz +mlS +tJz +tJz +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +mvf +tJz +mvf +mvf +mvf +tJz +mvf +mvf +mvf +mlS +tJz +tJz +tJz +tJz +tJz +iyK +tJz +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +sJj +eSs +aYb +seb +adJ +adJ +adJ +seb +sJj +eSs +aYb +seb +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +wDi +jOb +jOb +jOb +jOb +jOb +jOb +jOb +jOb +jOb +mLO +hGn +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +nPO +aqp +aqp +jiu +aqp +aqp +nPO +nlc +jrr +jHd +pXL +jHd +cts +nlc +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(92,1,1) = {" +sLM +sLM +tJz +gJu +tJz +mvf +mvf +tJz +tJz +tJz +tJz +gKF +wqp +xFs +xeN +hcI +mBg +xFs +oyn +lPW +ikt +cyD +nOJ +wcw +wcw +nOJ +nOJ +qTE +ikt +oSz +dqL +oSz +ikt +aGs +aGs +aGs +ikt +xMF +atZ +tJz +wjI +wjI +tJz +wjI +mvf +mvf +mvf +tJz +eOW +rTO +bda +bda +gNW +eOW +pcT +ivy +lfO +eOW +aOu +etc +aOu +eOW +qGe +pFk +los +eOW +ovZ +uns +aOu +eOW +tJz +tJz +mlS +tJz +mlS +tJz +tJz +mlS +tJz +tJz +tJz +mlS +mlS +tJz +mlS +tJz +mvf +tJz +mvf +mvf +mvf +mvf +mvf +tJz +mvf +mvf +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +tJz +tJz +tJz +tJz +nnU +mlS +tJz +tPk +tJz +tJz +wRu +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +jrk +seb +jrk +seb +bnh +bnh +bnh +seb +jrk +seb +jrk +seb +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +wDi +tak +jOb +jOb +jOb +jOb +jOb +jOb +jOb +umL +mLO +hGn +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +nPO +aqp +aqp +jiu +aqp +aqp +nPO +nlc +ckX +gNr +jHd +vFv +urK +nlc +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(93,1,1) = {" +sLM +sLM +tJz +tJz +gHo +mvf +mvf +tJz +gJu +fti +tJz +gKF +wqp +dAm +rzY +xFs +xFs +xFs +oyn +oyn +vuo +nOJ +nOJ +wcw +wcw +joD +wcw +oZd +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +tJz +sNA +tJz +fti +tJz +gHo +tJz +mvf +kHk +mvf +tJz +eOW +vML +bda +bda +bHy +eOW +xwW +nUM +bWD +eOW +oYe +ulL +ref +eOW +giO +atc +los +eOW +oYe +ulL +goZ +eOW +tJz +tJz +woq +tJz +tJz +tJz +tJz +tPk +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +mvf +mvf +mvf +tJz +mvf +tJz +mvf +mvf +tJz +mvf +mvf +mvf +tJz +mvf +mvf +mvf +tJz +mvf +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +jrk +seb +jrk +seb +adJ +adJ +adJ +seb +jrk +seb +jrk +seb +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +wDi +jOb +jOb +jOb +jOb +jOb +jOb +jOb +jOb +jOb +mLO +hGn +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +nPO +aqp +aqp +jiu +aqp +aqp +nPO +nlc +nlc +nlc +eAy +nlc +nlc +nlc +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(94,1,1) = {" +sLM +sLM +tJz +chQ +tJz +mvf +mvf +tJz +chQ +tJz +tJz +gKF +wqp +xFs +nrh +bUl +amr +xFs +oyn +lPW +ikt +cyD +nOJ +wcw +wcw +nOJ +nOJ +tIq +ikt +nNd +mRd +nNd +ikt +uaS +xFu +dRV +ikt +tJz +atZ +tJz +kmp +tJz +tJz +chQ +mvf +mvf +mvf +chQ +eOW +rVM +bda +bda +bda +qZS +nUM +nUM +bWD +eOW +raB +bda +lCD +eOW +qGe +pFk +los +eOW +raB +bda +ykz +eOW +tJz +tJz +tJz +tJz +tJz +chQ +tJz +tJz +tJz +tJz +tPk +gJu +tJz +tJz +tJz +tJz +mvf +mvf +mvf +mvf +mvf +tJz +mvf +mvf +mvf +tJz +mvf +tJz +mvf +tJz +mvf +mvf +tJz +mvf +tJz +tJz +oGr +tJz +tJz +mlS +mlS +mlS +tJz +tJz +mlS +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +seb +oRM +seb +oRM +seb +bnh +bnh +bnh +seb +oRM +seb +oRM +seb +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +wDi +jOb +jOb +jOb +jOb +jOb +vXk +jOb +jOb +jOb +wDi +ncH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +nPO +aqp +aqp +jiu +aqp +aqp +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(95,1,1) = {" +sLM +sLM +tJz +tJz +tJz +mvf +mvf +tJz +tJz +gJu +tJz +gKF +tiB +xFs +tIy +tIy +tIy +xFs +oyn +jLZ +ikt +ptP +nOJ +wcw +nOJ +nOJ +nOJ +vKj +ikt +jJu +jJu +jJu +ikt +xhK +xhK +xhK +ikt +ikt +ikt +tJz +iyK +wjI +wjI +tJz +mvf +mvf +mvf +tJz +eOW +oSJ +bda +bda +aHG +eOW +emB +nUM +bWD +eOW +kAS +hdY +kAS +eOW +laR +eOW +fCu +eOW +kAS +hdY +kAS +eOW +tJz +tJz +tJz +tJz +tPk +tJz +tJz +tJz +tJz +tJz +iyK +mlS +tJz +tJz +tJz +tJz +mvf +mvf +mvf +mvf +mvf +tJz +mvf +mvf +mvf +tJz +mvf +mvf +tJz +mvf +mvf +mvf +mvf +mvf +tJz +mlS +tJz +tJz +tJz +tJz +chQ +tJz +tJz +wRu +tJz +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +snC +snC +snC +snC +naJ +snC +uzJ +snC +eRG +eRG +eRG +snC +naJ +snC +naJ +snC +snC +eRG +eRG +snC +snC +snC +snC +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +wDi +wDi +wDi +wDi +wDi +wDi +wDi +wDi +wDi +wDi +wDi +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +nPO +aqp +aqp +jiu +aqp +aqp +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(96,1,1) = {" +sLM +sLM +tJz +tJz +tJz +mvf +mvf +chQ +tJz +tJz +tJz +gKF +wqp +oyn +nzh +nzh +oyn +oyn +oyn +hTJ +ikt +kCg +nOJ +nOJ +nOJ +nOJ +nOJ +qog +faJ +rno +chj +hZP +qNC +vXr +rOI +rno +wjB +hdv +ikt +tJz +gHo +fyC +tJz +gHo +mvf +mvf +mvf +tJz +eOW +voT +bda +bda +xfA +eOW +osy +uNw +eOW +eOW +irE +hlZ +hlZ +ijz +ddr +acz +vsR +ijz +hlZ +hlZ +hgR +eOW +tJz +tJz +chQ +mlS +mlS +tJz +tJz +mlS +tJz +mlS +tJz +tJz +chQ +tJz +mlS +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +tJz +mlS +oGr +tJz +mlS +tJz +tJz +tJz +mlS +gHo +tJz +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +snC +cnh +yey +iVd +dJX +snC +lLq +iFH +tfi +tfi +tfi +tMg +lLq +lLq +lLq +tMg +tfi +tfi +tfi +tfi +mpu +snC +uAZ +pTW +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +nPO +aqp +aqp +jiu +aqp +aqp +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(97,1,1) = {" +sLM +sLM +tJz +tJz +tJz +mvf +mvf +tJz +tJz +tJz +tJz +ikt +pda +abl +nPQ +doZ +qFd +ikt +ikt +ikt +ikt +lIU +nOJ +rqP +nOJ +eiU +nOJ +lxW +uDl +rno +vkn +nOK +tVG +rno +hdo +rno +wjB +dCc +ikt +gHo +rUF +tJz +tJz +tJz +mvf +mvf +mvf +tJz +eOW +eOW +lry +lry +eOW +eOW +xIS +xJF +eOW +omq +ddr +iTO +iTO +veo +fnG +xuw +suN +vDx +iTO +iTO +mpn +kAS +tJz +tJz +mlS +tJz +tJz +chQ +tJz +tJz +tJz +tJz +tJz +tJz +gJu +tJz +tJz +tJz +tJz +mvf +mvf +tJz +mvf +mvf +mvf +tJz +mvf +mvf +tJz +mvf +mvf +mvf +tJz +tJz +mvf +mvf +tJz +tPk +tJz +mlS +tJz +tJz +lCh +tJz +tPk +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eRG +iNH +dJX +dJX +dJX +jPy +iuG +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +fms +eRG +uAZ +pTW +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +nPO +fmX +aqp +jiu +fmX +aqp +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(98,1,1) = {" +sLM +sLM +tJz +tJz +chQ +mvf +mvf +tJz +tJz +tJz +tJz +ikt +xdT +bqK +qeu +bqK +qeu +kFK +wzw +nRk +ikt +cyD +nOJ +eiU +nOJ +uIx +nOJ +lxW +uDl +rno +mnU +tMz +nPa +rXG +uNg +rno +wjB +lLn +ikt +gHo +fti +gHo +tJz +chQ +mvf +kHk +mvf +chQ +eOW +msb +bda +bda +mBD +oWo +pPJ +hlZ +xJa +ddr +iTO +iTO +iTO +oDo +hEp +cie +nce +gFS +iTO +iTO +mpn +kAS +tJz +fti +tJz +tJz +tJz +tJz +tJz +chQ +tJz +tJz +mlS +tJz +tJz +tJz +mlS +tJz +mvf +tJz +tJz +tJz +tJz +tJz +mvf +tJz +tJz +mvf +tJz +tJz +tJz +tJz +gHo +tJz +tJz +mvf +tJz +tJz +tJz +mlS +tJz +lCh +gUG +lCh +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +snC +snC +iNH +dJX +dJX +lAY +eRG +iuG +hWD +lMl +lMl +lMl +wCP +lMl +hWD +lMl +lMl +lMl +wCP +lMl +hWD +fms +eRG +uAZ +pTW +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +nPO +aqp +aqp +jiu +aqp +aqp +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(99,1,1) = {" +sLM +sLM +gJu +tJz +tJz +mvf +mvf +tJz +tJz +chQ +tJz +gKF +rkR +qeu +bqK +qeu +fgG +bjU +bqK +fBZ +ikt +jRv +nOJ +nOJ +nOJ +nOJ +nOJ +qog +kjY +rno +vPU +uPs +uOO +ddY +lMN +rno +wjB +bVS +ikt +dMb +tJz +gHo +tJz +tJz +mvf +mvf +mvf +tJz +eOW +iri +bda +bda +drh +gDv +vCj +vCj +eoT +tpT +iTO +iTO +iTO +bit +bRe +qFs +jsD +hVc +iTO +iTO +mpn +kAS +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +chQ +tJz +tJz +tJz +tJz +tJz +tJz +mvf +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +mvf +tJz +tJz +tJz +mlS +tJz +tJz +tJz +chQ +tJz +lCh +mlS +mlS +tJz +tJz +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +snC +snC +eRG +snC +snC +snC +iNH +dJX +dJX +lAY +eRG +iuG +hWD +bkG +ycW +meX +wjW +bkG +hWD +meX +wjW +bkG +ukm +meX +hWD +pCJ +snC +cNN +cNN +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +nPO +aqp +aqp +jiu +aqp +aqp +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(100,1,1) = {" +sLM +sLM +tJz +tJz +tJz +mvf +mvf +mvf +tJz +fti +tJz +gKF +wBT +bqK +qeu +bqK +bIm +vRj +qeu +aNn +ikt +ubg +nOJ +nOJ +nOJ +nOJ +nOJ +pnR +ikt +rLd +rLd +rLd +ikt +bLo +bLo +bLo +ikt +ikt +ikt +gHo +tJz +iyK +tJz +tJz +mvf +mvf +mvf +tJz +eOW +eOW +lry +lry +eOW +eOW +eOW +eOW +eOW +sJn +tpT +iTO +iTO +uoU +xxf +nrf +cLI +drn +iTO +iTO +mpn +kAS +tJz +tJz +mlS +tJz +tJz +tJz +tJz +mlS +gHo +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mvf +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mvf +tJz +tJz +tJz +tJz +tJz +tJz +tPk +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +snC +dIr +bxg +sCI +dtn +snC +mEb +fAs +dJX +cLm +snC +iuG +hWD +tfi +tfi +tfi +daq +tfi +hWD +tfi +tfi +tfi +daq +tfi +hWD +fms +snC +uAZ +pTW +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +nPO +aqp +aqp +jiu +aqp +aqp +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(101,1,1) = {" +sLM +sLM +tJz +tJz +tJz +mvf +mvf +mvf +tJz +gHo +tJz +gKF +flk +gKj +sSn +uYx +bqK +qeu +bqK +kdG +ikt +ptP +eDL +cyD +nOJ +cyD +eDL +ptP +ikt +nNd +vhB +nNd +ikt +kzo +bQn +rVD +ikt +tJz +tJz +tJz +tJz +gHo +tJz +tJz +mvf +mvf +mvf +tJz +eOW +jyZ +bda +bda +bda +cnG +twr +cnG +eOW +eOW +soD +vCj +vCj +kDg +vCj +vCj +vCj +kDg +vCj +vCj +auh +eOW +tJz +tJz +tJz +chQ +mlS +mlS +tJz +tJz +mlS +tJz +tJz +tJz +tJz +chQ +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +mvf +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tPk +tJz +tJz +chQ +gHo +tJz +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eRG +wgD +itB +jnR +jnR +snC +snC +eRG +jPy +snC +snC +iuG +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +fms +eRG +uAZ +pTW +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +nPO +aqp +aqp +jiu +aqp +aqp +nPO +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(102,1,1) = {" +sLM +sLM +sLM +tJz +tJz +mvf +mvf +mvf +tJz +tJz +tJz +ikt +gKF +gKF +gKF +ikt +wSu +bqK +qeu +qOk +ikt +ikt +ikt +ikt +vuo +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +tJz +gHo +wjI +dMb +gHo +wjI +chQ +mvf +mvf +mvf +chQ +eOW +jyZ +tpM +bda +ykz +bda +bda +bda +ffz +eOW +kAS +hdY +kAS +eOW +kAS +hdY +kAS +eOW +kAS +hdY +kAS +eOW +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +gHo +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +uox +tJz +mlS +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eRG +gTX +lJk +itB +itB +ycW +wSY +iRI +xpr +nBZ +eRG +iuG +hWD +lMl +lMl +lMl +wCP +lMl +hWD +lMl +lMl +lMl +wCP +lMl +hWD +fms +snC +cNN +cNN +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +nPO +mln +mln +jiu +mln +mln +eFe +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(103,1,1) = {" +sLM +sLM +sLM +tJz +tJz +chQ +mvf +mvf +mvf +tJz +chQ +tJz +mlS +tJz +tJz +gKF +wMW +qeu +bqK +tVz +ikt +rPO +sBv +xFs +xFs +xFs +sBv +dmb +ikt +cYN +cLo +qal +qal +qal +pCS +qal +ikt +tJz +tJz +iyK +fti +tJz +tJz +tJz +mvf +mvf +mvf +tJz +eOW +fyJ +bda +otG +bda +bda +uXI +bda +wER +eOW +raB +bda +gMt +eOW +raB +bda +bda +eOW +raB +bda +ykz +eOW +tJz +mlS +tJz +tJz +mlS +tJz +tJz +chQ +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +gHo +tJz +mlS +mlS +tJz +mlS +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +mlS +wRu +tJz +tJz +mlS +sIG +tJz +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eRG +jtg +lJk +itB +itB +cFJ +fqT +hWD +hWD +iuG +dZw +iuG +hWD +bkG +ukm +meX +wjW +bkG +hWD +meX +wjW +bkG +ycW +meX +hWD +fms +eRG +uAZ +pTW +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(104,1,1) = {" +sLM +sLM +sLM +sLM +tJz +tJz +mvf +mvf +mvf +mvf +tJz +tJz +mlS +avt +tJz +gKF +bxe +bqK +qeu +hUn +ikt +cqW +lxo +lxo +xFs +lxo +lxo +lxo +jWd +qal +qal +qal +ikt +jWd +ikt +jWd +ikt +tJz +tJz +wjI +gHo +tJz +tJz +tJz +mvf +kHk +mvf +tJz +eOW +jyZ +bda +ykz +bda +wBj +bda +bda +qms +eOW +oYe +ulL +sXm +eOW +oYe +ulL +sXm +eOW +oYe +bda +sXm +eOW +tJz +fti +tJz +tPk +tJz +tJz +mlS +tJz +tJz +tJz +tJz +mlS +chQ +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +mlS +tJz +mlS +tJz +mlS +mlS +mlS +tJz +tJz +tJz +tJz +chQ +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eRG +oOM +lJk +itB +itB +cFJ +fqT +hWD +hWD +iuG +dZw +iuG +hWD +tfi +tfi +tfi +daq +tfi +hWD +tfi +tfi +tfi +daq +tfi +hWD +fms +eRG +uAZ +pTW +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(105,1,1) = {" +sLM +sLM +sLM +sLM +sLM +tJz +tJz +mvf +mvf +mvf +mvf +tJz +mlS +mlS +tJz +gKF +cAh +fPg +kUd +vuz +ikt +sUo +sUo +sUo +bZl +sUo +sUo +sUo +ikt +ltN +dBo +dBo +ikt +mIc +ikt +vEn +ikt +tJz +tJz +dMb +tJz +tJz +tJz +tJz +mvf +mvf +mvf +tJz +eOW +jyZ +ykz +drF +knO +loL +hsa +pLm +ngT +eOW +sEy +qnl +rze +eOW +rze +iXk +rze +eOW +rze +xkJ +tbJ +eOW +tJz +tJz +chQ +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +mlS +tJz +mlS +mlS +tJz +tJz +tJz +mlS +mlS +tJz +tJz +tJz +sIG +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eRG +sKd +lJk +itB +itB +ycW +dKw +eGe +xeY +nDq +eRG +iuG +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +hWD +pCJ +snC +cNN +cNN +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(106,1,1) = {" +sLM +sLM +sLM +sLM +sLM +sLM +tJz +chQ +mvf +mvf +mvf +mvf +tJz +tJz +chQ +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +ikt +tJz +tJz +tJz +tJz +tJz +tJz +chQ +mvf +mvf +mvf +chQ +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +eOW +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +sLM +mlS +tJz +tJz +tJz +tJz +tJz +gHo +tJz +tJz +mlS +tJz +tJz +tJz +mlS +tJz +chQ +tJz +tJz +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eRG +lZs +itB +wId +cof +snC +snC +uUb +uUb +snC +snC +tcR +tMg +lLq +lLq +lMl +lMl +lMl +lMl +lMl +lMl +hWD +hWD +lMl +lMl +mpu +eRG +uAZ +pTW +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(107,1,1) = {" +sLM +sLM +sLM +sLM +sLM +sLM +sLM +tJz +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +mvf +tJz +tJz +tJz +tJz +chQ +tJz +tJz +tJz +tJz +tJz +tJz +chQ +tJz +tJz +tJz +mlS +tJz +chQ +tJz +tJz +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +tJz +tJz +tJz +mlS +tJz +tJz +mlS +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +snC +uHI +wmh +jss +urs +snC +hbm +xeY +eGe +lKj +snC +snC +snC +vBp +vBp +snC +snC +snC +snC +lJO +eRG +jgz +jgz +eRG +ycW +snC +snC +uAZ +pTW +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(108,1,1) = {" +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +tJz +tJz +mvf +mvf +mvf +mvf +mvf +mvf +mvf +kHk +mvf +mvf +mvf +mvf +kHk +mvf +mvf +mvf +mvf +kHk +mvf +mvf +mvf +mvf +kHk +mvf +mvf +mvf +mvf +kHk +mvf +mvf +mvf +mvf +kHk +mvf +mvf +mvf +mvf +tJz +tJz +tJz +fti +tJz +tJz +mlS +tJz +mlS +tJz +woq +mlS +mlS +gHo +tJz +mlS +mlS +mlS +mlS +woq +chQ +mlS +tJz +tJz +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +snC +snC +eRG +snC +snC +snC +aQU +iuG +ufd +fms +snC +mND +aER +lLq +lLq +fSO +ivH +oCU +snC +tcQ +hGl +pgS +pgS +qIX +dsw +khr +snC +cNN +cNN +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(109,1,1) = {" +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +tJz +mlS +chQ +tJz +tJz +tJz +tJz +tJz +chQ +tJz +tJz +mlS +tJz +tJz +mlS +mlS +mlS +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +snC +snC +aQU +iuG +ufd +fms +ycW +nbL +gln +oyM +oyM +oyM +oyM +cqV +qRj +yim +hGl +pgS +pgS +qIX +yim +utc +eRG +uAZ +pTW +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(110,1,1) = {" +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eRG +aQU +iuG +ufd +fms +snC +fbl +cff +ibI +ibI +ibI +ibI +vhV +qRj +yim +hGl +pgS +pgS +qIX +yim +utc +eRG +uAZ +pTW +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(111,1,1) = {" +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +snC +mpu +crx +vcD +ooR +snC +cIa +jwq +eRW +mpu +vSa +jgu +gKr +lJO +caZ +ivP +rmy +tcq +nyC +qTt +cnB +snC +uAZ +pTW +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(112,1,1) = {" +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +snC +eRG +gTe +gTe +eRG +snC +snC +eRG +eRG +eRG +eRG +eRG +snC +snC +snC +snC +eRG +eRG +eRG +eRG +snC +snC +snC +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(113,1,1) = {" +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(114,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(115,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(116,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(117,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(118,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(119,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(120,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(121,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(122,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(123,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +dyD +kXh +kXh +kXh +kXh +mqw +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(124,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(125,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(126,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(127,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(128,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(129,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(130,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(131,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(132,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(133,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(134,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(135,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(136,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(137,1,1) = {" +adJ +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +kXh +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(138,1,1) = {" +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(139,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(140,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(141,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(142,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(143,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(144,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(145,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(146,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(147,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(148,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(149,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(150,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(151,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(152,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(153,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(154,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(155,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +aRU +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(156,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(157,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(158,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(159,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +aSs +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(160,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vVK +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(161,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(162,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(163,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(164,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(165,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(166,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(167,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(168,1,1) = {" +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(169,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(170,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(171,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(172,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(173,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(174,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +hMm +vxy +vxy +vxy +vxy +vxy +vxy +kIS +vxy +vxy +vxy +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(175,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +okp +gIb +fPl +cat +pbw +fSb +fSb +arh +qNp +lzj +vxy +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(176,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +amY +gIb +fPl +xty +arh +arh +arh +arh +arh +arh +kEZ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(177,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +eYN +gIb +fPl +hYP +sOq +aFK +aFK +eHl +qNp +ocT +vxy +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(178,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +scX +vxy +vxy +vxy +vxy +vxy +vxy +vxy +vxy +vxy +vxy +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(179,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(180,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +xbY +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(181,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +wGX +jMU +jMU +jMU +jMU +jMU +jMU +jMU +jMU +jMU +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(182,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +xau +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +bcm +fEW +tAU +eyg +jof +jof +hvm +gqO +kiY +jMU +jMU +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(183,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +fzO +fEW +dJJ +dJJ +dJJ +dJJ +dJJ +dJJ +dJJ +fBu +rfM +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(184,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +axX +fEW +aPD +vPG +vPG +vPG +vPG +dJJ +flJ +jMU +jMU +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(185,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +sXy +jMU +jMU +jMU +jMU +jMU +jMU +xZz +jMU +jMU +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(186,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(187,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(188,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(189,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(190,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(191,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(192,1,1) = {" +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(193,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(194,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(195,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(196,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(197,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(198,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(199,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(200,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(201,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(202,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(203,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(204,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(205,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(206,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(207,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(208,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(209,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(210,1,1) = {" +adJ +fjg +fjg +bpc +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(211,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(212,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(213,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(214,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(215,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +eqO +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +rpv +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(216,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +pOA +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(217,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +hVs +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(218,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(219,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(220,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(221,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(222,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(223,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +vpo +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(224,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +tWI +adJ +adJ +adJ +eNi +eNi +dqH +dqH +dqH +dqH +eNi +eNi +adJ +adJ +adJ +tWI +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tWI +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(225,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +tWI +adJ +eNi +dqH +eNi +eNi +tbe +gnt +lFy +ffE +eNi +eNi +dqH +eNi +adJ +tWI +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tWI +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(226,1,1) = {" +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +tWI +adJ +dqH +xyP +xyP +eYi +fuv +lLh +rvX +fuv +eYi +xyP +xyP +dqH +adJ +tWI +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tWI +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(227,1,1) = {" +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +qvn +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +tWI +adJ +dqH +dwj +nSl +eNi +xiD +klj +bjD +gDq +eNi +nSl +dwj +dqH +adJ +tWI +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tWI +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(228,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +xLF +xLF +xLF +xLF +xLF +xLF +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +qvn +qvn +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +tWI +eNi +eNi +eNi +eNi +eNi +jnv +eNi +eNi +qLd +eNi +eNi +eNi +eNi +eNi +tWI +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tWI +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(229,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +eBV +eBV +eBV +eBV +adJ +adJ +adJ +eBV +eBV +eBV +eBV +eBV +adJ +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +qvn +qvn +hnP +hnP +hnP +hnP +qvn +hnP +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +tWI +eNi +lcv +iaF +tJQ +fuv +fuv +wKA +glO +fuv +fuv +eEq +iaF +pMK +eNi +tWI +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tWI +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +"} +(230,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +eBV +ivf +tYb +dwQ +eBV +eBV +adJ +eBV +eBV +aZi +tYb +dwQ +eBV +eBV +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +qvn +qvn +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +xLF +xLF +xLF +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +tWI +eNi +abb +ejt +eNi +tCg +ipZ +fDq +fDq +hsv +dkr +eNi +ejt +inP +eNi +tWI +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tWI +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +oUL +mSA +mSA +oUL +adJ +adJ +adJ +adJ +adJ +adJ +"} +(231,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +uAm +hHg +eRj +hHg +qZm +eBV +adJ +eBV +pcL +hHg +sDG +hHg +qZm +eBV +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +oTA +oTA +gGW +gGW +oTA +oTA +oTA +oTA +oTA +oTA +hnP +hnP +hnP +hnP +xLF +xLF +xLF +adJ +adJ +adJ +adJ +adJ +adJ +tWI +eNi +dqH +lXX +eNi +pyC +oGz +gmg +rvD +xww +wae +eNi +lXX +dqH +eNi +tWI +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tWI +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +oUL +jig +sOd +oUL +adJ +adJ +adJ +adJ +adJ +adJ +"} +(232,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +xYf +qDc +viN +kKO +viN +qDc +iqM +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +tSC +hHg +ovo +hHg +kDN +eBV +adJ +eBV +fvn +hHg +ovo +hHg +bcI +eBV +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +oTA +caA +juJ +juJ +wgG +gGW +sEk +pMU +rak +oTA +hnP +hnP +hnP +hnP +hnP +hnP +xLF +xLF +adJ +adJ +adJ +adJ +adJ +tWI +eNi +ejt +ejt +tJQ +fuv +hAC +pKe +pKe +ujQ +fuv +eEq +ejt +ejt +eNi +tWI +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tWI +adJ +adJ +adJ +adJ +adJ +adJ +oUL +ejb +oUL +lAx +jig +oUL +adJ +adJ +adJ +adJ +adJ +adJ +"} +(233,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +xYf +viN +kKO +viN +spP +orn +orn +orn +orn +orn +orn +orn +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +dhE +hHg +mlX +hHg +hGW +eBV +adJ +eBV +nWw +hHg +uil +hHg +hGW +eBV +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +qvn +qvn +hnP +gGW +qXy +uIE +juJ +juJ +gGW +ouy +aKO +sEk +oTA +hnP +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +dqH +rlq +ejt +eNi +lGW +bqN +fuv +fuv +bqN +tse +eNi +ejt +rlq +dqH +tWI +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tWI +adJ +adJ +adJ +adJ +adJ +adJ +oUL +mNR +mNR +mNR +mNR +oUL +adJ +adJ +adJ +adJ +adJ +adJ +"} +(234,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +voU +pQE +pQE +orn +orn +orn +orn +orn +orn +iQW +iSp +kJF +rYI +vjW +wxv +dUV +dUV +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +eBV +cIk +bif +cIk +eBV +eBV +adJ +eBV +eBV +cIk +bif +cIk +eBV +eBV +adJ +xLF +hnP +hnP +hnP +hnP +hnP +qvn +hnP +hnP +hnP +hnP +hnP +qvn +qvn +hnP +gGW +giY +xzc +juJ +uIE +gGW +sEk +oJS +vkP +oTA +hnP +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +dqH +jkk +gcN +eNi +eNi +ulb +xyW +xyW +ulb +eNi +eNi +cEr +jkk +dqH +tWI +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tma +tWI +adJ +adJ +adJ +adJ +adJ +adJ +oUL +rdx +mNR +mNR +mNR +oUL +adJ +adJ +adJ +adJ +adJ +adJ +"} +(235,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +svN +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +hdf +dII +orn +bGG +tBr +nHX +xZK +rsA +wHR +wAQ +nUg +mFZ +mFZ +mFZ +jOe +uWD +wxv +stW +dUV +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +eBV +eBV +eBV +eBV +adJ +adJ +adJ +eBV +eBV +eBV +eBV +eBV +adJ +adJ +xLF +hnP +hnP +hnP +hnP +hnP +qvn +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +oTA +ylz +juJ +juJ +arZ +gGW +rak +nlm +sEk +oTA +hnP +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +dqH +ygJ +ejt +eNi +hNI +sgR +wtc +wtc +sgR +hNI +eNi +ejt +ygJ +dqH +tWI +tWI +ciJ +yfk +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +adJ +adJ +adJ +adJ +adJ +adJ +oUL +mNR +mNR +mNR +mNR +oUL +adJ +adJ +adJ +adJ +adJ +adJ +"} +(236,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +orn +orn +orn +orn +orn +lde +oxt +hSm +hSm +hSm +hSm +hSm +hSm +hSm +tBr +pbV +fuU +vNu +wxv +dUV +dUV +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +xLF +hnP +hnP +hnP +hnP +hnP +qvn +hnP +oTA +oTA +oTA +oTA +oTA +oTA +hnP +oTA +aIZ +juJ +juJ +kTs +gGW +xPy +uFa +oJS +oTA +hnP +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +eNi +jwK +ejt +wwn +fuv +rdO +ckR +ckR +oGg +fuv +ylD +ejt +jwK +eNi +pmY +mSP +ciJ +ciJ +bFg +mSP +tWI +tWI +cEO +xEA +pwb +skE +tWI +adJ +adJ +adJ +adJ +adJ +adJ +oUL +oUL +oUL +oUL +oUL +oUL +adJ +adJ +adJ +adJ +adJ +adJ +"} +(237,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +voU +orn +pEY +oKw +kyU +orn +bGG +uVK +uVK +qFS +uVK +uVK +uVK +uVK +uVK +vSv +hEf +orn +orn +spP +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +elh +adJ +xLF +hnP +hnP +hnP +hnP +hnP +qvn +hnP +gGW +aWR +cJw +pQt +rUC +oTA +oTA +oTA +qsK +juJ +juJ +qmm +oTA +oTA +oTA +oTA +oTA +oTA +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +eNi +yiF +mlh +eNi +hVJ +lIT +bux +bux +rTz +dHo +eNi +yiF +mlh +eNi +pmY +vXB +ciJ +ciJ +ciJ +ciJ +ciJ +bGD +aga +aga +aga +rLD +tWI +adJ +adJ +adJ +adJ +adJ +adJ +atu +atu +atu +atu +atu +atu +atu +atu +atu +adJ +adJ +adJ +"} +(238,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +orn +ayH +uVK +uVK +uVK +spP +spP +dMZ +yjM +spP +orn +uVK +uVK +oHm +fLI +hrZ +spP +orn +orn +orn +orn +voU +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +oTA +xcx +mLx +mLx +mLx +pvL +kpL +oTA +edZ +juJ +juJ +giy +oTA +oTA +qNg +ltk +ltk +oTA +oTA +oTA +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +iav +tdR +tdR +eNi +uIB +jvF +fuv +fuv +rND +hWx +eNi +tdR +tdR +iav +pmY +vpX +ciJ +ciJ +ciJ +wpd +mSP +tWI +aga +aga +aga +kSM +tWI +adJ +adJ +adJ +adJ +adJ +adJ +atu +gVr +gVr +jNJ +eHy +czB +czB +gli +atu +atu +atu +atu +"} +(239,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +aMw +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +ozt +vjh +cwg +jqd +mQq +fUW +orn +aaA +uVK +orn +orn +orn +uVK +pmM +spP +orn +spP +rBb +irK +orK +spP +orn +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +oTA +pJU +mLx +mLx +mLx +kqP +eBq +oTA +oTA +gXA +juJ +juJ +biu +aph +aph +aph +aph +aph +aph +oTA +oTA +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +adJ +fOS +wdF +iav +eNi +eNi +yhp +iiz +eNi +eNi +iav +fOS +wdF +adJ +pmY +gbe +ciJ +ciJ +ciJ +ciJ +ciJ +bGD +aga +aga +aga +rLD +tWI +adJ +adJ +adJ +adJ +adJ +adJ +hsh +dso +dso +dso +gcE +gcE +gcE +gcE +tgx +kWD +kWD +atu +"} +(240,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +ozt +tXx +uhH +aCE +lcm +hUz +yjV +uVK +uVK +aiJ +kBX +qxe +uVK +ezC +urd +qAw +awj +kIB +aKx +gVF +puM +oyE +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +eBV +eBV +eBV +eBV +adJ +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +gGW +leW +mLx +mLx +mLx +mLx +siT +oTA +oTA +lSO +juJ +juJ +biu +jsp +cFS +pai +wxt +luW +aph +ltk +oTA +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +adJ +adJ +adJ +adJ +adJ +tWI +nbM +nbM +tWI +adJ +adJ +adJ +adJ +adJ +pmY +mSP +ciJ +ciJ +tyz +fCa +fCa +tWI +cEO +xEA +eQb +skE +tWI +adJ +adJ +adJ +adJ +adJ +adJ +hsh +pfP +dso +rtF +rST +gcE +gcE +gcE +pcj +kWD +kWD +atu +"} +(241,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +ozt +oyR +pBC +qfk +vOd +vFm +yjV +uVK +uVK +aiJ +kBX +xeH +uVK +ezC +urd +pJy +nkK +cct +dYY +axn +pwz +cLj +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +eBV +tkD +tYb +dwQ +eBV +eBV +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +oTA +oTA +oTA +aiZ +oTA +oTA +oTA +oTA +oTA +gqe +juJ +juJ +biu +jsp +leH +kPo +eTP +luW +aph +ltk +oTA +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +tWI +tWI +tWI +tWI +tWI +tWI +ciJ +ciJ +tWI +pmY +pmY +pmY +pmY +pmY +tWI +tWI +ciJ +ciJ +uGR +tYC +tYC +tWI +tWI +tWI +tWI +tWI +tWI +adJ +adJ +adJ +adJ +adJ +adJ +hsh +dWA +dso +jaD +rST +gcE +gcE +gcE +pcj +kWD +kWD +atu +"} +(242,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +ozt +tuH +fWz +ikR +oMj +bYl +orn +vMP +uVK +orn +orn +orn +uVK +fYL +spP +jWg +spP +mZG +uXa +hRt +spP +orn +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +ahN +hHg +pYa +hHg +qZm +eBV +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +oTA +rbA +mXv +fWC +tXw +cHw +oTA +unm +stQ +qsi +juJ +juJ +biu +jsp +ygr +rCd +mGK +luW +aph +ltk +oTA +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +gPD +aga +abF +tWI +mSP +wYb +ciJ +ciJ +tWI +lSz +inT +inT +inT +mSP +tWI +wpd +ciJ +ciJ +uGR +lRr +xcA +tWI +gyx +gyx +gyx +gyx +tWI +adJ +adJ +adJ +adJ +adJ +adJ +hsh +dWA +dso +evc +rST +gcE +gcE +gcE +tgx +kWD +kWD +atu +"} +(243,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +orn +hFw +uVK +uVK +uVK +spP +spP +dMZ +dMZ +orn +orn +uVK +uVK +oxt +dbh +fwQ +spP +orn +orn +orn +orn +voU +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +pAW +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +cZM +hHg +ovo +hHg +bcI +eBV +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +oTA +gSz +vOJ +fWC +kiC +fWC +kOi +juJ +juJ +juJ +juJ +juJ +biu +jsp +rae +txR +wtd +luW +aph +ltk +oTA +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +skE +aga +aga +bGD +ciJ +ciJ +ciJ +ciJ +upr +ciJ +ciJ +ciJ +ciJ +ciJ +upr +ciJ +ciJ +ciJ +uGR +tYC +tyz +tWI +tWI +tWI +tWI +tWI +tWI +adJ +adJ +adJ +adJ +adJ +adJ +atu +vTX +dso +qbf +rST +gcE +gcE +hCK +atu +atu +atu +atu +"} +(244,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +voU +orn +rwU +fPV +gaJ +orn +bGG +uVK +uVK +lgu +uVK +uVK +uVK +uVK +uVK +vSv +mVr +orn +orn +spP +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +gVj +hHg +dSM +hHg +hGW +eBV +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +qvn +oTA +gTg +fWC +fWC +fWC +fWC +kOi +juJ +juJ +juJ +juJ +lmc +biu +aph +aph +aph +aph +aph +aph +oTA +oTA +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +tMH +nFp +eQb +tWI +ggQ +ciJ +ciJ +ciJ +ciJ +ciJ +ciJ +ciJ +ciJ +ciJ +ciJ +ciJ +ciJ +ciJ +tyz +obm +tyz +tWI +cEO +xEA +pwb +skE +tWI +adJ +adJ +adJ +adJ +adJ +adJ +atu +cLO +lvb +aYC +rST +gcE +fBM +tNi +atu +adJ +adJ +adJ +"} +(245,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +cBN +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +orn +orn +orn +orn +orn +lde +oHm +wzD +wzD +wzD +wzD +wzD +wzD +wzD +unF +lcm +ifH +vjW +wxv +dUV +dUV +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +eBV +cIk +bif +cIk +eBV +eBV +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +qvn +qvn +qvn +oTA +elf +aRa +fWC +fWC +gfg +oTA +oTA +gGW +gGW +gGW +oTA +oTA +oTA +ltk +jNk +ltk +oTA +oTA +oTA +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +tWI +tWI +tWI +tWI +vik +ciJ +ciJ +hwc +yiU +aga +gze +gze +gze +aga +jKa +utQ +ciJ +ciJ +ciJ +ciJ +ciJ +bGD +aga +aga +aga +rLD +tWI +adJ +adJ +adJ +adJ +adJ +adJ +atu +kin +gcE +gcE +gcE +gcE +gcE +aaW +atu +adJ +adJ +adJ +"} +(246,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +wum +dII +orn +bGG +unF +dKq +dKq +djr +nfG +eaG +rgQ +lcm +lcm +lcm +xjv +uWD +wxv +stW +dUV +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +eBV +eBV +eBV +eBV +adJ +adJ +lap +lap +lap +lap +lap +lap +lap +rXL +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +oTA +oTA +oTA +gGW +oTA +oTA +oTA +hnP +qvn +qvn +qvn +qvn +hnP +oTA +oTA +oTA +oTA +oTA +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +vPR +nIM +vPR +tWI +ggQ +ciJ +ciJ +cZQ +kOF +aga +xsO +hyh +bRL +aga +hwc +lHU +ciJ +ciJ +ciJ +wpd +mSP +tWI +aga +aga +aga +kSM +tWI +adJ +adJ +adJ +adJ +adJ +adJ +atu +hYE +gcE +gcE +gcE +gcE +gcE +hCK +atu +adJ +adJ +adJ +"} +(247,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +voU +svw +svw +orn +orn +orn +orn +orn +orn +iwe +xaZ +uFW +gka +vNu +wxv +dUV +dUV +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +qvn +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +dgI +dgI +dgI +qUK +ciJ +ciJ +ciJ +hwc +bMk +aga +xlk +thD +oGq +aga +cZQ +gJB +ciJ +ciJ +ciJ +ciJ +ciJ +bGD +aga +aga +aga +rLD +tWI +adJ +adJ +adJ +adJ +adJ +adJ +atu +jXU +gcE +gcE +gcE +gcE +fBM +tNi +atu +adJ +adJ +adJ +"} +(248,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +bgJ +viN +udu +viN +spP +orn +orn +orn +orn +orn +orn +orn +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +eBV +eBV +eBV +eBV +adJ +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +qvn +qvn +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +oTI +jww +oTI +tWI +mSP +htr +mSP +jKa +kiQ +aga +oQC +oQC +oQC +aga +hwc +cXw +ciJ +ciJ +fba +mSP +tWI +tWI +cEO +xEA +eQb +skE +tWI +adJ +adJ +adJ +adJ +adJ +adJ +atu +sRI +pBG +gcE +gcE +gcE +gcE +tDX +atu +adJ +adJ +adJ +"} +(249,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +bgJ +ndh +viN +udu +viN +ndh +uWc +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +eBV +hlS +tYb +dwQ +eBV +eBV +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +qvn +qvn +qvn +hnP +hnP +hnP +olA +qvn +qvn +hnP +hnP +hnP +hnP +hnP +qvn +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +pmY +pmY +pmY +pmY +pmY +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +eIy +adJ +adJ +adJ +adJ +adJ +adJ +atu +hBd +hBd +hBd +hBd +twj +dua +lQk +atu +adJ +adJ +adJ +"} +(250,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +vXu +hHg +tZc +hHg +qZm +eBV +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +qvn +hnP +hnP +hnP +hnP +hnP +hnP +qvn +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +atu +kQr +hBd +hBd +hBd +hBd +fVW +jMw +atu +adJ +adJ +adJ +"} +(251,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +qcR +hHg +ovo +hHg +bcI +eBV +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +xLF +xLF +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +atu +hBd +hBd +cIB +hBd +hBd +fVW +jMw +atu +adJ +adJ +adJ +"} +(252,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +mcp +hHg +kyp +hHg +hGW +eBV +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +hhK +hBd +tmT +hBd +qAv +hBd +fVW +jMw +atu +adJ +adJ +adJ +"} +(253,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +eBV +cIk +bif +cIk +eBV +eBV +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +xLF +xLF +xLF +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +atu +hBd +hBd +itU +hBd +hBd +bni +jMw +atu +adJ +adJ +adJ +"} +(254,1,1) = {" +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +lgH +adJ +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +fjg +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +eBV +eBV +eBV +eBV +eBV +adJ +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +hnP +xLF +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +atu +yiG +hBd +kQr +hBd +hBd +fVW +rXd +atu +adJ +adJ +adJ +"} +(255,1,1) = {" +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +lap +adJ +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +xLF +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +atu +atu +atu +atu +atu +atu +atu +atu +atu +adJ +adJ +adJ +"} diff --git a/code/__DEFINES/_ss220.dm b/code/__DEFINES/_ss220.dm new file mode 100644 index 000000000000..203e016a313f --- /dev/null +++ b/code/__DEFINES/_ss220.dm @@ -0,0 +1 @@ +#define MODPACK_CHAT_BADGES diff --git a/code/__DEFINES/clothing_defines.dm b/code/__DEFINES/clothing_defines.dm index 6a4f12e4764a..7b1be1150a55 100644 --- a/code/__DEFINES/clothing_defines.dm +++ b/code/__DEFINES/clothing_defines.dm @@ -9,31 +9,32 @@ #define HIDEEYES 4 //APPLIES ONLY TO HELMETS/MASKS!! (eyes means glasses) #define HIDEFACE 8 //APPLIES ONLY TO HELMETS/MASKS!! Dictates whether we appear as unknown. -// slots -#define slot_back 1 -#define slot_wear_mask 2 -#define slot_handcuffed 3 -#define slot_l_hand 4 -#define slot_r_hand 5 -#define slot_belt 6 -#define slot_wear_id 7 -#define slot_l_ear 8 -#define slot_glasses 9 -#define slot_gloves 10 -#define slot_head 11 -#define slot_shoes 12 -#define slot_wear_suit 13 -#define slot_w_uniform 14 -#define slot_l_store 15 -#define slot_r_store 16 -#define slot_s_store 17 -#define slot_in_backpack 18 -#define slot_legcuffed 19 -#define slot_r_ear 20 -#define slot_wear_pda 21 -#define slot_tie 22 -#define slot_collar 23 -#define slots_amt 23 +// Slot defines for var/list/inv_slots, some of these dont really show up on the HUD, +// but still function like it in other ways. I know thats weird, and I hate it too. +#define SLOT_HUD_BACK 1 +#define SLOT_HUD_WEAR_MASK 2 +#define SLOT_HUD_HANDCUFFED 3 +#define SLOT_HUD_LEFT_HAND 4 // l_hand +#define SLOT_HUD_RIGHT_HAND 5 // r_hand +#define SLOT_HUD_BELT 6 +#define SLOT_HUD_WEAR_ID 7 +#define SLOT_HUD_LEFT_EAR 8 // l_ear +#define SLOT_HUD_GLASSES 9 +#define SLOT_HUD_GLOVES 10 +#define SLOT_HUD_HEAD 11 +#define SLOT_HUD_SHOES 12 +#define SLOT_HUD_OUTER_SUIT 13 // wear_suit +#define SLOT_HUD_JUMPSUIT 14 // w_uniform +#define SLOT_HUD_LEFT_STORE 15 // l_store +#define SLOT_HUD_RIGHT_STORE 16 // r_store +#define SLOT_HUD_SUIT_STORE 17 +#define SLOT_HUD_IN_BACKPACK 18 // this just puts stuff a backpack if you have one +#define SLOT_HUD_LEGCUFFED 19 +#define SLOT_HUD_RIGHT_EAR 20 // r_ear +#define SLOT_HUD_WEAR_PDA 21 +#define SLOT_HUD_TIE 22 +#define SLOT_HUD_COLLAR 23 +#define SLOT_HUD_AMOUNT 23 // accessory slots #define ACCESSORY_SLOT_DECOR 1 diff --git a/code/__DEFINES/departments_defines.dm b/code/__DEFINES/departments_defines.dm index f2a5a7ed9278..698123e51b74 100644 --- a/code/__DEFINES/departments_defines.dm +++ b/code/__DEFINES/departments_defines.dm @@ -5,6 +5,30 @@ #define DEPARTMENT_SUPPLY "Supply" #define DEPARTMENT_SERVICE "Service" #define DEPARTMENT_SECURITY "Security" -#define DEPARTMENT_ASSISTANT "Assistant" -#define DEPARTMENT_SILICON "Silicon" +#define DEPARTMENT_ASSISTANT "Assistant" // Does not have a corresponding bitflag +#define DEPARTMENT_SILICON "Silicon" // Does not have a corresponding bitflag #define DEPARTMENT_COMMAND "Command" + +#define DEP_FLAG_SUPPLY (1<<0) +#define DEP_FLAG_SERVICE (1<<1) +#define DEP_FLAG_COMMAND (1<<2) +#define DEP_FLAG_LEGAL (1<<3) +#define DEP_FLAG_ENGINEERING (1<<4) +#define DEP_FLAG_MEDICAL (1<<5) +#define DEP_FLAG_SCIENCE (1<<6) +#define DEP_FLAG_SECURITY (1<<7) + + +// ---- Unused, but here is an easy way to transfer from the department string, +// to the corresponding bitflag if it has one. + +// GLOBAL_LIST_INIT(department_str_to_flag, list( +// DEPARTMENT_ENGINEERING = DEP_FLAG_ENGINEERING, +// DEPARTMENT_MEDICAL = DEP_FLAG_MEDICAL, +// DEPARTMENT_SCIENCE = DEP_FLAG_SCIENCE, +// DEPARTMENT_SUPPLY = DEP_FLAG_SUPPLY, +// DEPARTMENT_SERVICE = DEP_FLAG_SERVICE, +// DEPARTMENT_SECURITY = DEP_FLAG_SECURITY, +// DEPARTMENT_COMMAND = DEP_FLAG_COMMAND +// ) +// ) diff --git a/code/__DEFINES/flags.dm b/code/__DEFINES/flags.dm index d4972d138026..d78c8d19335b 100644 --- a/code/__DEFINES/flags.dm +++ b/code/__DEFINES/flags.dm @@ -2,7 +2,7 @@ #define NONE 0 //FLAGS BITMASK -#define STOPSPRESSUREDMAGE 1 //This flag is used on the flags variable for SUIT and HEAD items which stop pressure damage. Note that the flag 1 was previous used as ONBACK, so it is possible for some code to use (flags & 1) when checking if something can be put on your back. Replace this code with (inv_flags & SLOT_BACK) if you see it anywhere To successfully stop you taking all pressure damage you must have both a suit and head item with this flag. +#define STOPSPRESSUREDMAGE 1 //This flag is used on the flags variable for SUIT and HEAD items which stop pressure damage. Note that the flag 1 was previous used as ONBACK, so it is possible for some code to use (flags & 1) when checking if something can be put on your back. Replace this code with (inv_flags & SLOT_FLAG_BACK) if you see it anywhere To successfully stop you taking all pressure damage you must have both a suit and head item with this flag. #define NODROP 2 // This flag makes it so that an item literally cannot be removed at all, or at least that's how it should be. Only deleted. #define NOBLUDGEON 4 // when an item has this it produces no "X has been hit by Y with Z" message with the default handler #define AIRTIGHT 8 // mask allows internals @@ -127,14 +127,15 @@ #define SAFE 16 //flags for pass_flags -#define PASSTABLE 1 -#define PASSGLASS 2 -#define PASSGRILLE 4 -#define PASSBLOB 8 -#define PASSMOB 16 -#define LETPASSTHROW 32 -#define PASSFENCE 64 -#define PASSDOOR 128 +#define PASSTABLE (1<<0) +#define PASSGLASS (1<<1) +#define PASSGRILLE (1<<2) +#define PASSBLOB (1<<3) +#define PASSMOB (1<<4) +#define LETPASSTHROW (1<<5) +#define PASSFENCE (1<<6) +#define PASSDOOR (1<<7) +#define PASSGIRDER (1<<8) //turf-only flags #define NOJAUNT 1 @@ -142,21 +143,21 @@ #define NO_RUINS 4 //ITEM INVENTORY SLOT BITMASKS -#define SLOT_OCLOTHING (1<<0) -#define SLOT_ICLOTHING (1<<1) -#define SLOT_GLOVES (1<<2) -#define SLOT_EYES (1<<3) -#define SLOT_EARS (1<<4) -#define SLOT_MASK (1<<5) -#define SLOT_HEAD (1<<6) -#define SLOT_FEET (1<<7) -#define SLOT_ID (1<<8) -#define SLOT_BELT (1<<9) -#define SLOT_BACK (1<<10) -#define SLOT_POCKET (1<<11) //this is to allow items with a w_class of 3 or 4 to fit in pockets. -#define SLOT_TWOEARS (1<<12) -#define SLOT_PDA (1<<13) -#define SLOT_TIE (1<<14) +#define SLOT_FLAG_OCLOTHING (1<<0) +#define SLOT_FLAG_ICLOTHING (1<<1) +#define SLOT_FLAG_GLOVES (1<<2) +#define SLOT_FLAG_EYES (1<<3) +#define SLOT_FLAG_EARS (1<<4) +#define SLOT_FLAG_MASK (1<<5) +#define SLOT_FLAG_HEAD (1<<6) +#define SLOT_FLAG_FEET (1<<7) +#define SLOT_FLAG_ID (1<<8) +#define SLOT_FLAG_BELT (1<<9) +#define SLOT_FLAG_BACK (1<<10) +#define SLOT_FLAG_POCKET (1<<11) //this is to allow items with a w_class of 3 or 4 to fit in pockets. +#define SLOT_FLAG_TWOEARS (1<<12) +#define SLOT_FLAG_PDA (1<<13) +#define SLOT_FLAG_TIE (1<<14) //ORGAN TYPE FLAGS #define AFFECT_ROBOTIC_ORGAN 1 diff --git a/code/__DEFINES/is_helpers.dm b/code/__DEFINES/is_helpers.dm index e4dc775ca944..76c2c01fd13c 100644 --- a/code/__DEFINES/is_helpers.dm +++ b/code/__DEFINES/is_helpers.dm @@ -1,3 +1,6 @@ +// Datums +#define isdatum(thing) (istype(thing, /datum)) + // Atoms #define isatom(A) (isloc(A)) diff --git a/code/__DEFINES/language_defines.dm b/code/__DEFINES/language_defines.dm index a7614b1c366d..2134628966db 100644 --- a/code/__DEFINES/language_defines.dm +++ b/code/__DEFINES/language_defines.dm @@ -17,6 +17,7 @@ #define NO_TALK_MSG 128 // Do not show the "\The [speaker] talks into \the [radio]" message #define NO_STUTTER 256 // No stuttering, slurring, or other speech problems #define NOBABEL 512 // Not granted by book of babel. Typically antag languages. +#define NOLIBRARIAN 1024 // Flag for banning the Librarian from certain languages. (actual 1984) //Auto-accent level defines. #define AUTOHISS_OFF 0 diff --git a/code/__DEFINES/misc_defines.dm b/code/__DEFINES/misc_defines.dm index 544e499beea4..f53c43c49cd9 100644 --- a/code/__DEFINES/misc_defines.dm +++ b/code/__DEFINES/misc_defines.dm @@ -336,7 +336,7 @@ #define TRANSIT_TUBE_CLOSED 3 // Maximum donation level -#define DONATOR_LEVEL_MAX 4 +#define DONATOR_LEVEL_MAX 5 // SS220 EDIT // The cooldown on OOC messages such as OOC, LOOC, praying and adminhelps #define OOC_COOLDOWN 5 @@ -375,7 +375,7 @@ #define INVESTIGATE_BOMB "bombs" // The SQL version required by this version of the code -#define SQL_VERSION 51 +#define SQL_VERSION 522205 // SS220 EDIT // Vending machine stuff #define CAT_NORMAL 1 @@ -558,3 +558,20 @@ #define RQ_NONEW_MESSAGES 0 // RQ_NONEWMESSAGES = no new message #define RQ_NORMALPRIORITY 1 // RQ_NORMALPRIORITY = normal priority #define RQ_HIGHPRIORITY 2 // RQ_HIGHPRIORITY = high priority + +/** + * Reading books can help with brain damage! + * These are seperate times so that a user gains more benefits by reading more books, + * but also cant infinitely switch between 1000 books. + */ +/// The amount of time needed to pass to let a single book be read again for brain benefits +#define BRAIN_DAMAGE_BOOK_TIME 45 SECONDS +/// The amount of time a mob needs to wait between any book reading +#define BRAIN_DAMAGE_MOB_TIME 10 SECONDS + +/// Takes a datum as input, returns its ref string, or a cached version of it +/// This allows us to cache \ref creation, which ensures it'll only ever happen once per datum, saving string tree time +/// It is slightly less optimal then a []'d datum, but the cost is massively outweighed by the potential savings +/// It will only work for datums mind, for datum reasons +/// : because of the embedded typecheck +#define text_ref(datum) (isdatum(datum) ? (datum:cached_ref ||= "\ref[datum]") : ("\ref[datum]")) diff --git a/code/__DEFINES/mob_defines.dm b/code/__DEFINES/mob_defines.dm index bc34c47d7991..c9f02b2e4493 100644 --- a/code/__DEFINES/mob_defines.dm +++ b/code/__DEFINES/mob_defines.dm @@ -62,11 +62,6 @@ #define PULSE_THREADY 5 //occurs during hypovolemic shock //feel free to add shit to lists below - -//proc/get_pulse methods -#define GETPULSE_HAND 0 //less accurate (hand) -#define GETPULSE_TOOL 1 //more accurate (med scanner, sleeper, etc) - //Reagent Metabolization flags, defines the type of reagents that affect this mob #define PROCESS_ORG 1 //Only processes reagents with "ORGANIC" or "ORGANIC | SYNTHETIC" #define PROCESS_SYN 2 //Only processes reagents with "SYNTHETIC" or "ORGANIC | SYNTHETIC" diff --git a/code/__DEFINES/preferences_defines.dm b/code/__DEFINES/preferences_defines.dm index 6c3c55a6ef12..bc4b30df2749 100644 --- a/code/__DEFINES/preferences_defines.dm +++ b/code/__DEFINES/preferences_defines.dm @@ -62,8 +62,9 @@ #define PREFTOGGLE_2_MC_TABS (1<<15) // 32768 #define PREFTOGGLE_2_DANCE_DISCO (1<<16) // 65536 #define PREFTOGGLE_2_MOD_ACTIVATION_METHOD (1<<17) // 131072 +#define PREFTOGGLE_2_PARALLAX_IN_DARKNESS (1<<18) // 262144 -#define TOGGLES_2_TOTAL 262144 // If you add or remove a preference toggle above, make sure you update this define with the total value of the toggles combined. +#define TOGGLES_2_TOTAL 524287 // If you add or remove a preference toggle above, make sure you update this define with the total value of the toggles combined. #define TOGGLES_2_DEFAULT (PREFTOGGLE_2_FANCYUI|PREFTOGGLE_2_ITEMATTACK|PREFTOGGLE_2_WINDOWFLASHING|PREFTOGGLE_2_RUNECHAT|PREFTOGGLE_2_DEATHMESSAGE|PREFTOGGLE_2_EMOTE_BUBBLE|PREFTOGGLE_2_SEE_ITEM_OUTLINES|PREFTOGGLE_2_THOUGHT_BUBBLE|PREFTOGGLE_2_DANCE_DISCO|PREFTOGGLE_2_MOD_ACTIVATION_METHOD) diff --git a/code/__DEFINES/qdel_defines.dm b/code/__DEFINES/qdel_defines.dm index a5316c463da6..149e4880b2c3 100644 --- a/code/__DEFINES/qdel_defines.dm +++ b/code/__DEFINES/qdel_defines.dm @@ -11,11 +11,25 @@ #define QDEL_HINT_IFFAIL_FINDREFERENCE 6 //Above but only if gc fails. //defines for the gc_destroyed var -#define GC_QUEUE_CHECK 1 -#define GC_QUEUE_HARDDELETE 2 -#define GC_QUEUE_COUNT 2 //increase this when adding more steps. +// Defines for the ssgarbage queues +#define GC_QUEUE_FILTER 1 //! short queue to filter out quick gc successes so they don't hang around in the main queue for 5 minutes +#define GC_QUEUE_CHECK 2 //! main queue that waits 5 minutes because thats the longest byond can hold a reference to our shit. +#define GC_QUEUE_HARDDELETE 3 //! short queue for things that hard delete instead of going thru the gc subsystem, this is purely so if they *can* softdelete, they will soft delete rather then wasting time with a hard delete. +#define GC_QUEUE_COUNT 3 //! Number of queues, used for allocating the nested lists. Don't forget to increase this if you add a new queue stage -#define GC_QUEUED_FOR_QUEUING -1 + +// Defines for the ssgarbage queue items +#define GC_QUEUE_ITEM_QUEUE_TIME 1 //! Time this item entered the queue +#define GC_QUEUE_ITEM_REF 2 //! Ref to the item +#define GC_QUEUE_ITEM_GCD_DESTROYED 3 //! Item's gc_destroyed var value. Used to detect ref reuse. +#define GC_QUEUE_ITEM_INDEX_COUNT 3 //! Number of item indexes, used for allocating the nested lists. Don't forget to increase this if you add a new queue item index + +// Defines for the time an item has to get its reference cleaned before it fails the queue and moves to the next. +#define GC_FILTER_QUEUE (1 SECONDS) +#define GC_CHECK_QUEUE (5 MINUTES) +#define GC_DEL_QUEUE (10 SECONDS) + +// Defines for the [gc_destroyed][/datum/var/gc_destroyed] var. #define GC_CURRENTLY_BEING_QDELETED -2 #define QDELING(X) (X.gc_destroyed) diff --git a/code/__DEFINES/sound_defines.dm b/code/__DEFINES/sound_defines.dm index 0aa85d3ccd9c..38be95cdd2e0 100644 --- a/code/__DEFINES/sound_defines.dm +++ b/code/__DEFINES/sound_defines.dm @@ -10,13 +10,17 @@ #define CHANNEL_FIREALARM 1016 //fire alarm alarms #define CHANNEL_ASH_STORM 1015 #define CHANNEL_RADIO_NOISE 1014 // radio headset noise +// SS220 ADDITION START +#define CHANNEL_TTS_RADIO 1013 +#define CHANNEL_TTS_LOCAL 1012 +// SS220 ADDITION END #define USER_VOLUME(M, C) M?.client?.prefs.get_channel_volume(C) //THIS SHOULD ALWAYS BE THE LOWEST ONE! //KEEP IT UPDATED -#define CHANNEL_HIGHEST_AVAILABLE 1013 +#define CHANNEL_HIGHEST_AVAILABLE 1011 // SS220 EDIT #define MAX_INSTRUMENT_CHANNELS (128 * 6) diff --git a/code/__DEFINES/status_effects.dm b/code/__DEFINES/status_effects.dm index 9bafd69f6033..add6fb00ba91 100644 --- a/code/__DEFINES/status_effects.dm +++ b/code/__DEFINES/status_effects.dm @@ -102,6 +102,8 @@ #define STATUS_EFFECT_CRYO_BEAM /datum/status_effect/cryo_beam //Chills target, freezes reagents in their blood, breaks if sight is lost. +#define STATUS_BOOKWYRM /datum/status_effect/bookwyrm + //#define STATUS_EFFECT_NECROPOLIS_CURSE /datum/status_effect/necropolis_curse //#define CURSE_BLINDING 1 //makes the edges of the target's screen obscured //#define CURSE_SPAWNING 2 //spawns creatures that attack the target only diff --git a/code/__HELPERS/name_helpers.dm b/code/__HELPERS/name_helpers.dm index 2df7ee93c128..75ee54731240 100644 --- a/code/__HELPERS/name_helpers.dm +++ b/code/__HELPERS/name_helpers.dm @@ -133,10 +133,10 @@ GLOBAL_VAR(syndicate_code_response) //Code response for traitors. ) var/safety[] = list(1,2,3)//Tells the proc which options to remove later on. - var/nouns[] = list("love","hate","anger","peace","pride","sympathy","bravery","loyalty","honesty","integrity","compassion","charity","success","courage","deceit","skill","beauty","brilliance","pain","misery","beliefs","dreams","justice","truth","faith","liberty","knowledge","thought","information","culture","trust","dedication","progress","education","hospitality","leisure","trouble","friendships", "relaxation") - var/drinks[] = list("vodka and tonic","gin fizz","bahama mama","manhattan","black Russian","whiskey soda","long island tea","margarita","Irish coffee"," manly dwarf","Irish cream","doctor's delight","Beepksy Smash","tequila sunrise","brave bull","gargle blaster","bloody mary","whiskey cola","white Russian","vodka martini","martini","Cuba libre","kahlua","vodka","wine","moonshine") - var/locations[] = length(SSmapping.teleportlocs) ? SSmapping.teleportlocs : drinks//if null, defaults to drinks instead. - + // var/nouns[] = list("love","hate","anger","peace","pride","sympathy","bravery","loyalty","honesty","integrity","compassion","charity","success","courage","deceit","skill","beauty","brilliance","pain","misery","beliefs","dreams","justice","truth","faith","liberty","knowledge","thought","information","culture","trust","dedication","progress","education","hospitality","leisure","trouble","friendships", "relaxation") + // var/drinks[] = list("vodka and tonic","gin fizz","bahama mama","manhattan","black Russian","whiskey soda","long island tea","margarita","Irish coffee"," manly dwarf","Irish cream","doctor's delight","Beepksy Smash","tequila sunrise","brave bull","gargle blaster","bloody mary","whiskey cola","white Russian","vodka martini","martini","Cuba libre","kahlua","vodka","wine","moonshine") + // var/locations[] = length(SSmapping.teleportlocs) ? SSmapping.teleportlocs : drinks//if null, defaults to drinks instead. + // SS220 DELETE var/names[] = list() for(var/datum/data/record/t in GLOB.data_core.general)//Picks from crew manifest. names += t.fields["name"] @@ -157,19 +157,19 @@ GLOBAL_VAR(syndicate_code_response) //Code response for traitors. if(names.len) code_phrase += pick(names) if(2) - code_phrase += pick(GLOB.joblist)//Returns a job. + code_phrase += pick(GLOB.jobs)//Returns a job. // SS220 EDIT - ORIGINAL: (GLOB.joblist) safety -= 1 if(2) switch(rand(1,2))//Places or things. if(1) - code_phrase += pick(drinks) + code_phrase += pick(GLOB.cocktails) // SS220 EDIT - ORIGINAL: (drinks) if(2) - code_phrase += pick(locations) + code_phrase += pick(GLOB.locations) // SS220 EDIT - ORIGINAL: (locations) safety -= 2 if(3) switch(rand(1,3))//Nouns, adjectives, verbs. Can be selected more than once. if(1) - code_phrase += pick(nouns) + code_phrase += pick(GLOB.nouns) // SS220 EDIT - ORIGINAL: (nouns) if(2) code_phrase += pick(GLOB.adjectives) if(3) diff --git a/code/__HELPERS/text.dm b/code/__HELPERS/text.dm index 1405baa53ef7..da6966e9e998 100644 --- a/code/__HELPERS/text.dm +++ b/code/__HELPERS/text.dm @@ -69,10 +69,10 @@ //Returns null if there is any bad text in the string /proc/reject_bad_text(text, max_length=512) - if(length(text) > max_length) return //message too long + if(length_char(text) > max_length) return //message too long // SS220 EDIT - ORIGINAL: (length(text) var/non_whitespace = 0 - for(var/i=1, i<=length(text), i++) - switch(text2ascii(text,i)) + for(var/i=1, i<=length_char(text), i++) // ORIGINAL: length(text) + switch(text2ascii_char(text,i)) // ORIGINAL: text2ascii if(62,60,92,47) return //rejects the text if it contains these bad characters: <, >, \ or / if(127 to 255) return //rejects weird letters like � if(0 to 31) return //more weird stuff @@ -105,25 +105,25 @@ /proc/reject_bad_name(t_in, allow_numbers=0, max_length=MAX_NAME_LEN) // Decode so that names with characters like < are still rejected t_in = html_decode(t_in) - if(!t_in || length(t_in) > max_length) + if(!t_in || length_char(t_in) > max_length) // SS220 EDIT - ORIGINAL: length return //Rejects the input if it is null or if it is longer than the max length allowed var/number_of_alphanumeric = 0 var/last_char_group = 0 var/t_out = "" - for(var/i=1, i<=length(t_in), i++) - var/ascii_char = text2ascii(t_in,i) + for(var/i=1, i<=length_char(t_in), i++) // SS220 EDIT - ORIGINAL: for(var/i=1, i<=length(t_in), i++) + var/ascii_char = text2ascii_char(t_in,i) // ORIGINAL: var/ascii_char = text2ascii(t_in,i) switch(ascii_char) - // A .. Z - if(65 to 90) //Uppercase Letters + // A .. Z, // SS220 ADDITION: А .. Я, Ё | 1040 to 1071, 1025 + if(65 to 90, 1040 to 1071, 1025) //Uppercase Letters t_out += ascii2text(ascii_char) number_of_alphanumeric++ last_char_group = 4 - // a .. z - if(97 to 122) //Lowercase Letters - if(last_char_group<2) t_out += ascii2text(ascii_char-32) //Force uppercase first character + // a .. z, // SS220 ADDITION: а .. я, ё | 1072 to 1103, 1105 + if(97 to 122, 1072 to 1103, 1105) //Lowercase Letters + if(last_char_group<2) t_out += uppertext(ascii2text(ascii_char)) //Force uppercase first character else t_out += ascii2text(ascii_char) number_of_alphanumeric++ last_char_group = 4 @@ -194,21 +194,21 @@ /proc/dd_hasprefix(text, prefix) var/start = 1 var/end = length(prefix) + 1 - return findtext(text, prefix, start, end) + return findtext_char(text, prefix, start, end) // SS220 EDIT - ORIGINAL: findtext //Checks the beginning of a string for a specified sub-string. This proc is case sensitive //Returns the position of the substring or 0 if it was not found /proc/dd_hasprefix_case(text, prefix) var/start = 1 var/end = length(prefix) + 1 - return findtextEx(text, prefix, start, end) + return findtextEx_char(text, prefix, start, end) // SS220 EDIT - ORIGINAL: findtext //Checks the end of a string for a specified substring. //Returns the position of the substring or 0 if it was not found /proc/dd_hassuffix(text, suffix) var/start = length(text) - length(suffix) if(start) - return findtext(text, suffix, start, null) + return findtext_char(text, suffix, start, null) // SS220 EDIT - ORIGINAL: findtext return //Checks the end of a string for a specified substring. This proc is case sensitive @@ -216,7 +216,7 @@ /proc/dd_hassuffix_case(text, suffix) var/start = length(text) - length(suffix) if(start) - return findtextEx(text, suffix, start, null) + return findtextEx_char(text, suffix, start, null)// SS220 EDIT - ORIGINAL: findtext /* * Text modification @@ -224,7 +224,7 @@ // See bygex.dm /proc/replace_characters(t, list/repl_chars) for(var/char in repl_chars) - t = replacetext(t, char, repl_chars[char]) + t = replacetext_char(t, char, repl_chars[char]) // SS220 EDIT - ORIGINAL: replacetext return t //Strips the first char and returns it and the new string as a list @@ -274,7 +274,7 @@ //Returns a string with the first element of the string capitalized. /proc/capitalize(t as text) - return uppertext(copytext(t, 1, 2)) + copytext(t, 2) + return uppertext(copytext_char(t, 1, 2)) + copytext_char(t, 2) // SS220 EDIT - ORIGINAL: copytext //Centers text by adding spaces to either side of the string. /proc/dd_centertext(message, length) @@ -364,7 +364,7 @@ else break if(max_length) - input = copytext(input,1,max_length) + input = copytext_char(input,1,max_length) // SS220 EDIT - ORIGINAL: copytext return sanitize(input, allow_lines ? list("\t" = " ") : list("\n" = " ", "\t" = " ")) /proc/trim_strip_html_properly(input, max_length = MAX_MESSAGE_LEN, allow_lines = 0) @@ -383,7 +383,7 @@ //alternative copytext() for encoded text, doesn't break html entities (" and other) /proc/copytext_preserve_html(text, first, last) - return html_encode(copytext(html_decode(text), first, last)) + return html_encode(copytext_char(html_decode(text), first, last)) // SS220 EDIT - ORIGINAL: copytext //Run sanitize(), but remove <, >, " first to prevent displaying them as > < &34; in some places, after html_encode(). //Best used for sanitize object names, window titles. @@ -768,3 +768,10 @@ if(ofthree == 0) return "[num]" return "[num / (10 ** (ofthree * 3))][GLOB.si_suffixes[round(length(GLOB.si_suffixes) / 2) + ofthree + 1]]" + +/** + * Creates a hyperlink for a specified wiki article. + */ +/proc/wiki_link(article_name, link_text = null) + var/url = "[GLOB.configuration.url.wiki_url]/index.php?title=[article_name]" + return "[link_text ? link_text : url]" diff --git a/code/__HELPERS/trait_helpers.dm b/code/__HELPERS/trait_helpers.dm index 38964b80859a..6170e1aee69e 100644 --- a/code/__HELPERS/trait_helpers.dm +++ b/code/__HELPERS/trait_helpers.dm @@ -286,6 +286,7 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define GLADIATOR "gladiator" #define PULSEDEMON_TRAIT "pulse_demon" + //quirk traits #define TRAIT_ALCOHOL_TOLERANCE "alcohol_tolerance" #define TRAIT_TABLE_LEAP "table_leap" @@ -308,3 +309,10 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_CANNOT_PULL "pullblocked" /// Abstract condition that prevents movement if being pulled and might be resisted against. Handcuffs and straight jackets, basically. #define TRAIT_RESTRAINED "restrained" + +//***** TURF TRAITS *****// +/// Removes slowdown while walking on these tiles. +#define TRAIT_BLUESPACE_SPEED "bluespace_speed_trait" + +// turf trait sources +#define FLOOR_EFFECT_TRAIT "floor_effect_trait" diff --git a/code/__HELPERS/type2type.dm b/code/__HELPERS/type2type.dm index 1de9af1b0100..985217d56b9a 100644 --- a/code/__HELPERS/type2type.dm +++ b/code/__HELPERS/type2type.dm @@ -207,6 +207,16 @@ return 'icons/mob/screen_operative.dmi' if("White") return 'icons/mob/screen_white.dmi' + // SS220 ADDITION START + if("Vaporwave") + return 'modular_ss220/aesthetics/skin/icons/screen_vaporwave.dmi' + if("Detective") + return 'modular_ss220/aesthetics/skin/icons/screen_detective.dmi' + if("Trasen") + return 'modular_ss220/aesthetics/skin/icons/screen_trasenknox.dmi' + if("Clockwork") + return 'modular_ss220/aesthetics/skin/icons/screen_clockwork.dmi' + // SS220 ADDITION END else return 'icons/mob/screen_midnight.dmi' diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index 16b238049a17..7974d886e7a3 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -2054,33 +2054,39 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new) return "Ash Storms" if(CHANNEL_RADIO_NOISE) return "Radio Noise" + // SS220 ADDITON START + if(CHANNEL_TTS_LOCAL) + return "TTS Local" + if(CHANNEL_TTS_RADIO) + return "TTS Radio" + // SS220 ADDITION END /proc/slot_bitfield_to_slot(input_slot_flags) // Kill off this garbage ASAP; slot flags and clothing flags should be IDENTICAL. GOSH DARN IT. Doesn't work with ears or pockets, either. switch(input_slot_flags) - if(SLOT_OCLOTHING) - return slot_wear_suit - if(SLOT_ICLOTHING) - return slot_w_uniform - if(SLOT_GLOVES) - return slot_gloves - if(SLOT_EYES) - return slot_glasses - if(SLOT_MASK) - return slot_wear_mask - if(SLOT_HEAD) - return slot_head - if(SLOT_FEET) - return slot_shoes - if(SLOT_ID) - return slot_wear_id - if(SLOT_BELT) - return slot_belt - if(SLOT_BACK) - return slot_back - if(SLOT_PDA) - return slot_wear_pda - if(SLOT_TIE) - return slot_tie + if(SLOT_FLAG_OCLOTHING) + return SLOT_HUD_OUTER_SUIT + if(SLOT_FLAG_ICLOTHING) + return SLOT_HUD_JUMPSUIT + if(SLOT_FLAG_GLOVES) + return SLOT_HUD_GLOVES + if(SLOT_FLAG_EYES) + return SLOT_HUD_GLASSES + if(SLOT_FLAG_MASK) + return SLOT_HUD_WEAR_MASK + if(SLOT_FLAG_HEAD) + return SLOT_HUD_HEAD + if(SLOT_FLAG_FEET) + return SLOT_HUD_SHOES + if(SLOT_FLAG_ID) + return SLOT_HUD_WEAR_ID + if(SLOT_FLAG_BELT) + return SLOT_HUD_BELT + if(SLOT_FLAG_BACK) + return SLOT_HUD_BACK + if(SLOT_FLAG_PDA) + return SLOT_HUD_WEAR_PDA + if(SLOT_FLAG_TIE) + return SLOT_HUD_TIE /** diff --git a/code/_globalvars/lists/names.dm b/code/_globalvars/lists/names.dm index 01f0e5b34ffe..6888cf87717a 100644 --- a/code/_globalvars/lists/names.dm +++ b/code/_globalvars/lists/names.dm @@ -28,3 +28,8 @@ GLOBAL_LIST_INIT(dream_strings, file2list("config/names/dreams.txt")) GLOBAL_LIST_INIT(nightmare_strings, file2list("config/names/nightmares.txt")) //loaded on startup because of " //would include in rsc if ' was used + +// SS220 ADDITION - CYRILLIC SUPPORT +GLOBAL_LIST_INIT(cocktails, file2list("config/names/cocktails.txt")) +GLOBAL_LIST_INIT(jobs, file2list("config/names/jobs.txt")) +GLOBAL_LIST_INIT(locations, file2list("config/names/locations.txt")) diff --git a/code/_globalvars/traits.dm b/code/_globalvars/traits.dm index f8a374e8abd2..d2a6ed085c80 100644 --- a/code/_globalvars/traits.dm +++ b/code/_globalvars/traits.dm @@ -93,6 +93,9 @@ GLOBAL_LIST_INIT(traits_by_type, list( "TRAIT_FORCES_OPEN_DOORS" = TRAIT_FORCES_OPEN_DOORS_ITEM, "TRAIT_OBSCURED_WIRES" = TRAIT_OBSCURED_WIRES, "TRAIT_XENO_INTERACTABLE" = TRAIT_XENO_INTERACTABLE + ), + /turf = list( + "bluespace_speed_trait" = TRAIT_BLUESPACE_SPEED ) )) diff --git a/code/_onclick/ai_onclick.dm b/code/_onclick/ai_onclick.dm index 4df67e2d2cd2..c8b598ab91b2 100644 --- a/code/_onclick/ai_onclick.dm +++ b/code/_onclick/ai_onclick.dm @@ -177,6 +177,12 @@ // APC /obj/machinery/power/apc/AICtrlClick(mob/living/user) // turns off/on APCs. + if(stat & BROKEN) + return + + if(aidisabled) + to_chat(user, "Unable to interface: Connection refused.") + return toggle_breaker(user) diff --git a/code/_onclick/hud/action_button.dm b/code/_onclick/hud/action_button.dm index 04eb51b6a9ab..fa915e6e58fb 100644 --- a/code/_onclick/hud/action_button.dm +++ b/code/_onclick/hud/action_button.dm @@ -53,6 +53,9 @@ linked_action.Trigger(left_click = FALSE) return TRUE linked_action.Trigger(TRUE) + transform = transform.Scale(0.8, 0.8) + alpha = 200 + animate(src, transform = matrix(), time = 0.4 SECONDS, alpha = 255) return TRUE /obj/screen/movable/action_button/AltClick(mob/user) @@ -74,9 +77,7 @@ return ..() /obj/screen/movable/action_button/hide_toggle/Click(location,control,params) - . = ..() - if(!.) - usr.hud_used.action_buttons_hidden = !usr.hud_used.action_buttons_hidden + usr.hud_used.action_buttons_hidden = !usr.hud_used.action_buttons_hidden hidden = usr.hud_used.action_buttons_hidden if(hidden) diff --git a/code/_onclick/hud/alien_hud.dm b/code/_onclick/hud/alien_hud.dm index c9b0f7fdc4e8..1dd86fe5ce5a 100644 --- a/code/_onclick/hud/alien_hud.dm +++ b/code/_onclick/hud/alien_hud.dm @@ -65,7 +65,7 @@ inv_box.icon = 'icons/mob/screen_alien.dmi' inv_box.icon_state = "hand_r" inv_box.screen_loc = ui_rhand - inv_box.slot_id = slot_r_hand + inv_box.slot_id = SLOT_HUD_RIGHT_HAND static_inventory += inv_box inv_box = new /obj/screen/inventory/hand() @@ -73,7 +73,7 @@ inv_box.icon = 'icons/mob/screen_alien.dmi' inv_box.icon_state = "hand_l" inv_box.screen_loc = ui_lhand - inv_box.slot_id = slot_l_hand + inv_box.slot_id = SLOT_HUD_LEFT_HAND static_inventory += inv_box using = new /obj/screen/swap_hand() diff --git a/code/_onclick/hud/hud_datum.dm b/code/_onclick/hud/hud_datum.dm index 9abe854bea18..79d799fa9a12 100644 --- a/code/_onclick/hud/hud_datum.dm +++ b/code/_onclick/hud/hud_datum.dm @@ -32,7 +32,7 @@ var/list/toggleable_inventory = list() //the screen objects which can be hidden var/list/hotkeybuttons = list() //the buttons that can be used via hotkeys var/list/infodisplay = list() //the screen objects that display mob info (health, alien plasma, etc...) - var/list/inv_slots[slots_amt] // /obj/screen/inventory objects, ordered by their slot ID. + var/list/inv_slots[SLOT_HUD_AMOUNT] // /obj/screen/inventory objects, ordered by their slot ID. var/obj/screen/movable/action_button/hide_toggle/hide_actions_toggle var/action_buttons_hidden = FALSE @@ -151,10 +151,10 @@ mymob.client.screen += infodisplay //These ones are a part of 'static_inventory', 'toggleable_inventory' or 'hotkeybuttons' but we want them to stay - if(inv_slots[slot_l_hand]) - mymob.client.screen += inv_slots[slot_l_hand] //we want the hands to be visible - if(inv_slots[slot_r_hand]) - mymob.client.screen += inv_slots[slot_r_hand] //we want the hands to be visible + if(inv_slots[SLOT_HUD_LEFT_HAND]) + mymob.client.screen += inv_slots[SLOT_HUD_LEFT_HAND] //we want the hands to be visible + if(inv_slots[SLOT_HUD_RIGHT_HAND]) + mymob.client.screen += inv_slots[SLOT_HUD_RIGHT_HAND] //we want the hands to be visible if(action_intent) mymob.client.screen += action_intent //we want the intent switcher visible action_intent.screen_loc = ui_acti_alt //move this to the alternative position, where zone_select usually is. diff --git a/code/_onclick/hud/human_hud.dm b/code/_onclick/hud/human_hud.dm index 6c1b25c05bd5..1db2fe7cd1c3 100644 --- a/code/_onclick/hud/human_hud.dm +++ b/code/_onclick/hud/human_hud.dm @@ -102,7 +102,7 @@ inv_box = new /obj/screen/inventory() inv_box.name = "i_clothing" inv_box.icon = ui_style - inv_box.slot_id = slot_w_uniform + inv_box.slot_id = SLOT_HUD_JUMPSUIT inv_box.icon_state = "uniform" inv_box.screen_loc = ui_iclothing inv_box.color = ui_color @@ -112,7 +112,7 @@ inv_box = new /obj/screen/inventory() inv_box.name = "o_clothing" inv_box.icon = ui_style - inv_box.slot_id = slot_wear_suit + inv_box.slot_id = SLOT_HUD_OUTER_SUIT inv_box.icon_state = "suit" inv_box.screen_loc = ui_oclothing inv_box.color = ui_color @@ -126,7 +126,7 @@ inv_box.color = ui_color inv_box.alpha = ui_alpha inv_box.screen_loc = ui_rhand - inv_box.slot_id = slot_r_hand + inv_box.slot_id = SLOT_HUD_RIGHT_HAND static_inventory += inv_box inv_box = new /obj/screen/inventory/hand() @@ -136,7 +136,7 @@ inv_box.color = ui_color inv_box.alpha = ui_alpha inv_box.screen_loc = ui_lhand - inv_box.slot_id = slot_l_hand + inv_box.slot_id = SLOT_HUD_LEFT_HAND static_inventory += inv_box using = new /obj/screen/swap_hand() @@ -162,7 +162,7 @@ inv_box.icon = ui_style inv_box.icon_state = "id" inv_box.screen_loc = ui_id - inv_box.slot_id = slot_wear_id + inv_box.slot_id = SLOT_HUD_WEAR_ID inv_box.color = ui_color inv_box.alpha = ui_alpha static_inventory += inv_box @@ -172,7 +172,7 @@ inv_box.icon = ui_style inv_box.icon_state = "pda" inv_box.screen_loc = ui_pda - inv_box.slot_id = slot_wear_pda + inv_box.slot_id = SLOT_HUD_WEAR_PDA inv_box.color = ui_color inv_box.alpha = ui_alpha static_inventory += inv_box @@ -182,7 +182,7 @@ inv_box.icon = ui_style inv_box.icon_state = "mask" inv_box.screen_loc = ui_mask - inv_box.slot_id = slot_wear_mask + inv_box.slot_id = SLOT_HUD_WEAR_MASK inv_box.color = ui_color inv_box.alpha = ui_alpha toggleable_inventory += inv_box @@ -192,7 +192,7 @@ inv_box.icon = ui_style inv_box.icon_state = "back" inv_box.screen_loc = ui_back - inv_box.slot_id = slot_back + inv_box.slot_id = SLOT_HUD_BACK inv_box.color = ui_color inv_box.alpha = ui_alpha static_inventory += inv_box @@ -202,7 +202,7 @@ inv_box.icon = ui_style inv_box.icon_state = "pocket" inv_box.screen_loc = ui_storage1 - inv_box.slot_id = slot_l_store + inv_box.slot_id = SLOT_HUD_LEFT_STORE inv_box.color = ui_color inv_box.alpha = ui_alpha static_inventory += inv_box @@ -212,7 +212,7 @@ inv_box.icon = ui_style inv_box.icon_state = "pocket" inv_box.screen_loc = ui_storage2 - inv_box.slot_id = slot_r_store + inv_box.slot_id = SLOT_HUD_RIGHT_STORE inv_box.color = ui_color inv_box.alpha = ui_alpha static_inventory += inv_box @@ -224,7 +224,7 @@ inv_box.color = ui_color inv_box.alpha = ui_alpha inv_box.screen_loc = ui_sstore1 - inv_box.slot_id = slot_s_store + inv_box.slot_id = SLOT_HUD_SUIT_STORE static_inventory += inv_box using = new /obj/screen/resist() @@ -253,7 +253,7 @@ inv_box.icon = ui_style inv_box.icon_state = "gloves" inv_box.screen_loc = ui_gloves - inv_box.slot_id = slot_gloves + inv_box.slot_id = SLOT_HUD_GLOVES inv_box.color = ui_color inv_box.alpha = ui_alpha toggleable_inventory += inv_box @@ -263,7 +263,7 @@ inv_box.icon = ui_style inv_box.icon_state = "glasses" inv_box.screen_loc = ui_glasses - inv_box.slot_id = slot_glasses + inv_box.slot_id = SLOT_HUD_GLASSES inv_box.color = ui_color inv_box.alpha = ui_alpha toggleable_inventory += inv_box @@ -273,7 +273,7 @@ inv_box.icon = ui_style inv_box.icon_state = "ears" inv_box.screen_loc = ui_l_ear - inv_box.slot_id = slot_l_ear + inv_box.slot_id = SLOT_HUD_LEFT_EAR inv_box.color = ui_color inv_box.alpha = ui_alpha toggleable_inventory += inv_box @@ -283,7 +283,7 @@ inv_box.icon = ui_style inv_box.icon_state = "ears" inv_box.screen_loc = ui_r_ear - inv_box.slot_id = slot_r_ear + inv_box.slot_id = SLOT_HUD_RIGHT_EAR inv_box.color = ui_color inv_box.alpha = ui_alpha toggleable_inventory += inv_box @@ -293,7 +293,7 @@ inv_box.icon = ui_style inv_box.icon_state = "head" inv_box.screen_loc = ui_head - inv_box.slot_id = slot_head + inv_box.slot_id = SLOT_HUD_HEAD inv_box.color = ui_color inv_box.alpha = ui_alpha toggleable_inventory += inv_box @@ -303,7 +303,7 @@ inv_box.icon = ui_style inv_box.icon_state = "shoes" inv_box.screen_loc = ui_shoes - inv_box.slot_id = slot_shoes + inv_box.slot_id = SLOT_HUD_SHOES inv_box.color = ui_color inv_box.alpha = ui_alpha toggleable_inventory += inv_box @@ -313,7 +313,7 @@ inv_box.icon = ui_style inv_box.icon_state = "belt" inv_box.screen_loc = ui_belt - inv_box.slot_id = slot_belt + inv_box.slot_id = SLOT_HUD_BELT inv_box.color = ui_color inv_box.alpha = ui_alpha static_inventory += inv_box diff --git a/code/_onclick/hud/parallax.dm b/code/_onclick/hud/parallax.dm index becd36b63ff7..916086606090 100644 --- a/code/_onclick/hud/parallax.dm +++ b/code/_onclick/hud/parallax.dm @@ -17,10 +17,13 @@ return // this is needed so it blends properly with the space plane and blackness plane. var/obj/screen/plane_master/space/S = plane_masters["[PLANE_SPACE]"] - S.color = list(1, 1, 1, 1, - 1, 1, 1, 1, - 1, 1, 1, 1, - 1, 1, 1, 1,) + if(C.prefs.toggles2 & PREFTOGGLE_2_PARALLAX_IN_DARKNESS) + S.color = rgb(0, 0, 0, 0) + else + S.color = list(1, 1, 1, 1, + 1, 1, 1, 1, + 1, 1, 1, 1, + 1, 1, 1, 1,) S.appearance_flags |= NO_CLIENT_COLOR if(!length(C.parallax_layers_cached)) C.parallax_layers_cached = list() @@ -33,6 +36,12 @@ C.parallax_layers = C.parallax_layers_cached.Copy() + var/obj/screen/plane_master/parallax/parallax_plane_master = plane_masters["[PLANE_SPACE_PARALLAX]"] + if(C.prefs.toggles2 & PREFTOGGLE_2_PARALLAX_IN_DARKNESS) + parallax_plane_master.blend_mode = BLEND_ADD + else + parallax_plane_master.blend_mode = BLEND_MULTIPLY + if(length(C.parallax_layers) > C.parallax_layers_max) C.parallax_layers.len = C.parallax_layers_max diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm index bc0ccee9dc15..84bd640e68bb 100644 --- a/code/_onclick/hud/screen_objects.dm +++ b/code/_onclick/hud/screen_objects.dm @@ -443,7 +443,7 @@ if(!active_overlay) active_overlay = image("icon"=icon, "icon_state"="hand_active") if(!handcuff_overlay) - var/state = (slot_id == slot_r_hand) ? "markus" : "gabrielle" + var/state = (slot_id == SLOT_HUD_RIGHT_HAND) ? "markus" : "gabrielle" handcuff_overlay = image("icon"='icons/mob/screen_gen.dmi', "icon_state"=state) if(hud && hud.mymob) @@ -452,13 +452,13 @@ if(C.handcuffed) . += handcuff_overlay - var/obj/item/organ/external/hand = C.get_organ("[slot_id == slot_l_hand ? "l" : "r"]_hand") + var/obj/item/organ/external/hand = C.get_organ("[slot_id == SLOT_HUD_LEFT_HAND ? "l" : "r"]_hand") if(!isalien(C) && (!hand || !hand.is_usable())) . += blocked_overlay - if(slot_id == slot_l_hand && hud.mymob.hand) + if(slot_id == SLOT_HUD_LEFT_HAND && hud.mymob.hand) . += active_overlay - else if(slot_id == slot_r_hand && !hud.mymob.hand) + else if(slot_id == SLOT_HUD_RIGHT_HAND && !hud.mymob.hand) . += active_overlay /obj/screen/inventory/hand/Click() diff --git a/code/_onclick/item_attack.dm b/code/_onclick/item_attack.dm index c62e0d417908..ea78bd776953 100644 --- a/code/_onclick/item_attack.dm +++ b/code/_onclick/item_attack.dm @@ -27,8 +27,11 @@ if(SEND_SIGNAL(src, COMSIG_ITEM_PRE_ATTACK, A, user, params) & COMPONENT_CANCEL_ATTACK_CHAIN) return TRUE if(is_hot(src) && A.reagents && !ismob(A)) - to_chat(user, "You heat [A] with [src].") - A.reagents.temperature_reagents(is_hot(src)) + var/reagent_temp = A.reagents.chem_temp + var/time = (reagent_temp / 10) / (is_hot(src) / 1000) + if(do_after_once(user, time, TRUE, user, TRUE, attempt_cancel_message = "You stop heating up [A].")) + to_chat(user, "You heat [A] with [src].") + A.reagents.temperature_reagents(is_hot(src)) return TRUE //return FALSE to avoid calling attackby after this proc does stuff // No comment diff --git a/code/_onclick/telekinesis.dm b/code/_onclick/telekinesis.dm index 159d9d62e395..0a7707e02756 100644 --- a/code/_onclick/telekinesis.dm +++ b/code/_onclick/telekinesis.dm @@ -89,7 +89,7 @@ //stops TK grabs being equipped anywhere but into hands /obj/item/tk_grab/equipped(mob/user, slot) - if( (slot == slot_l_hand) || (slot== slot_r_hand) ) + if( (slot == SLOT_HUD_LEFT_HAND) || (slot== SLOT_HUD_RIGHT_HAND) ) return qdel(src) diff --git a/code/controllers/subsystem/SSgarbage.dm b/code/controllers/subsystem/SSgarbage.dm index bf9a81662566..b07e8e51dbe9 100644 --- a/code/controllers/subsystem/SSgarbage.dm +++ b/code/controllers/subsystem/SSgarbage.dm @@ -8,7 +8,7 @@ SUBSYSTEM_DEF(garbage) offline_implications = "Garbage collection is no longer functional, and objects will not be qdel'd. Immediate server restart recommended." cpu_display = SS_CPUDISPLAY_HIGH - var/list/collection_timeout = list(2 MINUTES, 10 SECONDS) // deciseconds to wait before moving something up in the queue to the next level + var/list/collection_timeout = list(GC_FILTER_QUEUE, GC_CHECK_QUEUE, GC_DEL_QUEUE) // deciseconds to wait before moving something up in the queue to the next level //Stat tracking var/delslasttick = 0 // number of del()'s we've done this tick @@ -34,13 +34,7 @@ SUBSYSTEM_DEF(garbage) /datum/controller/subsystem/garbage/PreInit() - queues = new(GC_QUEUE_COUNT) - pass_counts = new(GC_QUEUE_COUNT) - fail_counts = new(GC_QUEUE_COUNT) - for(var/i in 1 to GC_QUEUE_COUNT) - queues[i] = list() - pass_counts[i] = 0 - fail_counts[i] = 0 + InitQueues() /datum/controller/subsystem/garbage/get_stat_details() var/list/msg = list() @@ -105,10 +99,13 @@ SUBSYSTEM_DEF(garbage) /datum/controller/subsystem/garbage/fire() //the fact that this resets its processing each fire (rather then resume where it left off) is intentional. - var/queue = GC_QUEUE_CHECK + var/queue = GC_QUEUE_FILTER while(state == SS_RUNNING) switch(queue) + if(GC_QUEUE_FILTER) + HandleQueue(GC_QUEUE_FILTER) + queue = GC_QUEUE_FILTER + 1 if(GC_QUEUE_CHECK) HandleQueue(GC_QUEUE_CHECK) queue = GC_QUEUE_CHECK + 1 @@ -118,11 +115,20 @@ SUBSYSTEM_DEF(garbage) state = SS_RUNNING break +/datum/controller/subsystem/garbage/proc/InitQueues() + if(isnull(queues)) // Only init the queues if they don't already exist, prevents overriding of recovered lists + queues = new(GC_QUEUE_COUNT) + pass_counts = new(GC_QUEUE_COUNT) + fail_counts = new(GC_QUEUE_COUNT) + for(var/i in 1 to GC_QUEUE_COUNT) + queues[i] = list() + pass_counts[i] = 0 + fail_counts[i] = 0 +#define IS_DELETED(datum, gcd_at_time) (isnull(##datum) || ##datum.gc_destroyed != gcd_at_time) - -/datum/controller/subsystem/garbage/proc/HandleQueue(level = GC_QUEUE_CHECK) - if(level == GC_QUEUE_CHECK) +/datum/controller/subsystem/garbage/proc/HandleQueue(level = GC_QUEUE_FILTER) + if(level == GC_QUEUE_FILTER) delslasttick = 0 gcedlasttick = 0 var/cut_off_time = world.time - collection_timeout[level] //ignore entries newer then this @@ -137,33 +143,33 @@ SUBSYSTEM_DEF(garbage) lastlevel = level - // The instinct is to use a for in loop here, to walk the entries in the queue - // The trouble is this performs a copy of the queue list, and since this can in theory balloon a LOT - // It's better to just go index by index. It's not a huge deal but it's worth doin IMO + //We do this rather then for(var/refID in queue) because that sort of for loop copies the whole list. + //Normally this isn't expensive, but the gc queue can grow to 40k items, and that gets costly/causes overrun. for(var/i in 1 to length(queue)) - var/list/packet = queue[i] - if(length(packet) != 2) + var/list/L = queue[i] + if(length(L) < GC_QUEUE_ITEM_INDEX_COUNT) count++ if(MC_TICK_CHECK) return continue - var/GCd_at_time = packet[2] - if(GCd_at_time > cut_off_time) + var/queued_at_time = L[GC_QUEUE_ITEM_QUEUE_TIME] + if(queued_at_time > cut_off_time) break // Everything else is newer, skip them count++ - var/refID = packet[1] + var/GCd_at_time = L[GC_QUEUE_ITEM_GCD_DESTROYED] + var/refID = L[GC_QUEUE_ITEM_REF] var/datum/D D = locate(refID) - if(!D || D.gc_destroyed != GCd_at_time) // So if something else coincidently gets the same ref, it's not deleted by mistake + if(IS_DELETED(D, GCd_at_time)) // So if something else coincidently gets the same ref, it's not deleted by mistake ++gcedlasttick ++totalgcs pass_counts[level]++ #ifdef REFERENCE_TRACKING - reference_find_on_fail -= refID //It's deleted we don't care anymore. + reference_find_on_fail -= text_ref(D) //It's deleted we don't care anymore. #endif if(MC_TICK_CHECK) return @@ -171,26 +177,28 @@ SUBSYSTEM_DEF(garbage) // Something's still referring to the qdel'd object. fail_counts[level]++ + #ifdef REFERENCE_TRACKING var/ref_searching = FALSE #endif + switch(level) if(GC_QUEUE_CHECK) #ifdef REFERENCE_TRACKING - if(reference_find_on_fail[refID] && !ref_search_stop) + if(reference_find_on_fail[text_ref(D)] && !ref_search_stop) INVOKE_ASYNC(D, TYPE_PROC_REF(/datum, find_references)) ref_searching = TRUE #ifdef GC_FAILURE_HARD_LOOKUP - else if (!ref_search_stop) + else if(!ref_search_stop) INVOKE_ASYNC(D, TYPE_PROC_REF(/datum, find_references)) ref_searching = TRUE #endif - reference_find_on_fail -= refID + reference_find_on_fail -= text_ref(D) #endif var/type = D.type var/datum/qdel_item/I = items[type] #ifdef REFERENCE_TRACKING - log_gc("GC: -- \ref[src] | [type] was unable to be GC'd --") + log_gc("GC: -- [text_ref(D)] | [type] was unable to be GC'd --") #endif I.failures++ if(GC_QUEUE_HARDDELETE) @@ -212,19 +220,25 @@ SUBSYSTEM_DEF(garbage) queue.Cut(1, count + 1) count = 0 -/datum/controller/subsystem/garbage/proc/Queue(datum/D, level = GC_QUEUE_CHECK) +#undef IS_DELETED + +/datum/controller/subsystem/garbage/proc/Queue(datum/D, level = GC_QUEUE_FILTER) if(isnull(D)) return if(level > GC_QUEUE_COUNT) HardDelete(D) return - var/gctime = world.time + var/queue_time = world.time - D.gc_destroyed = gctime + var/refid = text_ref(D) + var/static/uid = 0 + if(D.gc_destroyed <= 0) + uid = WRAP(uid + 1, 1, SHORT_REAL_LIMIT - 1) + D.gc_destroyed = uid var/list/queue = queues[level] - // I hate byond lists so much man - queue[++queue.len] = list("\ref[D]", gctime) + + queue[++queue.len] = list(queue_time, refid, D.gc_destroyed) // not += for byond reasons //this is mainly to separate things profile wise. /datum/controller/subsystem/garbage/proc/HardDelete(datum/D) @@ -234,7 +248,7 @@ SUBSYSTEM_DEF(garbage) ++delslasttick ++totaldels var/type = D.type - var/refID = "\ref[D]" + var/refID = text_ref(D) del(D) @@ -259,6 +273,7 @@ SUBSYSTEM_DEF(garbage) postpone(time) /datum/controller/subsystem/garbage/Recover() + InitQueues() //We first need to create the queues before recovering data if(istype(SSgarbage.queues)) for(var/i in 1 to SSgarbage.queues.len) queues[i] |= SSgarbage.queues[i] @@ -283,7 +298,7 @@ SUBSYSTEM_DEF(garbage) thing_to_del.qdel_and_find_ref_if_fail(force) /datum/proc/qdel_and_find_ref_if_fail(force = FALSE) - SSgarbage.reference_find_on_fail["\ref[src]"] = TRUE + SSgarbage.reference_find_on_fail[text_ref(D)] = TRUE qdel(src, force) #endif @@ -294,12 +309,12 @@ SUBSYSTEM_DEF(garbage) if(!istype(D)) del(D) return + var/datum/qdel_item/I = SSgarbage.items[D.type] if(!I) I = SSgarbage.items[D.type] = new /datum/qdel_item(D.type) I.qdels++ - if(isnull(D.gc_destroyed)) if(SEND_SIGNAL(D, COMSIG_PARENT_PREQDELETED, force)) // Give the components a chance to prevent their parent from being deleted return @@ -349,7 +364,7 @@ SUBSYSTEM_DEF(garbage) if(QDEL_HINT_IFFAIL_FINDREFERENCE) SSgarbage.Queue(D) #ifdef REFERENCE_TRACKING - SSgarbage.reference_find_on_fail["\ref[D]"] = TRUE + SSgarbage.reference_find_on_fail[text_ref(D)] = TRUE #endif else #ifdef REFERENCE_TRACKING @@ -474,11 +489,11 @@ SUBSYSTEM_DEF(garbage) var/variable = vars_list[varname] if(variable == src) - log_gc("Found [type] \ref[src] in [datum_container.type]'s \ref[datum_container] [varname] var. [container_name]") + log_gc("Found [type] [text_ref(src)] in [datum_container.type]'s [text_ref(datum_container)] [varname] var. [container_name]") continue if(islist(variable)) - DoSearchVar(variable, "[container_name] \ref[datum_container] -> [varname] (list)", recursive_limit - 1, search_time) + DoSearchVar(variable, "[container_name] [text_ref(datum_container)] -> [varname] (list)", recursive_limit - 1, search_time) else if(islist(potential_container)) var/normal = IS_NORMAL_LIST(potential_container) @@ -489,7 +504,7 @@ SUBSYSTEM_DEF(garbage) #endif //Check normal entrys if(element_in_list == src) - log_gc("Found [type] \ref[src] in list [container_name].") + log_gc("Found [type] [text_ref(src)] in list [container_name].") continue var/assoc_val = null @@ -497,7 +512,7 @@ SUBSYSTEM_DEF(garbage) assoc_val = potential_cache[element_in_list] //Check assoc entrys if(assoc_val == src) - log_gc("Found [type] \ref[src] in list [container_name]\[[element_in_list]\]") + log_gc("Found [type] [text_ref(src)] in list [container_name]\[[element_in_list]\]") continue //We need to run both of these checks, since our object could be hiding in either of them //Check normal sublists diff --git a/code/controllers/subsystem/SSjobs.dm b/code/controllers/subsystem/SSjobs.dm index b720526e60aa..428a90135dc5 100644 --- a/code/controllers/subsystem/SSjobs.dm +++ b/code/controllers/subsystem/SSjobs.dm @@ -74,6 +74,8 @@ SUBSYSTEM_DEF(jobs) var/datum/job/job = GetJob(rank) if(!job) return FALSE + if(job.job_banned_gamemode) + return FALSE if(jobban_isbanned(player, rank)) return FALSE if(!job.player_old_enough(player.client)) @@ -105,12 +107,19 @@ SUBSYSTEM_DEF(jobs) Debug("AR has failed, Player: [player], Rank: [rank]") return 0 -/datum/controller/subsystem/jobs/proc/FreeRole(rank) //making additional slot on the fly +/datum/controller/subsystem/jobs/proc/FreeRole(rank, force = FALSE) //making additional slot on the fly var/datum/job/job = GetJob(rank) - if(job && job.current_positions >= job.total_positions && job.total_positions != -1) + if(!job) + return FALSE + if(job.job_banned_gamemode) + if(!force) + return FALSE + job.job_banned_gamemode = FALSE // If admins want to force it, they can reopen banned job slots + + if(job.current_positions >= job.total_positions && job.total_positions != -1) job.total_positions++ - return 1 - return 0 + return TRUE + return FALSE /datum/controller/subsystem/jobs/proc/FindOccupationCandidates(datum/job/job, level, flag) Debug("Running FOC, Job: [job], Level: [level], Flag: [flag]") @@ -425,26 +434,26 @@ SUBSYSTEM_DEF(jobs) var/list/L = list("

----------------") L.Add("Your role on the station is: [alt_title ? alt_title : rank].") L.Add("You answer directly to [job.supervisors]. Special circumstances may change this.") - L.Add("For more information on how the station works, see Standard Operating Procedure (SOP).") - if(job.is_service) - L.Add("As a member of Service, make sure to read up on your Department SOP.") - if(job.is_supply) - L.Add("As a member of Supply, make sure to read up on your Department SOP.") - if(job.is_command) - L.Add("As an important member of Command, read up on your Department SOP.") - if(job.is_legal) - L.Add("Your job requires complete knowledge of Space Law and Legal Standard Operating Procedure.") - if(job.is_engineering) - L.Add("As a member of Engineering, make sure to read up on your Department SOP.") - if(job.is_medical) - L.Add("As a member of Medbay, make sure to read up on your Department SOP.") - if(job.is_science) - L.Add("As a member of Science, make sure to read up on your Department SOP.") - if(job.is_security) - L.Add("As a member of Security, you are to know Space Law, Legal Standard Operating Procedure, as well as your Department SOP.") + L.Add("For more information on how the station works, see [wiki_link("Standard_Operating_Procedure", "Standard Operating Procedure (SOP)")].") + if(job.job_department_flags & DEP_FLAG_SERVICE) + L.Add("As a member of Service, make sure to read up on your [wiki_link("Standard_Operating_Procedure_(Service)", "Department SOP")].") + if(job.job_department_flags & DEP_FLAG_SUPPLY) + L.Add("As a member of Supply, make sure to read up on your [wiki_link("Standard_Operating_Procedure_(Supply)", "Department SOP")].") + if(job.job_department_flags == DEP_FLAG_COMMAND) // Check if theyre only command, like captain/hop/bs/ntrep, to not spam their chatbox + L.Add("As an important member of Command, read up on your [wiki_link("Standard_Operating_Procedure_(Command)", "Department SOP")].") + if(job.job_department_flags & DEP_FLAG_LEGAL) + L.Add("Your job requires complete knowledge of [wiki_link("Space Law", "Space Law")] and [wiki_link("Legal_Standard_Operating_Procedure", "Legal Standard Operating Procedure")].") + if(job.job_department_flags & DEP_FLAG_ENGINEERING) + L.Add("As a member of Engineering, make sure to read up on your [wiki_link("Standard_Operating_Procedure_(Engineering)", "Department SOP")].") + if(job.job_department_flags & DEP_FLAG_MEDICAL) + L.Add("As a member of Medbay, make sure to read up on your [wiki_link("Standard_Operating_Procedure_(Medical)", "Department SOP")].") + if(job.job_department_flags & DEP_FLAG_SCIENCE) // geneticist gets both, yeah sure why not + L.Add("As a member of Science, make sure to read up on your [wiki_link("Standard_Operating_Procedure_(Science)", "Department SOP")].") + if(job.job_department_flags & DEP_FLAG_SECURITY) + L.Add("As a member of Security, you are to know [wiki_link("Space Law", "Space Law")] and [wiki_link("Legal_Standard_Operating_Procedure", "Legal Standard Operating Procedure")], as well as your [wiki_link("Standard_Operating_Procedure_(Security)", "Department SOP")].") if(job.req_admin_notify) L.Add("You are playing a job that is important for the game progression. If you have to disconnect, please go to cryo and inform command. If you are unable to do so, please notify the admins via adminhelp.") - L.Add("
If you need help, check the wiki or use Mentorhelp(F1)!
") + L.Add("
If you need help, check the [wiki_link("Main_Page", "wiki")] or use Mentorhelp(F1)!") if(job.important_information) L.Add("[job.important_information]") L.Add("----------------


") @@ -507,7 +516,7 @@ SUBSYSTEM_DEF(jobs) //Gives glasses to the vision impaired if(HAS_TRAIT(H, TRAIT_NEARSIGHT)) - var/equipped = H.equip_to_slot_or_del(new /obj/item/clothing/glasses/regular(H), slot_glasses) + var/equipped = H.equip_to_slot_or_del(new /obj/item/clothing/glasses/regular(H), SLOT_HUD_GLASSES) if(equipped != 1) var/obj/item/clothing/glasses/G = H.glasses if(istype(G) && !G.prescription) @@ -592,11 +601,7 @@ SUBSYSTEM_DEF(jobs) for(var/datum/job_objective/objective as anything in H.mind.job_objectives) objective.owner_account = account - var/remembered_info = "" - remembered_info += "Your account number is: #[account.account_number]
" - remembered_info += "Your account pin is: [account.account_pin]
" - - H.mind.store_memory(remembered_info) + H.mind.store_memory("Your account number is: #[account.account_number]
Your account pin is: [account.account_pin]") H.mind.set_initial_account(account) to_chat(H, "As an employee of Nanotrasen you will receive a paycheck of $[account.payday_amount] credits every 30 minutes") @@ -818,11 +823,24 @@ SUBSYSTEM_DEF(jobs) else if(C.mob.mind.assigned_role) myrole = C.mob.mind.assigned_role - var/added_living = 0 - var/added_ghost = 0 + // Track all the added ammounts for a mega update query + var/list/added_differential = list( + EXP_TYPE_LIVING = 0, + EXP_TYPE_CREW = 0, + EXP_TYPE_SPECIAL = 0, + EXP_TYPE_GHOST = 0, + EXP_TYPE_COMMAND = 0, + EXP_TYPE_ENGINEERING = 0, + EXP_TYPE_MEDICAL = 0, + EXP_TYPE_SCIENCE = 0, + EXP_TYPE_SUPPLY = 0, + EXP_TYPE_SECURITY = 0, + EXP_TYPE_SILICON = 0, + EXP_TYPE_SERVICE = 0 + ) if(C.mob.stat == CONSCIOUS && myrole) play_records[C.ckey][EXP_TYPE_LIVING] += minutes - added_living += minutes + added_differential[EXP_TYPE_LIVING] += minutes if(announce) to_chat(C.mob, "You got: [minutes] Living EXP!") @@ -831,6 +849,7 @@ SUBSYSTEM_DEF(jobs) if(GLOB.exp_jobsmap[category]["titles"]) if(myrole in GLOB.exp_jobsmap[category]["titles"]) play_records[C.ckey][category] += minutes + added_differential[category] += minutes if(announce) to_chat(C.mob, "You got: [minutes] [category] EXP!") @@ -841,7 +860,7 @@ SUBSYSTEM_DEF(jobs) else if(isobserver(C.mob)) play_records[C.ckey][EXP_TYPE_GHOST] += minutes - added_ghost += minutes + added_differential[EXP_TYPE_GHOST] += minutes if(announce) to_chat(C.mob, "You got: [minutes] Ghost EXP!") else @@ -861,14 +880,25 @@ SUBSYSTEM_DEF(jobs) player_update_queries += update_query + // This gets hellish var/datum/db_query/update_query_history = SSdbcore.NewQuery({" - INSERT INTO playtime_history (ckey, date, time_living, time_ghost) - VALUES (:ckey, CURDATE(), :addedliving, :addedghost) - ON DUPLICATE KEY UPDATE time_living=time_living + VALUES(time_living), time_ghost=time_ghost + VALUES(time_ghost)"}, + INSERT INTO playtime_history (ckey, date, time_living, time_crew, time_special, time_ghost, time_command, time_engineering, time_medical, time_science, time_supply, time_security, time_silicon, time_service) + VALUES (:ckey, CURDATE(), :addedliving, :addedcrew, :addedspecial, :addedghost, :addedcommand, :addedengineering, :addedmedical, :addedscience, :addedsupply, :addedsecurity, :addedsilicon, :addedservice) + ON DUPLICATE KEY UPDATE time_living=time_living + VALUES(time_living), time_crew=time_crew + VALUES(time_crew), time_crew=time_special + VALUES(time_special), time_ghost=time_ghost + VALUES(time_ghost), time_command=time_command + VALUES(time_command), time_engineering=time_engineering + VALUES(time_engineering), time_medical=time_medical + VALUES(time_medical), time_science=time_science + VALUES(time_science), time_supply=time_supply + VALUES(time_supply), time_security=time_security + VALUES(time_security), time_silicon=time_silicon + VALUES(time_silicon), time_service=time_service + VALUES(time_service)"}, list( "ckey" = C.ckey, - "addedliving" = added_living, - "addedghost" = added_ghost + "addedliving" = added_differential[EXP_TYPE_LIVING], + "addedcrew" = added_differential[EXP_TYPE_CREW], + "addedspecial" = added_differential[EXP_TYPE_SPECIAL], + "addedghost" = added_differential[EXP_TYPE_GHOST], + "addedcommand" = added_differential[EXP_TYPE_COMMAND], + "addedengineering" = added_differential[EXP_TYPE_ENGINEERING], + "addedmedical" = added_differential[EXP_TYPE_MEDICAL], + "addedscience" = added_differential[EXP_TYPE_SCIENCE], + "addedsupply" = added_differential[EXP_TYPE_SUPPLY], + "addedsecurity" = added_differential[EXP_TYPE_SECURITY], + "addedsilicon" = added_differential[EXP_TYPE_SILICON], + "addedservice" = added_differential[EXP_TYPE_SERVICE] ) ) diff --git a/code/controllers/subsystem/SSshuttles.dm b/code/controllers/subsystem/SSshuttles.dm index a229a3ab80cf..003e49309ca9 100644 --- a/code/controllers/subsystem/SSshuttles.dm +++ b/code/controllers/subsystem/SSshuttles.dm @@ -294,13 +294,11 @@ SUBSYSTEM_DEF(shuttle) if(!length(supply_shuttle_turfs)) for(var/turf/simulated/T in supply.areaInstance) - if(T.density) + if(is_blocked_turf(T)) continue - for(var/obj/structure/structure in T.contents) - if(structure.density) - continue supply_shuttle_turfs += T if(!length(supply_shuttle_turfs)) // In case some nutjob walled the supply shuttle 10 minutes into the round + stack_trace("There were no available turfs on the Supply Shuttle to spawn a mail crate in!") return var/turf/spawn_location = pick(supply_shuttle_turfs) new /obj/structure/closet/crate/mail(spawn_location) diff --git a/code/controllers/subsystem/SSticker.dm b/code/controllers/subsystem/SSticker.dm index add0e27f5489..f9c0cb0e4eee 100644 --- a/code/controllers/subsystem/SSticker.dm +++ b/code/controllers/subsystem/SSticker.dm @@ -589,6 +589,11 @@ SUBSYSTEM_DEF(ticker) if(findtext("[handler]","auto_declare_completion_")) call(mode, handler)() + for(var/datum/team/team in GLOB.antagonist_teams) + team.on_round_end() + + play_cinematic(/datum/cinematic/credits, world) + // Display the scoreboard window score.scoreboard() diff --git a/code/controllers/subsystem/non_firing/SSmapping.dm b/code/controllers/subsystem/non_firing/SSmapping.dm index 59d5491619a6..992579e9b095 100644 --- a/code/controllers/subsystem/non_firing/SSmapping.dm +++ b/code/controllers/subsystem/non_firing/SSmapping.dm @@ -186,7 +186,7 @@ SUBSYSTEM_DEF(mapping) var/watch = start_watch() log_startup_progress("Loading Lavaland...") var/lavaland_z_level = GLOB.space_manager.add_new_zlevel(MINING, linkage = SELFLOOPING, traits = list(ORE_LEVEL, REACHABLE_BY_CREW, STATION_CONTACT, HAS_WEATHER, AI_OK)) - GLOB.maploader.load_map(file("_maps/map_files/generic/Lavaland.dmm"), z_offset = lavaland_z_level) + GLOB.maploader.load_map(file("_maps/map_files220/generic/Lavaland.dmm"), z_offset = lavaland_z_level) // SS220 EDIT - map_files log_startup_progress("Loaded Lavaland in [stop_watch(watch)]s") /datum/controller/subsystem/mapping/proc/seedRuins(list/z_levels = null, budget = 0, whitelist = /area/space, list/potentialRuins) diff --git a/code/datums/components/parry.dm b/code/datums/components/parry.dm index f9816c23e9fc..69a6f1821fa5 100644 --- a/code/datums/components/parry.dm +++ b/code/datums/components/parry.dm @@ -61,7 +61,7 @@ /datum/component/parry/proc/equipped(datum/source, mob/user, slot) SIGNAL_HANDLER - if(slot in list(slot_l_hand, slot_r_hand)) + if(slot in list(SLOT_HUD_LEFT_HAND, SLOT_HUD_RIGHT_HAND)) RegisterSignal(user, COMSIG_HUMAN_PARRY, PROC_REF(start_parry)) else UnregisterSignal(user, COMSIG_HUMAN_PARRY) diff --git a/code/datums/components/two_handed.dm b/code/datums/components/two_handed.dm index 114bc3d1b0a7..5c4ebd73490f 100644 --- a/code/datums/components/two_handed.dm +++ b/code/datums/components/two_handed.dm @@ -126,7 +126,7 @@ /datum/component/two_handed/proc/on_equip(datum/source, mob/user, slot) SIGNAL_HANDLER // COMSIG_ITEM_EQUIPPED - if(require_twohands && (slot == slot_l_hand || slot == slot_r_hand)) // force equip the item + if(require_twohands && (slot == SLOT_HUD_LEFT_HAND || slot == SLOT_HUD_RIGHT_HAND)) // force equip the item INVOKE_ASYNC(src, PROC_REF(wield), user) if(!user.is_holding(parent) && wielded && !require_twohands) INVOKE_ASYNC(src, PROC_REF(unwield), user) @@ -277,7 +277,7 @@ parent_item.update_appearance() if(istype(user)) // tk showed that we might not have a mob here - if(user.get_item_by_slot(slot_back) == parent) + if(user.get_item_by_slot(SLOT_HUD_BACK) == parent) user.update_inv_back() else user.update_inv_l_hand() diff --git a/code/datums/datum.dm b/code/datums/datum.dm index a9f2c9362504..82b8bd2e2303 100644 --- a/code/datums/datum.dm +++ b/code/datums/datum.dm @@ -9,6 +9,13 @@ var/var_edited = FALSE //Warranty void if seal is broken var/tmp/unique_datum_id = null +/** + * A cached version of our \ref + * The brunt of \ref costs are in creating entries in the string tree (a tree of immutable strings) + * This avoids doing that more then once per datum by ensuring ref strings always have a reference to them after they're first pulled + */ + var/cached_ref + #ifdef REFERENCE_TRACKING var/running_find_references var/last_find_references = 0 diff --git a/code/datums/datumvars.dm b/code/datums/datumvars.dm index bd58c8446dcb..7cca4aed6650 100644 --- a/code/datums/datumvars.dm +++ b/code/datums/datumvars.dm @@ -12,8 +12,21 @@ /datum/proc/can_vv_get(var_name) return TRUE -// /client/proc/can_vv_get(var_name) -// return TRUE +/mob/can_vv_get(var_name) + var/static/list/protected_vars = list( + "lastKnownIP", "computer_id" + ) + if(!check_rights(R_ADMIN, FALSE, src) && (var_name in protected_vars)) + return FALSE + return TRUE + +/client/can_vv_get(var_name) + var/static/list/protected_vars = list( + "address", "computer_id" + ) + if(!check_rights(R_ADMIN, FALSE, mob) && (var_name in protected_vars)) + return FALSE + return TRUE /datum/proc/vv_edit_var(var_name, var_value) //called whenever a var is edited switch(var_name) @@ -227,6 +240,7 @@ var/html = {" + [title] + + + "} diff --git a/modular_ss220/title_screen/code/dead.dm b/modular_ss220/title_screen/code/dead.dm new file mode 100644 index 000000000000..ab33d670ae81 --- /dev/null +++ b/modular_ss220/title_screen/code/dead.dm @@ -0,0 +1,3 @@ +/mob/dead/Login() + . = ..() + hide_title_screen() diff --git a/modular_ss220/title_screen/code/living.dm b/modular_ss220/title_screen/code/living.dm new file mode 100644 index 000000000000..9b96cbd348d0 --- /dev/null +++ b/modular_ss220/title_screen/code/living.dm @@ -0,0 +1,3 @@ +/mob/living/Login() + . = ..() + hide_title_screen() diff --git a/modular_ss220/title_screen/code/mob.dm b/modular_ss220/title_screen/code/mob.dm new file mode 100644 index 000000000000..17f02d8b2b9f --- /dev/null +++ b/modular_ss220/title_screen/code/mob.dm @@ -0,0 +1,35 @@ +/** + * Shows the titlescreen to a new player. + */ +/mob/proc/show_title_screen() + if(!client) + return + winset(src, "title_browser", "is-disabled=true;is-visible=true") + winset(src, "status_bar", "is-visible=false") + + var/datum/asset/assets = get_asset_datum(/datum/asset/simple/lobby) //Sending pictures to the client + assets.send(src) + + update_title_screen() + +/** + * Hard updates the title screen HTML, it causes visual glitches if used. + */ +/mob/proc/update_title_screen() + var/dat = get_title_html() + + src << browse(SStitle.current_title_screen, "file=loading_screen.gif;display=0") + src << browse(dat, "window=title_browser") + +/datum/asset/simple/lobby + assets = list( + "FixedsysExcelsior3.01Regular.ttf" = 'modular_ss220/title_screen/html/browser/FixedsysExcelsior3.01Regular.ttf', + ) + +/** + * Removes the titlescreen entirely from a mob. + */ +/mob/proc/hide_title_screen() + if(client?.mob) + winset(client, "title_browser", "is-disabled=true;is-visible=false") + winset(client, "status_bar", "is-visible=true") diff --git a/modular_ss220/title_screen/code/new_player.dm b/modular_ss220/title_screen/code/new_player.dm new file mode 100644 index 000000000000..aeff79c5ae94 --- /dev/null +++ b/modular_ss220/title_screen/code/new_player.dm @@ -0,0 +1,14 @@ +GLOBAL_LIST_EMPTY(new_player_list) + +/mob/new_player/Initialize(mapload) + GLOB.new_player_list += src + show_title_screen() + . = ..() + +/mob/new_player/Destroy() + GLOB.new_player_list -= src + . = ..() + +/mob/new_player/Login() + . = ..() + show_title_screen() diff --git a/modular_ss220/title_screen/code/title_screen_controls.dm b/modular_ss220/title_screen/code/title_screen_controls.dm new file mode 100644 index 000000000000..f2be6e8d47d8 --- /dev/null +++ b/modular_ss220/title_screen/code/title_screen_controls.dm @@ -0,0 +1,80 @@ +/** + * Enables an admin to upload a new titlescreen image. + */ +/client/proc/admin_change_title_screen() + set category = "Event" + set name = "Title Screen: Change" + + if(!check_rights(R_EVENT)) + return + + log_admin("[key_name(usr)] is changing the title screen.") + message_admins("[key_name_admin(usr)] is changing the title screen.") + + switch(alert(usr, "Please select a new title screen.", "Title Screen", "Change", "Reset", "Cancel")) + if("Change") + var/file = input(usr) as icon|null + if(!file) + return + SStitle.change_title_screen(file) + if("Reset") + SStitle.change_title_screen() + if("Cancel") + return + +/** + * Sets a titlescreen notice, a big red text on the main screen. + */ +/client/proc/change_title_screen_notice() + set category = "Event" + set name = "Title Screen: Set Notice" + + if(!check_rights(R_EVENT)) + return + + log_admin("[key_name(usr)] is setting the title screen notice.") + message_admins("[key_name_admin(usr)] is setting the title screen notice.") + + var/new_notice = input(usr, "Please input a notice to be displayed on the title screen:", "Titlescreen Notice") as text|null + SStitle.set_notice(new_notice) + if(!new_notice) + return + for(var/mob/new_player/new_player in GLOB.new_player_list) + to_chat(new_player, span_boldannounce("TITLE NOTICE UPDATED: [new_notice]")) + SEND_SOUND(new_player, sound('sound/items/bikehorn.ogg')) + +/** + * Reloads the titlescreen if it is bugged for someone. + */ +/client/verb/fix_title_screen() + set name = "Fix Lobby Screen" + set desc = "Lobbyscreen broke? Press this." + set category = "OOC" + + if(istype(mob, /mob/new_player)) + mob.show_title_screen() + else + mob.hide_title_screen() + +/** + * An admin debug command that enables you to change the HTML on the go. + */ +/client/proc/change_title_screen_html() + set category = "Event" + set name = "Title Screen: Set HTML" + + if(!check_rights(R_DEBUG)) + return + + log_admin("[key_name(usr)] is setting the title screen HTML.") + message_admins("[key_name_admin(usr)] is setting the title screen HTML.") + + var/new_html = input(usr, "Please enter your desired HTML(WARNING: YOU WILL BREAK SHIT)", "DANGER: TITLE HTML EDIT") as message|null + + if(!new_html) + return + + SStitle.title_html = new_html + SStitle.show_title_screen() + + message_admins("[key_name_admin(usr)] has changed the title screen HTML.") diff --git a/modular_ss220/title_screen/code/title_screen_html.dm b/modular_ss220/title_screen/code/title_screen_html.dm new file mode 100644 index 000000000000..bde98fd53895 --- /dev/null +++ b/modular_ss220/title_screen/code/title_screen_html.dm @@ -0,0 +1,16 @@ +// FOR MOR INFO ON HTML CUSTOMISATION, SEE: https://github.com/Skyrat-SS13/Skyrat-tg/pull/4783 + +/mob/proc/get_title_html() + var/dat = SStitle.title_html + dat += {""} + + if(SStitle.current_notice) + dat += {" +
+ +
+ "} + + dat += "" + + return dat diff --git a/modular_ss220/title_screen/code/title_screen_subsystem.dm b/modular_ss220/title_screen/code/title_screen_subsystem.dm new file mode 100644 index 000000000000..54fe207c2e01 --- /dev/null +++ b/modular_ss220/title_screen/code/title_screen_subsystem.dm @@ -0,0 +1,77 @@ +/datum/controller/subsystem/title + flags = SS_NO_FIRE + init_order = INIT_ORDER_TITLE + + var/file_path + + /// The current title screen being displayed, as a file path text. + var/current_title_screen + /// The current notice text, or null. + var/current_notice + /// The preamble html that includes all styling and layout. + var/title_html + /// The list of possible title screens to rotate through, as file path texts. + var/title_screens = list() + +/datum/controller/subsystem/title/Initialize() + var/dat + if(!fexists("config/title_html.txt")) + to_chat(world, span_boldwarning("CRITICAL ERROR: Unable to read title_html.txt, reverting to backup title html, please check your server config and ensure this file exists.")) + dat = DEFAULT_TITLE_HTML + else + dat = file2text("config/title_html.txt") + + title_html = dat + + var/list/provisional_title_screens = flist("config/title_screens/images/") + var/list/local_title_screens = list() + + for(var/screen in provisional_title_screens) + var/list/formatted_list = splittext(screen, "+") + if((LAZYLEN(formatted_list) == 1 && (formatted_list[1] != "exclude" && formatted_list[1] != "blank.png"))) + local_title_screens += screen + + if(length(local_title_screens)) + for(var/i in local_title_screens) + var/file_path = "config/title_screens/images/[i]" + ASSERT(fexists(file_path)) + var/icon/title2use = new(fcopy_rsc(file_path)) + title_screens += title2use + + change_title_screen() + +/datum/controller/subsystem/title/Recover() + file_path = SStitle.file_path + + current_title_screen = SStitle.current_title_screen + current_notice = SStitle.current_notice + title_html = SStitle.title_html + title_screens = SStitle.title_screens + +/** + * Show the title screen to all new players. + */ +/datum/controller/subsystem/title/proc/show_title_screen() + for(var/mob/new_player/new_player in GLOB.new_player_list) + INVOKE_ASYNC(new_player, TYPE_PROC_REF(/mob/new_player, show_title_screen)) + +/** + * Adds a notice to the main title screen in the form of big red text! + */ +/datum/controller/subsystem/title/proc/set_notice(new_title) + current_notice = new_title ? sanitize_text(new_title) : null + show_title_screen() + +/** + * Changes the title screen to a new image. + */ +/datum/controller/subsystem/title/proc/change_title_screen(new_screen) + if(new_screen) + current_title_screen = new_screen + else + if(LAZYLEN(title_screens)) + current_title_screen = pick(title_screens) + else + current_title_screen = DEFAULT_TITLE_SCREEN_IMAGE + + show_title_screen() diff --git a/modular_ss220/title_screen/html/browser/FixedsysExcelsior3.01Regular.ttf b/modular_ss220/title_screen/html/browser/FixedsysExcelsior3.01Regular.ttf new file mode 100644 index 000000000000..a4f177c41a89 Binary files /dev/null and b/modular_ss220/title_screen/html/browser/FixedsysExcelsior3.01Regular.ttf differ diff --git a/modular_ss220/title_screen/icons/default.dmi b/modular_ss220/title_screen/icons/default.dmi new file mode 100644 index 000000000000..e8ede9793036 Binary files /dev/null and b/modular_ss220/title_screen/icons/default.dmi differ diff --git a/modular_ss220/title_screen/icons/loading_screen.gif b/modular_ss220/title_screen/icons/loading_screen.gif new file mode 100644 index 000000000000..c8a2c487037b Binary files /dev/null and b/modular_ss220/title_screen/icons/loading_screen.gif differ diff --git a/modular_ss220/unique_objects/_unique_objects.dm b/modular_ss220/unique_objects/_unique_objects.dm new file mode 100644 index 000000000000..0db980179490 --- /dev/null +++ b/modular_ss220/unique_objects/_unique_objects.dm @@ -0,0 +1,4 @@ +/datum/modpack/unique_objects + name = "Unique structures modpack" + desc = "Уникальные структуры и именные объекты." + author = "PhantomRU" diff --git a/modular_ss220/unique_objects/_unique_objects.dme b/modular_ss220/unique_objects/_unique_objects.dme new file mode 100644 index 000000000000..6f29624bf592 --- /dev/null +++ b/modular_ss220/unique_objects/_unique_objects.dme @@ -0,0 +1,4 @@ +#include "_unique_objects.dm" + +#include "code/unique_objects.dm" +#include "code/cheese_statue.dm" diff --git a/modular_ss220/unique_objects/code/cheese_statue.dm b/modular_ss220/unique_objects/code/cheese_statue.dm new file mode 100644 index 000000000000..e54c7df45bd0 --- /dev/null +++ b/modular_ss220/unique_objects/code/cheese_statue.dm @@ -0,0 +1,72 @@ +// =========== statues =========== + +/obj/structure/statue/cheese + name = "cheese statue" + desc = "For squeek enjoyer." + max_integrity = 100 + material_drop_type = /obj/item/stack/sheet/cheese + icon = 'modular_ss220/unique_objects/icons/statue.dmi' + icon_state = "cheesus1" + +/obj/structure/statue/cheese/cheesus + name = "statue of cheesus" + desc = "Cheese expertly crafted into a representation of our mighty lord and saviour." + icon_state = "cheesus1" + +/obj/structure/statue/cheese/cheesus/attackby(obj/item/W, mob/user, params) + switch(obj_integrity) + if(0 to 20) + icon_state = "cheesus4" + if(20 to 40) + icon_state = "cheesus3" + if(40 to 60) + icon_state = "cheesus2" + else + icon_state = "cheesus1" + update_icon(UPDATE_ICON_STATE) + return ..() + +/obj/machinery/reagentgrinder/Initialize(mapload) + . = ..() + LAZYADD(blend_items, list(/obj/item/stack/sheet/cheese = list("milk" = 20))) + +// =========== items =========== + +GLOBAL_LIST_INIT(cheese_recipes, list( + new /datum/stack_recipe("Cheesus statue", /obj/structure/statue/cheese/cheesus, 5, one_per_turf = TRUE, time = 100, on_floor = TRUE), +)) + +/obj/item/stack/sheet/cheese + name = "reinforced cheese" + desc = "A stack of cheese that seems sturdier than regular cheese." + icon = 'modular_ss220/unique_objects/icons/organic.dmi' + icon_state = "sheet-cheese" + item_state = "sheet-cheese" + singular_name = "reinforced cheese block" + sheettype = "cheese" + force = 5 + throwforce = 5 + w_class = WEIGHT_CLASS_NORMAL + throw_speed = 1 + throw_range = 3 + max_amount = 15 + resistance_flags = FLAMMABLE + merge_type = /obj/item/stack/sheet/cheese + +/obj/item/stack/sheet/cheese/Initialize(mapload, new_amount, merge = TRUE) + . = ..() + recipes = GLOB.cheese_recipes + +/obj/item/stack/sheet/cheese/fifteen + amount = 15 + +////////////////////////////////////////// +//Reinforced cheese +////////////////////////////////////////// +/datum/recipe/oven/reinforcedcheese + reagents = list("sodiumchloride" = 10) + items = list( + /obj/item/reagent_containers/food/snacks/sliceable/cheesewheel, + /obj/item/reagent_containers/food/snacks/sliceable/cheesewheel + ) + result = /obj/item/stack/sheet/cheese diff --git a/modular_ss220/unique_objects/code/unique_objects.dm b/modular_ss220/unique_objects/code/unique_objects.dm new file mode 100644 index 000000000000..337ca28dab6d --- /dev/null +++ b/modular_ss220/unique_objects/code/unique_objects.dm @@ -0,0 +1,373 @@ +// =========== statues =========== +/obj/structure/statue/bananium/clown/unique + name = "статуя великого Хонкера" + desc = "Искусно слепленная статуя из бананиума, бананового сока и непонятного белого материала. Судя по его выдающейся улыбки, двум золотым гудкам в руках и наряду, он был лучшим стендапером и шутником на станции. Полное имя, к сожалению плохо читаемо и затерто, похоже кто-то явно завидовал его таланту." + icon = 'modular_ss220/unique_objects/icons/statue.dmi' + icon_state = "clown_unique" + oreAmount = 20 + +/obj/structure/statue/tranquillite/mime/unique + name = "статуя гордости пантомимы" + desc = "Искусно слепленная статуя из транквилиума, если приглядеться, то на статую надета старая униформа мима, перекрашенная под текстуру материала, а рот статуи заклеен скотчем. Похоже кто-то полностью отдавал себя искусству пантомимы. На груди виднеется медаль с еле различимой закрашенной надписью \"За Отвагу\", поверх которой написано \"За Военные Преступления\"." + icon = 'modular_ss220/unique_objects/icons/statue.dmi' + icon_state = "mime_unique" + oreAmount = 20 + +/obj/structure/statue/elwycco + name = "Camper Hunter" + desc = "Похоже это какой-то очень важный человек, или очень значимый для многих людей. Вы замечаете огроменный топор в его руках, с выгравированным числом 220. Что это число значит? Каждый понимает по своему, однако по слухам оно означает количество его жертв. \n Надпись на табличке - Мы с тобой, Шустрила! Аве, Легион!" + icon = 'modular_ss220/unique_objects/icons/statue.dmi' + icon_state = "elwycco" + anchored = TRUE + oreAmount = 0 + +/obj/structure/statue/ell_good + name = "Mr.Буум" + desc = "Загадочный клоун с жёлтым оттенком кожи и выразительными зелёными глазами. Лучший двойной агент синдиката, получивший власть над множеством фасилити. \ + Его имя часто произносят неправильно из-за чего его заслуги по документам принадлежат сразу нескольким Буумам. \ + Так же знаменит тем, что убедил руководство НТ тратить время, силы и средства, на золотой унитаз." + icon = 'modular_ss220/unique_objects/icons/statuelarge.dmi' + icon_state = "ell_good" + pixel_y = 7 + anchored = TRUE + oreAmount = 0 + +/obj/structure/statue/furukai + name = "София Вайт" + desc = "Загадочная девушка, ныне одна из множества офицеров синдиката. Получившая столь высокую позицию не за связи, а за свои способности. \ + Движимая местью за потерю родной сестры из-за коррупционных верхушек Нанотрейзен, она вступила в Синдикат, \ + где стала известна и как способный агент и как отличный инженер. Хоть ее позывной и отсылал на пушистых, в душе она их ненавидела... \ + Но по итогу при смене руководства Синдиката, вскрылись множественные проблемы, скрывающиеся доселе в стенах Синдиката. \ + Буквально в стенах Синдиката. Попавшие под её руководство базы имели очень специфичные методы построек, из-за чего \ + нередко служили причиной их краха. " + icon = 'modular_ss220/unique_objects/icons/statuelarge.dmi' + icon_state = "furukai" + pixel_y = 7 + anchored = TRUE + oreAmount = 0 + +/obj/structure/statue/mooniverse + name = "Неизвестный агент" + desc = "Информация на табличке под статуей исцарапана и нечитабельна... Поверх написано невнятное словосочетание из слов \"Furry\" и \"Universe\"" + icon = 'modular_ss220/unique_objects/icons/statuelarge.dmi' + icon_state = "mooniverse" + pixel_y = 7 + anchored = TRUE + oreAmount = 0 + +/obj/structure/statue/themis + name = "Фемида" + desc = "Статуя древнегреческой богини правосудия." + icon = 'modular_ss220/unique_objects/icons/statuelarge.dmi' + icon_state = "themis" + pixel_y = 7 + anchored = TRUE + oreAmount = 0 + +// Cyberiad statue +/obj/structure/statue/cyberiad + name = "статуя Кибериады" + desc = "Гигантская модель научной станции «Кибериада». Судя по отличиям в конструкции, станцию несколько раз перестраивали." + icon = 'modular_ss220/unique_objects/icons/cyberiad.dmi' + anchored = TRUE + max_integrity = 500 + oreAmount = 0 + +/obj/structure/statue/cyberiad/nw + icon_state = "nw" + density = FALSE + layer = ABOVE_ALL_MOB_LAYER + +/obj/structure/statue/cyberiad/north + icon_state = "north" + density = FALSE + layer = ABOVE_ALL_MOB_LAYER + +/obj/structure/statue/cyberiad/ne + icon_state = "ne" + density = FALSE + layer = ABOVE_ALL_MOB_LAYER + +// Adds transparency when the player gets behind an object, or is near it +/obj/structure/statue/cyberiad/nw/Initialize(mapload) + . = ..() + AddComponent(/datum/component/largetransparency, -3, -2, 6, 4) + +/obj/structure/statue/cyberiad/north/Initialize(mapload) + . = ..() + AddComponent(/datum/component/largetransparency, -3, -2, 6, 4) + +/obj/structure/statue/cyberiad/ne/Initialize(mapload) + . = ..() + AddComponent(/datum/component/largetransparency, -3, -2, 6, 4) + +/obj/structure/statue/cyberiad/w + icon_state = "west" + +/obj/structure/statue/cyberiad/c + icon_state = "center" + +/obj/structure/statue/cyberiad/e + icon_state = "east" + +/obj/structure/statue/cyberiad/sw + icon_state = "sw" + +/obj/structure/statue/cyberiad/s + icon_state = "south" + +/obj/structure/statue/cyberiad/se + icon_state = "se" + +// Delta statue +/obj/structure/statue/delta + name = "статуя Кербероса" + desc = "Гигантская модель научной станции «Керберос». Судя по отличиям в конструкции, станцию несколько раз перестраивали." + icon = 'modular_ss220/unique_objects/icons/delta.dmi' + anchored = TRUE + max_integrity = 500 + oreAmount = 0 + +/obj/structure/statue/delta/nw + icon_state = "nw" + density = FALSE + layer = ABOVE_ALL_MOB_LAYER + +/obj/structure/statue/delta/north + icon_state = "north" + density = FALSE + layer = ABOVE_ALL_MOB_LAYER + +/obj/structure/statue/delta/ne + icon_state = "ne" + density = FALSE + layer = ABOVE_ALL_MOB_LAYER + +// Adds transparency when the player gets behind an object, or is near it +/obj/structure/statue/delta/nw/Initialize(mapload) + . = ..() + AddComponent(/datum/component/largetransparency, -3, -2, 6, 4) + +/obj/structure/statue/delta/north/Initialize(mapload) + . = ..() + AddComponent(/datum/component/largetransparency, -3, -2, 6, 4) + +/obj/structure/statue/delta/ne/Initialize(mapload) + . = ..() + AddComponent(/datum/component/largetransparency, -3, -2, 6, 4) + +/obj/structure/statue/delta/w + icon_state = "west" + +/obj/structure/statue/delta/c + icon_state = "center" + +/obj/structure/statue/delta/e + icon_state = "east" + +/obj/structure/statue/delta/sw + icon_state = "sw" + +/obj/structure/statue/delta/s + icon_state = "south" + +/obj/structure/statue/delta/se + icon_state = "se" + +// =========== items =========== +/obj/item/clothing/head/helmet/skull/Yorick + name = "Йорик" + desc = "Бедный Йорик..." + +/obj/item/bikehorn/rubberducky/captain + name = "уточка-капитан" + desc = "Капитан всех уточек на этой станции. Крайне важная и престижная уточка. Выпущены в ограниченном тираже и только для капитанов. Ценная находка для коллекционеров." + icon = 'modular_ss220/unique_objects/icons/watercloset.dmi' + icon_state = "captain_rubberducky" + item_state = "captain_rubberducky" + +// =========== toilets =========== +/obj/structure/toilet + var/is_nt = FALSE + var/is_final = FALSE + +/obj/structure/toilet/material + name = "Унитаз" + desc = "Особенный унитаз для особенных особ." + icon = 'modular_ss220/unique_objects/icons/watercloset.dmi' + +/obj/structure/toilet/attackby(obj/item/I, mob/living/user, params) + . = ..() + if(try_construct(I, user)) + return TRUE + +/obj/structure/toilet/proc/try_construct(obj/item/I, mob/living/user) + if(!istype(I, /obj/item/stack)) + return FALSE + + if(is_final) + to_chat(user, "Этот унитаз достиг пика великолепия и безвкусия. Нельзя больше улучшить.") + return FALSE + + var/obj/item/stack/M = I + + var/list/possible_materials = list( + /obj/item/stack/sheet/mineral/silver, + /obj/item/stack/sheet/mineral/gold, + /obj/item/stack/ore/bluespace_crystal/refined, + ) + var/is_correct = FALSE + for(var/P in possible_materials) + if(istype(M, P)) + is_correct = TRUE + break + + if(!is_correct) + to_chat(user, "Неподходящий материал для улучшения.") + return FALSE + + var/is_rare = istype(M, /obj/item/stack/ore/bluespace_crystal/refined) + var/need_amount = is_rare ? 2 : 5 + if(M.get_amount() < need_amount) + to_chat(user, "Недостаточно материала, нужно хотя бы [need_amount] шт.") + return FALSE + + switch(type) + if(/obj/structure/toilet) + switch(M.type) + if(/obj/item/stack/sheet/mineral/gold) + construct(M, user, /obj/structure/toilet/material/gold, need_amount) + if(/obj/item/stack/sheet/mineral/silver) + construct(M, user, /obj/structure/toilet/material/captain, need_amount) + if(/obj/item/stack/ore/bluespace_crystal/refined) + construct(M, user, /obj/structure/toilet/material/bluespace, need_amount) + if(/obj/structure/toilet/material/gold) + if(M.type == /obj/item/stack/sheet/mineral/gold) + construct(M, user, /obj/structure/toilet/material/gold/nt, need_amount) + if(/obj/structure/toilet/material/gold/nt) + if(M.type == /obj/item/stack/sheet/mineral/silver) + construct(M, user, /obj/structure/toilet/material/captain, need_amount) + if(/obj/structure/toilet/material/captain) + if(M.type == /obj/item/stack/sheet/mineral/gold) + construct(M, user, /obj/structure/toilet/material/king, need_amount) + if(/obj/structure/toilet/material/king) + if(M.type == /obj/item/stack/sheet/mineral/gold) + construct(M, user, /obj/structure/toilet/material/king/nt, need_amount) + if(/obj/structure/toilet/material/bluespace) + if(M.type == /obj/item/stack/ore/bluespace_crystal/refined) + construct(M, user, /obj/structure/toilet/material/bluespace/nt, need_amount) + else + to_chat(user, "Неподходящая цель для гравировки.") + return TRUE + +/obj/structure/toilet/proc/construct(obj/item/stack/M, mob/living/user, build_type, amount) + if(do_after(user, 2 SECONDS, target = src)) + M.use(amount) + var/obj/structure/T = new build_type(loc) + T.dir = dir + qdel(src) + +/obj/structure/toilet/material/bluespace/update_overlays() + . = ..() + if(open) + . += singulo_layer + +/obj/structure/toilet/material/gold + name = "Золотой унитаз" + desc = "Особенный унитаз для особенных особ." + icon_state = "gold_toilet00" + +/obj/structure/toilet/material/gold/nt + name = "Золотой унитаз Nanotrasen" + desc = "Особенный унитаз для лучших из Nanotrasen." + icon_state = "gold_toilet00-NT" + is_nt = TRUE + +/obj/structure/toilet/material/gold/update_icon_state() + . = ..() + icon_state = "gold_toilet[open][cistern][is_nt ? "-NT" : ""]" + +/obj/structure/toilet/material/captain + name = "Унитаз Капитана" + desc = "Престижное седалище для престижной персоны. Судя по форме, был идеально подготовлен под седальное место Капитана." + icon_state = "captain_toilet00" + +/obj/structure/toilet/material/captain/update_icon_state() + . = ..() + icon_state = "captain_toilet[open][cistern]" + +/obj/structure/toilet/material/king + name = "Королевский Унитаз" + desc = "Только самые снобные снобы и люди не имеющие вкуса будут восседать на этом троне." + icon_state = "king_toilet00" + +/obj/structure/toilet/material/king/nt + name = "Унитаз Верховного Командования Nanotrasen" + desc = "Говорят что на таких восседают самые верховные верхушки которые бы даже не посмотрели на того, кто смог соорудить такую безвкусицу. Но главное - статус!" + icon_state = "king_toilet00-NT" + is_nt = TRUE + is_final = TRUE + +/obj/structure/toilet/material/king/update_icon_state() + . = ..() + icon_state = "king_toilet[open][cistern][is_nt ? "-NT" : ""]" + +//Bluspace Tolkan +/obj/structure/toilet/material/bluespace + name = "Научный унитаз" + desc = "Загадка современной науки о возникновении данного научного экземпляра." + icon_state = "bluespace_toilet00" + var/singulo_layer = "bluespace_toilet_singularity" + var/teleport_sound = 'sound/magic/lightning_chargeup.ogg' + var/tp_range = 1 + +/obj/structure/toilet/material/bluespace/nt + name = "Воронка Бездны Синего Космоса" + desc = "То, ради чего наука и была создана и первый гуманоид ударил палку о камень. Главное не смотреть в бездну." + icon_state = "bluespace_toilet00-NT" + tp_range = 3 + is_nt = TRUE + is_final = TRUE + +/obj/structure/toilet/material/bluespace/emag_act(mob/user) + if(!emagged) + to_chat(user, "Блюспейс начал переливаться красными вкраплениями.") + if(do_after(user, 2 SECONDS, target = src)) + emagged = TRUE + tp_range = initial(tp_range) * 3 + singulo_layer = "bluespace_toilet_singularity-emagged" + update_icon(UPDATE_ICON_STATE) + playsound(src, "sparks", 100, TRUE, SHORT_RANGE_SOUND_EXTRARANGE) + visible_message("Блюспейс начал переливаться словно редспейс.") + +/obj/structure/toilet/material/bluespace/update_icon_state() + . = ..() + icon_state = "bluespace_toilet[open][cistern][is_nt ? "-NT" : ""]" + update_icon(UPDATE_OVERLAYS) + +/obj/structure/toilet/material/bluespace/attack_hand(mob/living/user) + . = ..() + update_icon(UPDATE_OVERLAYS) + if(open) + if(do_after(user, 10 SECONDS, target = src)) + teleport(tp_range) + +/obj/structure/toilet/material/bluespace/proc/teleport(range_dist = 1) + playsound(loc, teleport_sound, 100, 1) + var/ext_range = range_dist * 3 + + var/list/objects = range(range_dist, src) + + var/turf/simulated/floor/F = find_safe_turf(zlevels = src.z) + for(var/mob/living/H in objects) + do_teleport(H, F, H.loc == loc ? 0 : ext_range) + investigate_log("teleported [key_name_log(H)] to [COORD(H)], with range in: [COORD(F)]") + for(var/obj/O in objects) + if(!O.anchored && O.invisibility == 0 && prob(50)) + do_teleport(O, F, O.loc == loc ? 0 : ext_range) + + do_teleport(src, F) + +/obj/structure/toilet/material/bluespace/Destroy() + teleport(tp_range * 3) + . = ..() diff --git a/modular_ss220/unique_objects/icons/cyberiad.dmi b/modular_ss220/unique_objects/icons/cyberiad.dmi new file mode 100644 index 000000000000..37a38cf02cfb Binary files /dev/null and b/modular_ss220/unique_objects/icons/cyberiad.dmi differ diff --git a/modular_ss220/unique_objects/icons/delta.dmi b/modular_ss220/unique_objects/icons/delta.dmi new file mode 100644 index 000000000000..0ed292508122 Binary files /dev/null and b/modular_ss220/unique_objects/icons/delta.dmi differ diff --git a/modular_ss220/unique_objects/icons/organic.dmi b/modular_ss220/unique_objects/icons/organic.dmi new file mode 100644 index 000000000000..d98ffdb94837 Binary files /dev/null and b/modular_ss220/unique_objects/icons/organic.dmi differ diff --git a/modular_ss220/unique_objects/icons/statue.dmi b/modular_ss220/unique_objects/icons/statue.dmi new file mode 100644 index 000000000000..67232df5b137 Binary files /dev/null and b/modular_ss220/unique_objects/icons/statue.dmi differ diff --git a/modular_ss220/unique_objects/icons/statuelarge.dmi b/modular_ss220/unique_objects/icons/statuelarge.dmi new file mode 100644 index 000000000000..7b52b10bcfee Binary files /dev/null and b/modular_ss220/unique_objects/icons/statuelarge.dmi differ diff --git a/modular_ss220/unique_objects/icons/watercloset.dmi b/modular_ss220/unique_objects/icons/watercloset.dmi new file mode 100644 index 000000000000..f8a3ff612be3 Binary files /dev/null and b/modular_ss220/unique_objects/icons/watercloset.dmi differ diff --git a/modular_ss220/vending/code/vending.dm b/modular_ss220/vending/code/vending.dm new file mode 100644 index 000000000000..f9512e0bcda4 --- /dev/null +++ b/modular_ss220/vending/code/vending.dm @@ -0,0 +1,156 @@ +/obj/machinery/economy/vending/nta + name = "NT Ammunition" + desc = "A special equipment vendor." + ads_list = list("Возьми патрон!","Не забывай, снаряжаться - полезно!","Бжж-Бзз-з!.","Обезопасить, Удержать, Сохранить!","Стоять, снярядись на задание!") + icon = 'modular_ss220/vending/icons/vending.dmi' + icon_state = "nta" + icon_deny = "nta_deny" + icon_vend = "nta_vend" + req_access = list(ACCESS_CENT_SECURITY) + resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF | FREEZE_PROOF + refill_canister = /obj/item/vending_refill/nta + products = list( + /obj/item/storage/box/slug = 4, + /obj/item/grenade/flashbang = 4, + /obj/item/flash = 5, + /obj/item/storage/box/buck = 4, + /obj/item/ammo_box/magazine/enforcer = 8, + /obj/item/flashlight/seclite = 4, + /obj/item/restraints/legcuffs/bola/energy = 8, + /obj/item/ammo_box/magazine/enforcer/lethal = 8, + /obj/item/ammo_box/magazine/laser = 12, + /obj/item/ammo_box/magazine/wt550m9 = 8, + /obj/item/storage/box/rubbershot = 4, + /obj/item/ammo_box/magazine/m556/arg = 12, + /obj/item/ammo_box/a40mm = 4, + /obj/item/ammo_box/magazine/smgm9mm = 12) + +/obj/machinery/economy/vending/nta/blue + name = "NT ERT Medium Gear & Ammunition" + desc = "A ERT Medium equipment vendor." + ads_list = list("Круши черепа синдиката!","Не забывай, спасать - полезно!","Бжж-Бзз-з!.","Обезопасить, Удержать, Сохранить!","Стоять, снярядись на задание!") + products = list( + /obj/item/gun/energy/gun = 3, + /obj/item/gun/energy/ionrifle/carbine = 1, + /obj/item/gun/projectile/automatic/lasercarbine = 3, + /obj/item/ammo_box/magazine/laser = 6, + /obj/item/suppressor = 4, + /obj/item/gun/projectile/automatic/wt550 = 3, + /obj/item/ammo_box/magazine/wt550m9 = 6, + /obj/item/gun/projectile/shotgun/riot = 6, + /obj/item/storage/box/rubbershot = 6, + /obj/item/storage/box/beanbag = 4, + /obj/item/storage/box/tranquilizer = 4) + +/obj/machinery/economy/vending/nta/red + name = "NT ERT Heavy Gear & Ammunition" + desc = "A ERT Heavy equipment vendor." + ads_list = list("Круши черепа синдиката!","Не забывай, спасать - полезно!","Бжж-Бзз-з!.","Обезопасить, Удержать, Сохранить!","Стоять, снярядись на задание!") + products = list( + /obj/item/gun/projectile/automatic/proto = 3, + /obj/item/ammo_box/magazine/smgm9mm/ap = 6, + /obj/item/gun/energy/lasercannon = 3, + /obj/item/gun/energy/immolator = 3, + /obj/item/gun/energy/gun/nuclear = 3, + /obj/item/gun/projectile/shotgun/automatic/combat = 3, + /obj/item/storage/box/slug = 4, + /obj/item/storage/box/buck = 4, + /obj/item/storage/box/dragonsbreath = 2, + /obj/item/storage/lockbox/t4 = 3, + /obj/item/grenade/smokebomb = 3, + /obj/item/grenade/frag = 4) + +/obj/machinery/economy/vending/nta/green + name = "NT ERT Light Gear & Ammunition" + desc = "A ERT Light equipment vendor." + ads_list = list("Круши черепа синдиката!","Не забывай, спасать - полезно!","Бжж-Бзз-з!.","Обезопасить, Удержать, Сохранить!","Стоять, снярядись на задание!") + products = list( + /obj/item/restraints/handcuffs = 5, + /obj/item/restraints/handcuffs/cable/zipties = 5, + /obj/item/grenade/flashbang = 3, + /obj/item/flash = 2, + /obj/item/gun/energy/disabler = 4, + /obj/item/gun/projectile/automatic/pistol/enforcer = 6, + /obj/item/ammo_box/magazine/enforcer = 12, + /obj/item/gun/projectile/shotgun/riot = 1, + /obj/item/storage/box/rubbershot = 3) + +/obj/machinery/economy/vending/nta/yellow + name = "NT ERT Death Wish Gear & Ammunition" + desc = "A ERT Death Wish equipment vendor." + ads_list = list("Круши черепа ВСЕХ!","Не забывай, УБИВАТЬ - полезно!","УБИВАТЬ УБИВАТЬ УБИВАТЬ УБИВАТЬ!.","УБИВАТЬ, Удержать, УБИВАТЬ!","Стоять, снярядись на УБИВАТЬ!") + products = list( + /obj/item/gun/projectile/automatic/gyropistol = 8, + /obj/item/ammo_box/magazine/m75 = 12, + /obj/item/gun/projectile/automatic/l6_saw = 6, + /obj/item/ammo_box/magazine/mm556x45/ap = 12, + /obj/item/gun/projectile/automatic/shotgun/bulldog = 6, + /obj/item/gun/energy/xray = 8, + /obj/item/gun/energy/pulse/destroyer/annihilator = 8, + /obj/item/gun/energy/immolator/multi = 8, + /obj/item/gun/energy/bsg/prebuilt/admin = 4, + /obj/item/grenade/clusterbuster/inferno = 3, + /obj/item/grenade/clusterbuster/emp = 3) + +/obj/machinery/economy/vending/nta/medical + name = "NT ERT Medical Gear" + desc = "A ERT medical equipment vendor." + ads_list = list("Лечи раненых от рук синдиката!","Не забывай, лечить - полезно!","Бжж-Бзз-з!.","Перевязать, Оперировать, Выписать!","Стоять, снярядись медикаментами на задание!") + products = list( + /obj/item/storage/firstaid/tactical = 2, + /obj/item/reagent_containers/applicator/dual = 2, + /obj/item/reagent_containers/iv_bag/blood/OMinus = 10, + /obj/item/reagent_containers/iv_bag/blood/vox = 3, + /obj/item/reagent_containers/iv_bag/slime = 3, + /obj/item/reagent_containers/iv_bag/salglu = 3, + /obj/item/storage/belt/medical/surgery/loaded = 2, + /obj/item/storage/belt/medical/response_team = 3, + /obj/item/storage/pill_bottle = 4, + /obj/item/reagent_containers/food/pill/mannitol = 10, + /obj/item/reagent_containers/food/pill/salbutamol = 10, + /obj/item/reagent_containers/food/pill/morphine = 8, + /obj/item/reagent_containers/food/pill/charcoal = 10, + /obj/item/reagent_containers/food/pill/mutadone = 8, + /obj/item/storage/pill_bottle/patch_pack = 4, + /obj/item/reagent_containers/food/pill/patch/silver_sulf = 10, + /obj/item/reagent_containers/food/pill/patch/styptic = 10, + /obj/item/storage/firstaid/surgery = 2, + /obj/item/scalpel/laser = 2, + /obj/item/reagent_containers/applicator/brute = 10, + /obj/item/reagent_containers/applicator/burn = 10, + /obj/item/healthanalyzer/advanced = 5, + /obj/item/roller/holo = 3) + +/obj/machinery/economy/vending/nta/engineer + name = "NT ERT Engineer Gear" + desc = "A ERT engineering equipment vendor." + ads_list = list("Чини станцию от рук синдиката!","Не забывай, чинить - полезно!","Бжж-Бзз-з!.","Починить, Заварить, Трубить!","Стоять, снярядись на починку труб!") + products = list( + /obj/item/storage/belt/utility/chief/full = 2, + /obj/item/clothing/mask/gas/welding = 4, + /obj/item/weldingtool/experimental = 3, + /obj/item/crowbar/power = 3, + /obj/item/screwdriver/power = 3, + /obj/item/extinguisher/mini = 3, + /obj/item/multitool = 3, + /obj/item/rcd/preloaded = 2, + /obj/item/rcd_ammo = 8, + /obj/item/stack/cable_coil = 4) + +/obj/machinery/economy/vending/nta/janitor + name = "NT ERT Janitor Gear" + desc = "A ERT ccleaning equipment vendor." + ads_list = list("Чисть станцию от рук синдиката!","Не забывай, чистить - полезно!","Вилкой чисти!.","Помыть, Постирать, Оттереть!","Стоять, снярядись клинерами!") + products = list( + /obj/item/storage/belt/janitor/full = 2, + /obj/item/clothing/shoes/galoshes = 2, + /obj/item/grenade/chem_grenade/antiweed = 2, + /obj/item/reagent_containers/spray/cleaner = 1, + /obj/item/storage/bag/trash = 2, + /obj/item/storage/box/lights/mixed = 4, + /obj/item/melee/flyswatter= 1, + /obj/item/soap = 2, + /obj/item/grenade/chem_grenade/cleaner = 4, + /obj/item/clothing/mask/gas = 3, + /obj/item/watertank/janitor = 4, + /obj/item/lightreplacer = 2,) diff --git a/modular_ss220/vending/code/vending_items.dm b/modular_ss220/vending/code/vending_items.dm new file mode 100644 index 000000000000..065e0e284250 --- /dev/null +++ b/modular_ss220/vending/code/vending_items.dm @@ -0,0 +1,4 @@ +/obj/item/vending_refill/nta + machine_name = "NT Ammunition" + icon = 'modular_ss220/vending/icons/vending_restock.dmi' + icon_state = "refill_nta" diff --git a/modular_ss220/vending/icons/vending.dmi b/modular_ss220/vending/icons/vending.dmi new file mode 100644 index 000000000000..6c77cb8fe96e Binary files /dev/null and b/modular_ss220/vending/icons/vending.dmi differ diff --git a/modular_ss220/vending/icons/vending_restock.dmi b/modular_ss220/vending/icons/vending_restock.dmi new file mode 100644 index 000000000000..b165222744f3 Binary files /dev/null and b/modular_ss220/vending/icons/vending_restock.dmi differ diff --git a/modular_ss220/vending/vending.dm b/modular_ss220/vending/vending.dm new file mode 100644 index 000000000000..e21255f44dd8 --- /dev/null +++ b/modular_ss220/vending/vending.dm @@ -0,0 +1,4 @@ +/datum/modpack/vendors + name = "Вендоры" + desc = "Новые вендоматы, автоматы и прочие машины выдающие говно." + author = "Aylong220" diff --git a/modular_ss220/vending/vending.dme b/modular_ss220/vending/vending.dme new file mode 100644 index 000000000000..44b3630dafe7 --- /dev/null +++ b/modular_ss220/vending/vending.dme @@ -0,0 +1,4 @@ +#include "vending.dm" + +#include "code/vending.dm" +#include "code/vending_items.dm" diff --git a/modular_ss220/whitelist/_whitelist.dm b/modular_ss220/whitelist/_whitelist.dm new file mode 100644 index 000000000000..3ed35899a634 --- /dev/null +++ b/modular_ss220/whitelist/_whitelist.dm @@ -0,0 +1,8 @@ +/datum/modpack/whitelist + name = "Улучшенный вайтлист" + desc = "Поддержка вайтлиста в бд" + author = "furior" + +/datum/modpack/whitelist/initialize() + load_whitelist() + GLOB.admin_verbs_server |= /client/proc/update_whitelist diff --git a/modular_ss220/whitelist/_whitelist.dme b/modular_ss220/whitelist/_whitelist.dme new file mode 100644 index 000000000000..7d02c00a7c22 --- /dev/null +++ b/modular_ss220/whitelist/_whitelist.dme @@ -0,0 +1,4 @@ +#include "_whitelist.dm" + +#include "code/whitelist.dm" +#include "code/wl_admin.dm" diff --git a/modular_ss220/whitelist/code/whitelist.dm b/modular_ss220/whitelist/code/whitelist.dm new file mode 100644 index 000000000000..3cc3d8847c31 --- /dev/null +++ b/modular_ss220/whitelist/code/whitelist.dm @@ -0,0 +1,55 @@ +/proc/load_whitelist() + if(IsAdminAdvancedProcCall()) + to_chat(usr, span_boldannounce("Whitelist reload blocked: Advanced ProcCall detected")) + return + + if(!GLOB.configuration.overflow.reroute_cap || !SSdbcore.IsConnected()) + return + + var/datum/db_query/whitelist_query = SSdbcore.NewQuery({" + SELECT ckey FROM ckey_whitelist WHERE + is_valid=1 AND port=:port AND date_start<=NOW() AND + (NOW() 2) + layer = LOW_OBJ_LAYER // I wont do such stuff on splicing "reinforcement". Take it as nasty feature + + + //Wire splice can only exist on a cable. Lets try to place it in a good location + if (locate(/obj/structure/cable) in get_turf(src)) //if we're already in a good location, no problem! + return + + //Make a list of turfs with cables in them + var/list/candidates = list() + + //We will give each turf a score to determine its suitability + var/best_score = -INFINITY + for(var/obj/structure/cable/C in range(3, get_turf(src))) + var/turf/simulated/floor/T = get_turf(C) + + //Wire inside a wall? can't splice there + if (!istype(T)) + continue + + //We already checked this one + if (T in candidates) + continue + + var/turf_score = 0 + + //Nobody walks on underplating so we don't want to place traps there + + var/turf/space/W = get_turf(C) + if (!istype(W)) + continue //No traps in space + + /* + //Catwalks are made for walking on, we definitely want traps there + if (locate(/obj/structure/catwalk) in T) + turf_score += 2 + */ + + //If its below the threshold ignore it + if (turf_score < best_score) + continue + + //If it sets a new threshold, discard everything before + else if (turf_score > best_score) + best_score = turf_score + candidates.Cut() + + candidates.Add(T) + + //No nearby cables? Cancel + if (!length(candidates)) + return INITIALIZE_HINT_QDEL + + loc = pick(candidates) + +/obj/structure/wire_splicing/examine(mob/user) + ..() + to_chat(user, "It has [messiness] wire[messiness > 1?"s":""] dangling around.") + +/obj/structure/wire_splicing/Crossed(AM as mob|obj) + . = ..() + if(isliving(AM)) + var/mob/living/L = AM + //var/turf/T = get_turf(src) + var/chance_to_shock = messiness * 10 + /* + if(locate(/obj/structure/catwalk) in T) + chance_to_shock -= 20 + */ + shock(L, chance_to_shock) + +/obj/structure/wire_splicing/proc/shock(mob/user, prb, siemens_coeff = 1) + if(!in_range(src, user))//To prevent TK and mech users from getting shocked + return FALSE + if(!prob(prb)) + return FALSE + var/turf/T = get_turf(src) + var/obj/structure/cable/C = locate(/obj/structure/cable) in T + if(!C) + return FALSE + if (electrocute_mob(user, C.powernet, src, siemens_coeff)) + do_sparks(5, TRUE, src) + return TRUE + else + return FALSE + + +/obj/structure/wire_splicing/attackby(obj/item/I, mob/user, params) + if(I.tool_behaviour == TOOL_WIRECUTTER) + if(I.use_tool(src, user, 2 SECONDS, volume = 50)) + if (shock(user, 50)) + return + user.visible_message("[user] cuts the splicing.", span_notice("You cut the splicing.")) + investigate_log(" was cut by [key_name(usr)] in [AREACOORD(src)]") + qdel(src) + + if(istype(I, /obj/item/stack/cable_coil) && user.a_intent == INTENT_HARM) + var/obj/item/stack/cable_coil/coil = I + if(coil.get_amount() >= 1) + reinforce(user, coil) + +/obj/structure/wire_splicing/proc/reinforce(mob/user, obj/item/stack/cable_coil/coil) + if(messiness >= 10) + to_chat(user,span_warning("You can't seem to jam more cable into the splicing!")) + return + if(!do_after(user, 2 SECONDS, src)) + return + messiness = min(messiness + 1, 10) + investigate_log("wire splicing was reinforced to [messiness] by [key_name(usr)] in [AREACOORD(src)]") + coil.use(1) + if(messiness < 10 && coil.get_amount() >= 1) + reinforce(user, coil) diff --git a/modular_ss220/wire_splicing/wiresplicing.dme b/modular_ss220/wire_splicing/wiresplicing.dme new file mode 100644 index 000000000000..99885b02f32f --- /dev/null +++ b/modular_ss220/wire_splicing/wiresplicing.dme @@ -0,0 +1 @@ +#include "wiresplicing.dm" diff --git a/modular_ss220/world_view_bigger/_world_view_bigger.dm b/modular_ss220/world_view_bigger/_world_view_bigger.dm new file mode 100644 index 000000000000..e78008994207 --- /dev/null +++ b/modular_ss220/world_view_bigger/_world_view_bigger.dm @@ -0,0 +1,4 @@ +/datum/modpack/world_view_bigger + name = "Увеличение world.view" + desc = "Увеличивает игровое значение world.view, что увеличивает дальность слышимости у мобов." + author = "larentoun" diff --git a/modular_ss220/world_view_bigger/_world_view_bigger.dme b/modular_ss220/world_view_bigger/_world_view_bigger.dme new file mode 100644 index 000000000000..0967d4caeada --- /dev/null +++ b/modular_ss220/world_view_bigger/_world_view_bigger.dme @@ -0,0 +1,3 @@ +#include "_world_view_bigger.dm" + +#include "code/world_view_bigger.dm" diff --git a/modular_ss220/world_view_bigger/code/world_view_bigger.dm b/modular_ss220/world_view_bigger/code/world_view_bigger.dm new file mode 100644 index 000000000000..35e30074ddcc --- /dev/null +++ b/modular_ss220/world_view_bigger/code/world_view_bigger.dm @@ -0,0 +1,2 @@ +/world + view = "19x19" // If you ever set this to a non-square value you will need to update a lot of the code! diff --git a/paradise.dme b/paradise.dme index 3c8c7247e707..b7aa1b04f09b 100644 --- a/paradise.dme +++ b/paradise.dme @@ -24,6 +24,9 @@ #include "code\__DEFINES\_protection.dm" #include "code\__DEFINES\_readme.dm" #include "code\__DEFINES\_spacemandmm.dm" +// SS220 ADDITION START : MODPACK TOGGLING +#include "code\__DEFINES\_ss220.dm" +// SS220 ADDITION END #include "code\__DEFINES\_tgs_defines.dm" #include "code\__DEFINES\_tick.dm" #include "code\__DEFINES\_versions.dm" @@ -631,6 +634,7 @@ #include "code\game\gamemodes\game_mode.dm" #include "code\game\gamemodes\intercept_report.dm" #include "code\game\gamemodes\objective.dm" +#include "code\game\gamemodes\objective_holder.dm" #include "code\game\gamemodes\scoreboard.dm" #include "code\game\gamemodes\setupgame.dm" #include "code\game\gamemodes\steal_items.dm" @@ -1490,6 +1494,7 @@ #include "code\modules\awaymissions\mission_code\ruins\derelict5.dm" #include "code\modules\awaymissions\mission_code\ruins\gps_ruin.dm" #include "code\modules\awaymissions\mission_code\ruins\oldstation.dm" +#include "code\modules\awaymissions\mission_code\ruins\processing_facility.dm" #include "code\modules\awaymissions\mission_code\ruins\snowbiodome.dm" #include "code\modules\awaymissions\mission_code\ruins\syndiecakesfactory.dm" #include "code\modules\awaymissions\mission_code\ruins\wizardcrash.dm" @@ -2228,6 +2233,7 @@ #include "code\modules\mob\living\simple_animal\hostile\megafauna\hierophant.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\legion.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\megafauna.dm" +#include "code\modules\mob\living\simple_animal\hostile\mining\abandoned_minebot.dm" #include "code\modules\mob\living\simple_animal\hostile\mining\basilisk.dm" #include "code\modules\mob\living\simple_animal\hostile\mining\goldgrub.dm" #include "code\modules\mob\living\simple_animal\hostile\mining\goliath.dm" @@ -2576,7 +2582,6 @@ #include "code\modules\response_team\ert_outfits.dm" #include "code\modules\ruins\ruin_areas.dm" #include "code\modules\ruins\syndicate_space_base.dm" -#include "code\modules\ruins\lavalandruin_code\animal_hospital.dm" #include "code\modules\ruins\lavalandruin_code\ash_walker_den.dm" #include "code\modules\ruins\lavalandruin_code\clown_planet.dm" #include "code\modules\ruins\lavalandruin_code\dead_ratvar.dm" @@ -2756,3 +2761,6 @@ #include "interface\interface.dm" #include "interface\skin.dmf" // END_INCLUDE + +// SS220 +#include "modular_ss220\modular_ss220.dme" diff --git a/rust_g_ss220.dll b/rust_g_ss220.dll new file mode 100644 index 000000000000..ef1d0ec0bdd5 Binary files /dev/null and b/rust_g_ss220.dll differ diff --git a/sound/creatures/narsie_rises.ogg b/sound/creatures/narsie_rises.ogg new file mode 100644 index 000000000000..ccd10cf115fa Binary files /dev/null and b/sound/creatures/narsie_rises.ogg differ diff --git a/sound/misc/for_the_syndicate.ogg b/sound/misc/for_the_syndicate.ogg new file mode 100644 index 000000000000..95e5421c00a1 Binary files /dev/null and b/sound/misc/for_the_syndicate.ogg differ diff --git a/sound/misc/what_this_button_do.ogg b/sound/misc/what_this_button_do.ogg new file mode 100644 index 000000000000..116d5756f09e Binary files /dev/null and b/sound/misc/what_this_button_do.ogg differ diff --git a/strings/italian_replacement.json b/strings/italian_replacement.json new file mode 100644 index 000000000000..1e1c4e93e774 --- /dev/null +++ b/strings/italian_replacement.json @@ -0,0 +1,74 @@ +{ + + "italian": { + "ассистент": "головорез", + "ассистентская": "притон головорезов", + "ассистентской": "притоне головорезов", + "ребенок": [ + "ребячино", + "маленькая сосисочка" + ], + "плохой": "молто мале", + "плохо": "молто мале", + "пока": [ + "чао", + "арривидерчи" + ], + "прощай": [ + "чао", + "арривидерчи" + ], + "капитан": "капитано", + "сыр": [ + "пармезан", + "горгондзол" + ], + "повар": "кучинаре", + "папа": "паппа", + "отец": "паппа", + "враги": "немичи", + "враг": "немиго", + "друзья": "амичи", + "друг": "амиго", + "дормы": [ + "дормиторио", + "притон" + ], + "хорошо": "молто бене", + "хороший": "молто бене", + "хай": [ + "чао", + "бонжорно" + ], + "привет": [ + "чао", + "бонжорно" + ], + "здравствуйте": [ + "чао", + "бонжорно" + ], + "здравствуй": [ + "чао", + "бонжорно" + ], + "сделай": "сделай да", + "мясо": [ + "пепперони", + "ветчина да" + ], + "мама": "мамма", + "оперативник": "грек", + "оперативники": "греки", + "сбшники": "полицаи", + "сбшник": "полицай", + "сб": "полиция", + "спагетти": "СПАГЕТТ", + "острый": "да острый", + "остро": "да остро", + "спасибо": "грасиас", + "предатель": "мафиози", + "трейтор": "мафиози", + "тритор": "мафиози" + } +} diff --git a/strings/new_space_laws.txt b/strings/new_space_laws.txt new file mode 100644 index 000000000000..8cf1b9e3a93b --- /dev/null +++ b/strings/new_space_laws.txt @@ -0,0 +1,59 @@ +красные цвета +зелёные цвета +голубые цвета +оранжевые цвета +розовые цвета +серые цвета +яркие цвета +дормы +туалеты +вера и религия +атеизм и агностицизм +бездельничество и лень +отсутствие надлежащей гигиены +головные уборы +обувь со шнурками +верхняя одежда, не являющаяся скафандром +юбки и шорты +цветные ручки +длинные волосы +короткие волосы +укрепленные окна +плитки с цветными узорами +содержание мартышек +неопределившиеся и безработные ассистенты +наличие у экипажа ног и рук органического происхождения +наличие высокой квалификации у экипажа +наличие горючих и взрывчатых веществ на станции +средства передвижения, содержащие одно колесо, или более +моющие средства, содержащие этанол +алкогольные напитки +безалкогольные напитки +напитки без сахара +еда с пряностями +жаренная еда +вкусная еда +импортные вещи +бесплатные вещи +платные вещи +смешные клоуны +не говорящие мимы +роботы, не обладающие разумом и самопознанием +существа, владеющие суммой денег более 500$ +не ношение головного убора и перчаток +торговые автоматы +каждые последующие законы ИИ после второго закона +опыты над любыми живыми существами, без присутствия священнослужителя и надлежащих похорон +развлечения +слабые и ограниченные в мышлении +наличие высокого интеллекта +смерть +не исполнение воинского приветствия капитаном перед членами экипажа +отделы, управляемые главами отделов, или капитаном +отделы, не обладающие широкой иерархической цепочкой +отсутствие личного приветствия со стороны глав отделов каждого члена экипажа, посещающего отдел +деятельность глав отделов, не уделяющих должного внимания патриотическому воспитанию своих сотрудников во славу Нанотрейзен +отсутствие подарков для посетителей отдела (включая обращение на стойке) +отсутствие памятной монеты в честь открытия высокотехнологичного центра разработок «Райская станция» на Марсе у представителей Нанотрейзен на станциях +отсутствие высшего образования от аккредитованного университета Нанотрейзен у представителей службы безопасности +отсутствие у каждого члена экипажа личных средств гигиены diff --git a/tgui/.eslintrc-harder.yml b/tgui/.eslintrc-harder.yml index eb06f5b33db9..75399d2677f0 100644 --- a/tgui/.eslintrc-harder.yml +++ b/tgui/.eslintrc-harder.yml @@ -4,11 +4,6 @@ rules: ## Enforce consistent brace style for blocks brace-style: [error, stroustrup, { allowSingleLine: false }] ## Enforce the consistent use of either backticks, double, or single quotes - quotes: [error, single, { - avoidEscape: true, - allowTemplateLiterals: true, - }] - react/jsx-closing-bracket-location: [error, { - selfClosing: after-props, - nonEmpty: after-props, - }] + quotes: [error, single, { avoidEscape: true, allowTemplateLiterals: true }] + react/jsx-closing-bracket-location: + [error, { selfClosing: after-props, nonEmpty: after-props }] diff --git a/tgui/.eslintrc.yml b/tgui/.eslintrc.yml index d73592fe8f3c..34a47789fba3 100644 --- a/tgui/.eslintrc.yml +++ b/tgui/.eslintrc.yml @@ -1,4 +1,4 @@ -parser: "@babel/eslint-parser" +parser: '@babel/eslint-parser' parserOptions: ecmaVersion: 2019 sourceType: module @@ -16,7 +16,6 @@ settings: react: version: '16.10' rules: - ## Possible Errors ## ---------------------------------------- @@ -370,10 +369,10 @@ rules: ## Enforce a maximum line length #max-len: [error, { # code: 80, - ## Ignore imports - #ignorePattern: '^(import\s.+\sfrom\s|.*require\()', - #ignoreUrls: true, - #ignoreRegExpLiterals: true, + ## Ignore imports + #ignorePattern: '^(import\s.+\sfrom\s|.*require\()', + #ignoreUrls: true, + #ignoreRegExpLiterals: true, #}] ## Enforce a maximum number of lines per file # max-lines: error diff --git a/tgui/.prettierignore b/tgui/.prettierignore new file mode 100644 index 000000000000..aafde4f3b8b6 --- /dev/null +++ b/tgui/.prettierignore @@ -0,0 +1,2 @@ +# Ignore built packages: +packages/tgui/public diff --git a/tgui/.prettierrc.yml b/tgui/.prettierrc.yml index fe51f01cc4db..2911fcd522dd 100644 --- a/tgui/.prettierrc.yml +++ b/tgui/.prettierrc.yml @@ -1,7 +1,6 @@ arrowParens: always bracketSpacing: true endOfLine: lf -jsxBracketSameLine: true jsxSingleQuote: false printWidth: 80 proseWrap: preserve diff --git a/tgui/README.md b/tgui/README.md index 5ddeb18fdda7..66e4868a0832 100644 --- a/tgui/README.md +++ b/tgui/README.md @@ -27,7 +27,7 @@ API to React. Take your time to read these guides: - [React guide](https://reactjs.org/docs/hello-world.html) - [Inferno documentation](https://infernojs.org/docs/guides/components) - -highlights differences with React. + highlights differences with React. If you were already familiar with an older, Ractive-based tgui, and want to translate concepts between old and new tgui, read this @@ -62,23 +62,23 @@ Run one of the following: - `bin/tgui` - build the project in production mode. - `bin/tgui --dev` - launch a development server. - tgui development server provides you with incremental compilation, - hot module replacement and logging facilities in all running instances - of tgui. In short, this means that you will instantly see changes in the - game as you code it. Very useful, highly recommended. + hot module replacement and logging facilities in all running instances + of tgui. In short, this means that you will instantly see changes in the + game as you code it. Very useful, highly recommended. - In order to use it, you should start the game server first, connect to it - and wait until the world has been properly loaded and you are no longer - in the lobby. Start tgui dev server. You'll know that it's hooked correctly - if data gets dumped to the log when tgui windows are opened. + and wait until the world has been properly loaded and you are no longer + in the lobby. Start tgui dev server. You'll know that it's hooked correctly + if data gets dumped to the log when tgui windows are opened. - `bin/tgui --dev --reload` - reload byond cache once. - `bin/tgui --dev --debug` - run server with debug logging enabled. - `bin/tgui --dev --no-hot` - disable hot module replacement (helps when -doing development on IE8). + doing development on IE8). - `bin/tgui --lint` - show problems with the code. - `bin/tgui --lint --fix` - auto-fix problems with the code. - `bin/tgui --analyze` - run a bundle analyzer. - `bin/tgui --clean` - clean up project repo. - `bin/tgui [webpack options]` - build the project with custom webpack -options. + options. **For everyone else:** @@ -138,7 +138,7 @@ Press `Ctrl+Alt+=` to open the KitchenSink interface. This interface is a playground to test various tgui components. **Layout Debugger.** -Press `Ctrl+Alt+-` to toggle the *layout debugger*. It will show outlines of +Press `Ctrl+Alt+-` to toggle the _layout debugger_. It will show outlines of all tgui elements, which makes it easy to understand how everything comes together, and can reveal certain layout bugs which are not normally visible. @@ -149,30 +149,30 @@ together, and can reveal certain layout bugs which are not normally visible. - `/packages/tgui/index.js` - Application entry point. - `/packages/tgui/components` - Basic UI building blocks. - `/packages/tgui/interfaces` - Actual in-game interfaces. -Interface takes data via the `state` prop and outputs an html-like stucture, -which you can build using existing UI components. + Interface takes data via the `state` prop and outputs an html-like stucture, + which you can build using existing UI components. - `/packages/tgui/layouts` - Root level UI components, that affect the final -look and feel of the browser window. They usually hold various window -elements, like the titlebar and resize handlers, and control the UI theme. + look and feel of the browser window. They usually hold various window + elements, like the titlebar and resize handlers, and control the UI theme. - `/packages/tgui/routes.js` - This is where tgui decides which interface to -pull and render. + pull and render. - `/packages/tgui/layout.js` - A root-level component, holding the -window elements, like the titlebar, buttons, resize handlers. Calls -`routes.js` to decide which component to render. + window elements, like the titlebar, buttons, resize handlers. Calls + `routes.js` to decide which component to render. - `/packages/tgui/styles/main.scss` - CSS entry point. - `/packages/tgui/styles/functions.scss` - Useful SASS functions. -Stuff like `lighten`, `darken`, `luminance` are defined here. + Stuff like `lighten`, `darken`, `luminance` are defined here. - `/packages/tgui/styles/atomic` - Atomic CSS classes. -These are very simple, tiny, reusable CSS classes which you can use and -combine to change appearance of your elements. Keep them small. + These are very simple, tiny, reusable CSS classes which you can use and + combine to change appearance of your elements. Keep them small. - `/packages/tgui/styles/components` - CSS classes which are used -in UI components. These stylesheets closely follow the -[BEM](https://en.bem.info/methodology/) methodology. + in UI components. These stylesheets closely follow the + [BEM](https://en.bem.info/methodology/) methodology. - `/packages/tgui/styles/interfaces` - Custom stylesheets for your interfaces. -Add stylesheets here if you really need a fine control over your UI styles. + Add stylesheets here if you really need a fine control over your UI styles. - `/packages/tgui/styles/layouts` - Layout-related styles. - `/packages/tgui/styles/themes` - Contains all the various themes you can -use in tgui. Each theme must be registered in `webpack.config.js` file. + use in tgui. Each theme must be registered in `webpack.config.js` file. ## Component Reference @@ -180,7 +180,7 @@ See: [Component Reference](docs/component-reference.md). ## License -All code is licensed with the parent license of *tgstation*, **AGPL-3.0**. +All code is licensed with the parent license of _tgstation_, **AGPL-3.0**. See the main [README](../README.md) for more details. diff --git a/tgui/babel.config.js b/tgui/babel.config.js index 09fc48d03bd8..d83569ca2fe2 100644 --- a/tgui/babel.config.js +++ b/tgui/babel.config.js @@ -4,24 +4,30 @@ * @license MIT */ -const createBabelConfig = options => { +const createBabelConfig = (options) => { const { presets = [], plugins = [], removeConsole } = options; return { presets: [ - [require.resolve('@babel/preset-env'), { - modules: 'commonjs', - useBuiltIns: 'entry', - corejs: '3', - spec: false, - loose: true, - targets: [], - }], + [ + require.resolve('@babel/preset-env'), + { + modules: 'commonjs', + useBuiltIns: 'entry', + corejs: '3', + spec: false, + loose: true, + targets: [], + }, + ], ...presets, ].filter(Boolean), plugins: [ - [require.resolve('@babel/plugin-proposal-class-properties'), { - loose: true, - }], + [ + require.resolve('@babel/plugin-proposal-class-properties'), + { + loose: true, + }, + ], require.resolve('@babel/plugin-transform-jscript'), require.resolve('babel-plugin-inferno'), removeConsole && require.resolve('babel-plugin-transform-remove-console'), @@ -31,7 +37,7 @@ const createBabelConfig = options => { }; }; -module.exports = api => { +module.exports = (api) => { api.cache(true); const mode = process.env.NODE_ENV; return createBabelConfig({ mode }); diff --git a/tgui/bin/tgui-formatting.bat b/tgui/bin/tgui-formatting.bat new file mode 100644 index 000000000000..1fe87c1bf4c8 --- /dev/null +++ b/tgui/bin/tgui-formatting.bat @@ -0,0 +1,5 @@ +@echo off +cd "%~dp0\.." +call yarn install +call yarn prettier --write +timeout /t 9 diff --git a/tgui/docs/component-reference.md b/tgui/docs/component-reference.md index b853fee4de37..c892cb628be9 100644 --- a/tgui/docs/component-reference.md +++ b/tgui/docs/component-reference.md @@ -65,16 +65,16 @@ Event handlers are callbacks that you can attack to various element to listen for browser events. Inferno supports camelcase (`onClick`) and lowercase (`onclick`) event names. -- Camel case names are what's called *synthetic* events, and are the -**preferred way** of handling events in React, for efficiency and -performance reasons. Please read -[Inferno Event Handling](https://infernojs.org/docs/guides/event-handling) -to understand what this is about. +- Camel case names are what's called _synthetic_ events, and are the + **preferred way** of handling events in React, for efficiency and + performance reasons. Please read + [Inferno Event Handling](https://infernojs.org/docs/guides/event-handling) + to understand what this is about. - Lower case names are native browser events and should be used sparingly, -for example when you need an explicit IE8 support. **DO NOT** use -lowercase event handlers unless you really know what you are doing. + for example when you need an explicit IE8 support. **DO NOT** use + lowercase event handlers unless you really know what you are doing. - [Button](#button) component does not support the lowercase `onclick` event. -Use the camel case `onClick` instead. + Use the camel case `onClick` instead. ## `tgui/components` @@ -86,13 +86,13 @@ This component provides animations for numeric values. - `value: number` - Value to animate. - `initial: number` - Initial value to use in animation when element -first appears. If you set initial to `0` for example, number will always -animate starting from `0`, and if omitted, it will not play an initial -animation. + first appears. If you set initial to `0` for example, number will always + animate starting from `0`, and if omitted, it will not play an initial + animation. - `format: value => value` - Output formatter. - Example: `value => Math.round(value)`. - `children: (formattedValue, rawValue) => any` - Pull the animated number to -animate more complex things deeper in the DOM tree. + animate more complex things deeper in the DOM tree. - Example: `(_, value) => ` ### `BlockQuote` @@ -128,9 +128,7 @@ To workaround this problem, the Box children accept a render props function. This way, `Button` can pull out the `className` generated by the `Box`. ```jsx - - {props => + } + > + + + {emotes + .filter(emote => emote.key && + (searchText.length > 0 ? (emote.key.toLowerCase().includes(searchText.toLowerCase()) || emote.name.toLowerCase().includes(searchText.toLowerCase())) : true) && + (filterVisible ? emote.visible : true) && + (filterAudible ? emote.audible : true) && + (filterSound ? emote.sound : true) && + (filterHands ? emote.hands : true) && + (filterTargettable ? emote.targettable : true)) + .map((emote) => + + )} + + + + + ); +}; diff --git a/tgui/packages/tgui/interfaces/GeneModder.js b/tgui/packages/tgui/interfaces/GeneModder.js index cdc1b5e23c89..2b2712e2621c 100644 --- a/tgui/packages/tgui/interfaces/GeneModder.js +++ b/tgui/packages/tgui/interfaces/GeneModder.js @@ -1,13 +1,14 @@ -import { useBackend } from "../backend"; +import { useBackend } from '../backend'; import { Button, Section, Flex, Icon, Collapsible, - LabeledList } from "../components"; + LabeledList, +} from '../components'; import { ComplexModal } from '../interfaces/common/ComplexModal'; -import { Window } from "../layouts"; +import { Window } from '../layouts'; export const GeneModder = (props, context) => { const { data } = useBackend(context); @@ -18,11 +19,7 @@ export const GeneModder = (props, context) => { - {has_seed === 0 ? ( - - ) : ( - - )} + {has_seed === 0 ? : } ); @@ -43,10 +40,11 @@ const Genes = (props, context) => { icon="arrow-circle-down" onClick={() => act('insert')} /> - }> - - - + } + > + + + ); }; @@ -60,12 +58,10 @@ const MissingSeed = (props, context) => { grow="1" textAlign="center" align="center" - color="green"> -
+ color="green" + > + +
The plant DNA manipulator is missing a seed. @@ -75,66 +71,53 @@ const MissingSeed = (props, context) => { const Storage = (props, context) => { const { act, data } = useBackend(context); - const { - has_seed, - seed, - has_disk, - disk - } = data; + const { has_seed, seed, has_disk, disk } = data; let show_seed; let show_disk; - if(has_seed) { - show_seed = - - -
@@ -473,8 +503,8 @@ const ParametersSection = (props, context) => { const status = malfunctioning ? 'Malfunctioning' : active - ? 'Active' - : 'Inactive'; + ? 'Active' + : 'Inactive'; return (
@@ -486,7 +516,8 @@ const ParametersSection = (props, context) => { content={active ? 'Deactivate' : 'Activate'} onClick={() => act('activate')} /> - }> + } + > {status} { content={locked ? 'Unlock' : 'Lock'} onClick={() => act('lock')} /> - }> + } + > {locked ? 'Locked' : 'Unlocked'} @@ -577,7 +609,7 @@ const InfoSection = (props, context) => { return (
- + {(info_modules.length !== 0 && info_modules.map((module) => { const Module = ID2MODULE[module.id]; @@ -596,7 +628,11 @@ const InfoSection = (props, context) => { const ModuleSection = (props, context) => { const { act, data } = useBackend(context); const { complexity_max, modules } = data; - const [configureState, setConfigureState] = useLocalState(context, 'module_configuration', null); + const [configureState, setConfigureState] = useLocalState( + context, + 'module_configuration', + null + ); return (
@@ -730,7 +766,7 @@ export const MODsuitContent = (props, context) => { return (
{(!!interface_break && ) || ( - + @@ -753,9 +789,7 @@ export const MODsuit = (props, context) => { const { act, data } = useBackend(context); const { ui_theme, interface_break } = data; return ( - + diff --git a/tgui/packages/tgui/interfaces/MedicalRecords.js b/tgui/packages/tgui/interfaces/MedicalRecords.js index 81c68968c7cb..34bc43ec6af5 100644 --- a/tgui/packages/tgui/interfaces/MedicalRecords.js +++ b/tgui/packages/tgui/interfaces/MedicalRecords.js @@ -10,7 +10,7 @@ import { Section, Tabs, Flex, - Table + Table, } from '../components'; import { ComplexModal, @@ -233,7 +233,8 @@ const MedicalRecordsView = (_properties, context) => { ml="0.5rem" onClick={() => act('print_record')} /> - }> + } + >
{ content="Delete Medical Record" onClick={() => act('del_med_record')} /> - }> + } + >
@@ -345,7 +347,8 @@ const MedicalRecordsViewMedical = (_properties, context) => { content="Add Entry" onClick={() => modalOpen(context, 'add_comment')} /> - }> + } + > {medical.comments.length === 0 ? ( No comments found. ) : ( @@ -375,62 +378,58 @@ const MedicalRecordsViruses = (_properties, context) => { const { virus } = data; const [searchText, setSearchText] = useLocalState(context, 'searchText', ''); const [sortId2, _setSortId2] = useLocalState(context, 'sortId2', 'name'); - const [sortOrder2, _setSortOrder2] = useLocalState(context, 'sortOrder2', true); - return( - - - - setSearchText(value)} - /> - - -
- - - Name - Max Stages - Severity - - {virus - .filter( - createSearch(searchText, (vir) => { - return ( - vir.name + - '|' + - vir.max_stages + - '|' + - vir.severity - ); + const [sortOrder2, _setSortOrder2] = useLocalState( + context, + 'sortOrder2', + true + ); + return ( + + + + setSearchText(value)} + /> + + +
+
+ + Name + Max Stages + Severity + + {virus + .filter( + createSearch(searchText, (vir) => { + return vir.name + '|' + vir.max_stages + '|' + vir.severity; + }) + ) + .sort((a, b) => { + const i = sortOrder2 ? 1 : -1; + return a[sortId2].localeCompare(b[sortId2]) * i; }) - ) - .sort((a, b) => { - const i = sortOrder2 ? 1 : -1; - return a[sortId2].localeCompare(b[sortId2]) * i; - }) - .map((vir) => ( - act('vir', { vir: vir.D })} - > - - {vir.name} - - {vir.max_stages} - - {vir.severity} - - - ))} -
-
-
- ) + .map((vir) => ( + act('vir', { vir: vir.D })} + > + + {vir.name} + + {vir.max_stages} + + {vir.severity} + + + ))} + +
+
+ ); }; const MedicalRecordsMedbots = (_properties, context) => { @@ -439,7 +438,7 @@ const MedicalRecordsMedbots = (_properties, context) => { if (medbots.length === 0) { return There are no Medibots.; } - return( + return (
@@ -449,31 +448,33 @@ const MedicalRecordsMedbots = (_properties, context) => { StatusChemicals - {medbots - .map((medbot) => ( - - - {medbot.name} - - {medbot.area || 'Unknown'} ({medbot.x}, {medbot.y}) - {medbot.on - ? (Online) - : (Offline)} - - - {medbot.use_beaker - ? 'Reservoir: ' + - medbot.total_volume + - '/' + - medbot.maximum_volume - : 'Using internal synthesizer'} - - + {medbots.map((medbot) => ( + + + {medbot.name} + + + {medbot.area || 'Unknown'} ({medbot.x}, {medbot.y}) + + + {medbot.on ? ( + Online + ) : ( + Offline + )} + + + {medbot.use_beaker + ? 'Reservoir: ' + + medbot.total_volume + + '/' + + medbot.maximum_volume + : 'Using internal synthesizer'} + + ))}
@@ -510,7 +511,11 @@ const SortButton = (properties, context) => { const SortButton2 = (properties, context) => { const [sortId2, setSortId2] = useLocalState(context, 'sortId2', 'name'); - const [sortOrder2, setSortOrder2] = useLocalState(context, 'sortOrder2', true); + const [sortOrder2, setSortOrder2] = useLocalState( + context, + 'sortOrder2', + true + ); const { id, children } = properties; return ( @@ -542,34 +547,38 @@ const MedicalRecordsNavigation = (_properties, context) => { {act('screen', { screen: 2 })}} + onClick={() => { + act('screen', { screen: 2 }); + }} > - + List Records {act('screen', { screen: 5 })}} + onClick={() => { + act('screen', { screen: 5 }); + }} > - + Virus Database act('screen', { screen: 6 })} > - + Medibot Tracking {screen === 3 && ( - + Record Maintenance )} {screen === 4 && general && !general.empty && ( - + Record: {general.fields[0].value} )} diff --git a/tgui/packages/tgui/interfaces/MerchVendor.js b/tgui/packages/tgui/interfaces/MerchVendor.js index 36b100028bd4..2f79f79f93f0 100644 --- a/tgui/packages/tgui/interfaces/MerchVendor.js +++ b/tgui/packages/tgui/interfaces/MerchVendor.js @@ -6,9 +6,7 @@ import { Window } from '../layouts'; const VendingRow = (props, context) => { const { act, data } = useBackend(context); const { product, productImage, productCategory } = props; - const { - user_money, - } = data; + const { user_money } = data; return ( @@ -30,9 +28,10 @@ const VendingRow = (props, context) => { icon="shopping-cart" content={product.price} textAlign="left" - onClick={() => act('purchase', { + onClick={() => + act('purchase', { 'name': product.name, - 'category' : productCategory, + 'category': productCategory, }) } /> @@ -44,12 +43,9 @@ const VendingRow = (props, context) => { const MerchProducts = (props, context) => { const { data } = useBackend(context); const [tabIndex] = useLocalState(context, 'tabIndex', 1); - const { - products, - imagelist, - } = data; + const { products, imagelist } = data; - const categories = ["apparel", "toy", "decoration"]; + const categories = ['apparel', 'toy', 'decoration']; return ( @@ -67,28 +63,27 @@ const MerchProducts = (props, context) => { export const MerchVendor = (props, context) => { const { act, data } = useBackend(context); - const { - user_cash, - inserted_cash, - } = data; + const { user_cash, inserted_cash } = data; return (
- Doing your job and not getting any recognition at work? Well, welcome to the - merch shop! Here, you can buy cool things in exchange for money you earn when you have - completed your Job Objectives. + Doing your job and not getting any recognition at work? Well, + welcome to the merch shop! Here, you can buy cool things in exchange + for money you earn when you have completed your Job Objectives. - {user_cash !== null && + {user_cash !== null && ( Your balance is {user_cash ? user_cash : 0} credits. - } + )} - There is {inserted_cash} credits inserted. + + There is {inserted_cash} credits inserted. +
- - + +
@@ -114,20 +108,14 @@ export const MerchVendor = (props, context) => { const MerchVendorNavigation = (properties, context) => { const { data } = useBackend(context); const [tabIndex, setTabIndex] = useLocalState(context, 'tabIndex', 1); - const { - login_state, - } = data + const { login_state } = data; return ( - setTabIndex(1)}> + setTabIndex(1)}> Toys - setTabIndex(2)}> + setTabIndex(2)}> Decorations diff --git a/tgui/packages/tgui/interfaces/ModpacksList.js b/tgui/packages/tgui/interfaces/ModpacksList.js new file mode 100644 index 000000000000..198329e19bc3 --- /dev/null +++ b/tgui/packages/tgui/interfaces/ModpacksList.js @@ -0,0 +1,84 @@ +import { useBackend, useLocalState } from '../backend'; +import { Window } from '../layouts'; +import { Section, Input, Flex, Collapsible } from '../components'; + +export const ModpacksList = (props, context) => { + return ( + + + + + + ); +}; + +export const ModpacksListContent = (props, context) => { + const { act, data } = useBackend(context); + const { modpacks } = data; + + const [searchText, setSearchText] = useLocalState( + context, + 'searchText', + '' + ); + + const searchBar = ( + setSearchText(value)} + /> + ); + + return ( +
+
+ {searchBar} +
+
0 + ? `Результаты поиска "${searchText}"` + : `Все модификации` + } + fill + > + + + {modpacks + .filter(modpack => modpack.name && + (searchText.length > 0 ? + (modpack.name.toLowerCase().includes(searchText.toLowerCase()) || + modpack.desc.toLowerCase().includes(searchText.toLowerCase()) || + modpack.author.toLowerCase().includes(searchText.toLowerCase()) + ) : true)) + .map((modpack) => + +
+ {modpack.author} +
+
+ {modpack.desc} +
+
+ )} +
+
+
+
+ ); +}; diff --git a/tgui/packages/tgui/interfaces/NTRecruiter.js b/tgui/packages/tgui/interfaces/NTRecruiter.js index 975fd6f61fd9..0e6ed660290b 100644 --- a/tgui/packages/tgui/interfaces/NTRecruiter.js +++ b/tgui/packages/tgui/interfaces/NTRecruiter.js @@ -9,119 +9,132 @@ export const NTRecruiter = (props, context) => { gamestatus, cand_name, cand_gender, - cand_age, - cand_species, - cand_planet, - cand_job, - cand_records, - cand_curriculum, + cand_age, + cand_species, + cand_planet, + cand_job, + cand_records, + cand_curriculum, + total_curriculums, reason, } = data; if (gamestatus === 0) { - return ( - - -
- - - Nanotrasen Recruiter Simulator - - - Work as the Nanotrasen recruiter and avoid hiring incompetent employees! - - -
-
-
- )} - if (gamestatus === 1) { - return ( - - -
+ +
+ + + Nanotrasen Recruiter Simulator + + + Work as the Nanotrasen recruiter and avoid hiring incompetent + employees! + + +
-
- - )} - if (gamestatus === 2) { +
+
+
+ ); + } + if (gamestatus === 1) { + return ( + + +
act('back_to_menu')} + /> + } + > + + + To win this game you must hire/dismiss {total_curriculums} candidates, + one wrongly made choice leads to a game over. + + + Make the right choice by truly putting yourself into the skin of + a recruiter working for Nanotrasen! + + + Unique characters may appear, pay attention to them! + + + Make sure to pay attention to details like age, planet names, + the requested job and even the species of the candidate! + + + Not every employment record is good, remember to make your + choice based on the company morals! + + + The planet of origin has no restriction on the species of the + candidate, don't think too much when you see humans that + came from Boron! + + + Pay attention to typos and missing words, these do + make for bad applications! + + + Remember, you are recruiting people to work at one of the many + NT stations, so no hiring for jobs that they{' '} + don't offer! + + + Keep your eyes open for incompatible naming schemes, no + company wants a Vox named Joe! + + +
+
+
+ ); + } + if (gamestatus === 2) { return ( - - -
- - Candidate Number #{cand_curriculum} - -
+ + +
+ + Candidate Number #{cand_curriculum} + +
{cand_name} @@ -145,59 +158,68 @@ export const NTRecruiter = (props, context) => { {cand_records} -
-
-
-
-
- )} - if (gamestatus === 3) { - return ( - - -
- - {"Game Over"} - - - {reason} - - - FINAL SCORE: {cand_curriculum-1}/5 - - +
+
-
-
- )}} +
+
+
+ ); + } + if (gamestatus === 3) { + return ( + + +
+ + {'Game Over'} + + + {reason} + + + FINAL SCORE: {cand_curriculum - 1}/{total_curriculums} + + +
+
+
+ ); + } +}; diff --git a/tgui/packages/tgui/interfaces/Newscaster.js b/tgui/packages/tgui/interfaces/Newscaster.js index 049bea1b9659..52a438887fa3 100644 --- a/tgui/packages/tgui/interfaces/Newscaster.js +++ b/tgui/packages/tgui/interfaces/Newscaster.js @@ -449,7 +449,7 @@ const NewscasterJobs = (properties, context) => { const Story = (properties, context) => { const { act, data } = useBackend(context); const { story, wanted = false } = properties; - const {is_admin} = data; + const { is_admin } = data; const [fullStories, setFullStories] = useLocalState( context, 'fullStories', @@ -492,10 +492,7 @@ const Story = (properties, context) => { {story.author} |  {!!is_admin && ( - - ckey: {story.author_ckey}{' '} - |  - + ckey: {story.author_ckey} |  )} {!wanted && ( diff --git a/tgui/packages/tgui/interfaces/Orbit.js b/tgui/packages/tgui/interfaces/Orbit.js index 56f71b5f2a98..148a06ac8707 100644 --- a/tgui/packages/tgui/interfaces/Orbit.js +++ b/tgui/packages/tgui/interfaces/Orbit.js @@ -89,7 +89,17 @@ const OrbitedButton = (props, context) => { export const Orbit = (props, context) => { const { act, data } = useBackend(context); - const { alive, antagonists, highlights, response_teams, auto_observe, dead, ghosts, misc, npcs } = data; + const { + alive, + antagonists, + highlights, + response_teams, + auto_observe, + dead, + ghosts, + misc, + npcs, + } = data; const [searchText, setSearchText] = useLocalState(context, 'searchText', ''); @@ -162,7 +172,11 @@ export const Orbit = (props, context) => { {antagonists.length > 0 && (
{sortedAntagonists.map(([name, antags]) => ( -
+
{antags .filter(searchFor(searchText)) .sort(compareNumberedText) @@ -180,7 +194,7 @@ export const Orbit = (props, context) => { searchText={searchText} color={'teal'} /> - )} + )} { }; /* -********* SHEETS BOX PROPERTIES ********* -*/ + ********* SHEETS BOX PROPERTIES ********* + */ const SheetLine = (properties, context) => { const { act } = useBackend(context); @@ -224,52 +224,48 @@ const SheetLine = (properties, context) => { src={'sheet-' + cleanId + '.png'} verticalAlign="middle" ml="0rem" - /> - {ore.name} - - = 1 ? 'good' : 'gray'} - bold={ore.amount >= 1} - align="center" - > - {ore.amount.toLocaleString('en-US')} - - - {ore.value} - - - - act(ore.value ? 'sheet' : 'alloy', { - 'id': ore.id, - 'amount': value, - }) - } - /> - + /> + {ore.name} + + = 1 ? 'good' : 'gray'} + bold={ore.amount >= 1} + align="center" + > + {ore.amount.toLocaleString('en-US')} + + + {ore.value} + + + + act(ore.value ? 'sheet' : 'alloy', { + 'id': ore.id, + 'amount': value, + }) + } + /> + ); }; /* -********* ALLOYS BOX PROPERTIES ********* -*/ + ********* ALLOYS BOX PROPERTIES ********* + */ const AlloyLine = (properties, context) => { const { act } = useBackend(context); @@ -281,55 +277,51 @@ const AlloyLine = (properties, context) => { - - - {ore.name} - - = 1 ? 'good' : 'gray'} - align="center" - > - {ore.description} - - = 1 ? 'good' : 'gray'} - bold={ore.amount >= 1} - align="center" - > - {ore.amount.toLocaleString('en-US')} - - - - act(ore.value ? 'sheet' : 'alloy', { - 'id': ore.id, - 'amount': value, - }) - } - /> - - + /> + + + {ore.name} + + = 1 ? 'good' : 'gray'} + align="center" + > + {ore.description} + + = 1 ? 'good' : 'gray'} + bold={ore.amount >= 1} + align="center" + > + {ore.amount.toLocaleString('en-US')} + + + + act(ore.value ? 'sheet' : 'alloy', { + 'id': ore.id, + 'amount': value, + }) + } + /> + + ); }; diff --git a/tgui/packages/tgui/interfaces/ParticleAccelerator.js b/tgui/packages/tgui/interfaces/ParticleAccelerator.js index f166e3cce19a..44205f67d4fe 100644 --- a/tgui/packages/tgui/interfaces/ParticleAccelerator.js +++ b/tgui/packages/tgui/interfaces/ParticleAccelerator.js @@ -4,28 +4,24 @@ import { Window } from '../layouts'; export const ParticleAccelerator = (props, context) => { const { act, data } = useBackend(context); - const { - assembled, - power, - strength, - max_strength - } = data; + const { assembled, power, strength, max_strength } = data; return ( -
act('scan')} /> - )}> + icon={'sync'} + content={'Connect'} + onClick={() => act('scan')} + /> + } + > - - {assembled - ? "Operational" - : "Error: Verify Configuration"} + + {assembled ? 'Operational' : 'Error: Verify Configuration'} @@ -34,20 +30,23 @@ export const ParticleAccelerator = (props, context) => { content={power ? 'On' : 'Off'} selected={power} disabled={!assembled} - onClick={() => act('power')} /> + onClick={() => act('power')} + />
diff --git a/tgui/packages/tgui/interfaces/PdaPainter.js b/tgui/packages/tgui/interfaces/PdaPainter.js index 3096f181bb6d..90cab0a152fc 100644 --- a/tgui/packages/tgui/interfaces/PdaPainter.js +++ b/tgui/packages/tgui/interfaces/PdaPainter.js @@ -1,11 +1,5 @@ import { useBackend } from '../backend'; -import { - Button, - Flex, - Icon, - Section, - Table, -} from '../components'; +import { Button, Flex, Icon, Section, Table } from '../components'; import { Window } from '../layouts'; export const PdaPainter = (props, context) => { @@ -13,16 +7,10 @@ export const PdaPainter = (props, context) => { const { has_pda } = data; return ( - - {!has_pda ? ( - - ) : ( - - )} - + {!has_pda ? : } ); -} +}; const PdaInsert = (props, context) => { const { act } = useBackend(context); @@ -35,13 +23,9 @@ const PdaInsert = (props, context) => { textAlign="center" align="center" color="silver" - > - -
+ > + +
- ) -} + ); +}; const PdaMenu = (props, context) => { const { act, data } = useBackend(context); const { pda_colors } = data; return ( - + - +
-
+
{Object.keys(pda_colors).map((sprite_name) => ( { act('choose_pda', { selectedPda: sprite_name }) } > - - - + + + {sprite_name} ))} @@ -92,33 +77,33 @@ const PdaMenu = (props, context) => { - ) -} + ); +}; const PdaImage = (props, context) => { const { act, data } = useBackend(context); const { current_appearance, preview_appearance } = data; return ( -
+
-
+
{ width: '160px', margin: '0px', 'margin-left': '0px', - '-ms-interpolation-mode': 'nearest-neighbor' + '-ms-interpolation-mode': 'nearest-neighbor', }} - /> + />
- ) -} + ); +}; diff --git a/tgui/packages/tgui/interfaces/Photocopier220.js b/tgui/packages/tgui/interfaces/Photocopier220.js new file mode 100644 index 000000000000..11f696dcec70 --- /dev/null +++ b/tgui/packages/tgui/interfaces/Photocopier220.js @@ -0,0 +1,236 @@ +import { useBackend, useLocalState } from '../backend'; +import { Button, Section, Flex, Input } from '../components'; +import { Window } from '../layouts'; +import { filter, sortBy } from 'common/collections'; +import { FlexItem } from '../components/Flex'; +import { flow } from 'common/fp'; +import { createSearch } from 'common/string'; + +String.prototype.trimLongStr = function (length) { + return this.length > length ? this.substring(0, length) + '...' : this; +}; + +const selectForms = (forms, searchText = '') => { + const testSearch = createSearch(searchText, (form) => form.altername); + return flow([ + filter((form) => form?.altername), + searchText && filter(testSearch), + sortBy((form) => form.id), + ])(forms); +}; + +export const Photocopier220 = (props, context) => { + const { act, data } = useBackend(context); + + const [searchText, setSearchText] = useLocalState(context, 'searchText', ''); + + const forms = selectForms( + sortBy((form) => form.category)(data.forms || []), + searchText + ); + const categories = []; + for (let form of forms) { + if (!categories.includes(form.category)) { + categories.push(form.category); + } + } + + let category; + if (data.category === '') { + category = forms; + } else { + category = forms.filter((form) => form.category === data.category); + } + + return ( + + + + +
+ + + Заряд тонера: + + 0 ? 'good' : 'bad'} + bold + > + {data.toner} + + + + +
+
+ + +
+
+ + + Форма: + + + {data.form_id === '' ? 'Не выбрана' : data.form_id} + + + + +
+
+ +
+ setSearchText(value)} + /> + + {category.map((form) => ( + +
+
+
+
+
+ ); +}; diff --git a/tgui/packages/tgui/interfaces/PrisonerImplantManager.js b/tgui/packages/tgui/interfaces/PrisonerImplantManager.js index 2d995dccb9a6..6a669ad3c608 100644 --- a/tgui/packages/tgui/interfaces/PrisonerImplantManager.js +++ b/tgui/packages/tgui/interfaces/PrisonerImplantManager.js @@ -8,12 +8,7 @@ import { Window } from '../layouts'; export const PrisonerImplantManager = (props, context) => { const { act, data } = useBackend(context); - const { - loginState, - prisonerInfo, - chemicalInfo, - trackingInfo, - } = data; + const { loginState, prisonerInfo, chemicalInfo, trackingInfo } = data; let body; if (!loginState.logged_in) { @@ -26,7 +21,7 @@ export const PrisonerImplantManager = (props, context) => { ); } - let injectionAmount = [1, 5, 10] // used for auto generating chemical implant inject buttons + let injectionAmount = [1, 5, 10]; // used for auto generating chemical implant inject buttons return ( @@ -37,89 +32,110 @@ export const PrisonerImplantManager = (props, context) => {
- {trackingInfo - .map(implant => ( - <> - Subject: {implant.subject} - - {implant.location} - {implant.health} - -
- {chemicalInfo - .map(implant => ( - <> - Subject: {implant.name} - - - {implant.volume} - - {injectionAmount.map(amount => ( -
diff --git a/tgui/packages/tgui/interfaces/PrisonerShuttleConsole.js b/tgui/packages/tgui/interfaces/PrisonerShuttleConsole.js index 99d8e497aa87..21521e8403fb 100644 --- a/tgui/packages/tgui/interfaces/PrisonerShuttleConsole.js +++ b/tgui/packages/tgui/interfaces/PrisonerShuttleConsole.js @@ -1,49 +1,37 @@ import { useBackend } from '../backend'; -import { - Button, - ProgressBar, - LabeledList, - Section, -} from '../components'; +import { Button, ProgressBar, LabeledList, Section } from '../components'; import { Window } from '../layouts'; export const PrisonerShuttleConsole = (props, context) => { const { act, data } = useBackend(context); - const { - can_go_home, - emagged, - id_inserted, - id_name, - id_points, - id_goal, - } = data; + const { can_go_home, emagged, id_inserted, id_name, id_points, id_goal } = + data; const bad_progress = emagged ? 0 : 1; let completionStatus = can_go_home ? 'Completed!' : 'Insufficient'; if (emagged) { - completionStatus = 'ERR0R' + completionStatus = 'ERR0R'; } - let statusBlock = 'No ID inserted' + let statusBlock = 'No ID inserted'; if (id_inserted) { statusBlock = ( - {id_points + ' / ' + id_goal + ' ' + completionStatus} - ) - } - else if (emagged) { - statusBlock = 'ERR0R COMPLETED?!@' + value={id_points / id_goal} + ranges={{ + good: [bad_progress, Infinity], + bad: [-Infinity, bad_progress], + }} + > + {id_points + ' / ' + id_goal + ' ' + completionStatus} + + ); + } else if (emagged) { + statusBlock = 'ERR0R COMPLETED?!@'; } return ( - - {statusBlock} - + {statusBlock}
); }; diff --git a/tgui/packages/tgui/interfaces/RemoteSignaler.js b/tgui/packages/tgui/interfaces/RemoteSignaler.js index 79c7c8529918..50c4ecbdaba5 100644 --- a/tgui/packages/tgui/interfaces/RemoteSignaler.js +++ b/tgui/packages/tgui/interfaces/RemoteSignaler.js @@ -28,4 +28,4 @@ export const RemoteSignaler = (props, context) => { ); -} +}; diff --git a/tgui/packages/tgui/interfaces/SecureStorage.js b/tgui/packages/tgui/interfaces/SecureStorage.js new file mode 100644 index 000000000000..350946413ae1 --- /dev/null +++ b/tgui/packages/tgui/interfaces/SecureStorage.js @@ -0,0 +1,124 @@ +import { classes } from 'common/react'; +import { useBackend } from '../backend'; +import { Box, Button, Flex, Section, Table } from '../components'; +import { Window } from '../layouts'; +import { TableCell, TableRow } from '../components/Table'; +import { + KEY_BACKSPACE, + KEY_ENTER, + KEY_ESCAPE, + KEY_0, + KEY_9, + KEY_NUMPAD_0, + KEY_NUMPAD_9, +} from '../hotkeys'; + +export const SecureStorage = (props, context) => { + return ( + + + + + + ); +}; + +const handleKeyCodeEvent = (e, context) => { + const { act } = useBackend(context); + const keyCode = window.event ? e.which : e.keyCode; + + if (keyCode === KEY_ENTER) { + e.preventDefault(); + act('keypad', { digit: 'E' }); + return; + } + if (keyCode === KEY_ESCAPE) { + e.preventDefault(); + act('keypad', { digit: 'C' }); + return; + } + if (keyCode === KEY_BACKSPACE) { + e.preventDefault(); + act('backspace'); + return; + } + if (keyCode >= KEY_0 && keyCode <= KEY_9) { + e.preventDefault(); + act('keypad', { digit: keyCode - KEY_0 }); + return; + } + if (keyCode >= KEY_NUMPAD_0 && keyCode <= KEY_NUMPAD_9) { + e.preventDefault(); + act('keypad', { digit: keyCode - KEY_NUMPAD_0 }); + return; + } +}; + +const MainPage = (props, context) => { + const { act, data } = useBackend(context); + const { locked, no_passcode, emagged, user_entered_code } = data; + + const keypadKeys = [ + ['1', '2', '3'], + ['4', '5', '6'], + ['7', '8', '9'], + ['C', '0', 'E'], + ]; + + const status = no_passcode ? '' : locked ? 'bad' : 'good'; + + return ( +
handleKeyCodeEvent(e, context)} + > + + + {emagged ? 'ERROR' : user_entered_code} + + +
+ {keypadKeys.map((keyColumn) => ( + + {keyColumn.map((key) => ( + + + + ))} + + ))} +
+
+ ); +}; + +const NumberButton = (props, context) => { + const { act, data } = useBackend(context); + const { number } = props; + + return ( +
@@ -41,9 +35,7 @@ export const SeedExtractor = (props, context) => { const SeedsContent = (props, context) => { const { act, data } = useBackend(context); - const { - stored_seeds, - } = data; + const { stored_seeds } = data; return ( @@ -57,7 +49,7 @@ const SeedsContent = (props, context) => { PotencyStock - {stored_seeds.map((seed, index)=> ( + {stored_seeds.map((seed, index) => ( { }} /> {seed.name} - {seed.variant ? " (" + seed.variant + ")" : ""} + {seed.variant ? ' (' + seed.variant + ')' : ''} {seed.lifespan} {seed.endurance} @@ -82,10 +74,14 @@ const SeedsContent = (props, context) => {
diff --git a/tgui/packages/tgui/interfaces/Smartfridge.js b/tgui/packages/tgui/interfaces/Smartfridge.js index 438439523f99..7f11f0a94aa5 100644 --- a/tgui/packages/tgui/interfaces/Smartfridge.js +++ b/tgui/packages/tgui/interfaces/Smartfridge.js @@ -40,7 +40,10 @@ export const Smartfridge = (props, context) => {
{!contents && No products loaded. } {!!contents && - contents.map((item) => { + contents + .slice() + .sort((a, b) => a.display_name.localeCompare(b.display_name)) + .map((item) => { return ( {item.display_name} diff --git a/tgui/packages/tgui/interfaces/SpecMenu.js b/tgui/packages/tgui/interfaces/SpecMenu.js index aa2316ae119b..8ea898714fce 100644 --- a/tgui/packages/tgui/interfaces/SpecMenu.js +++ b/tgui/packages/tgui/interfaces/SpecMenu.js @@ -31,7 +31,8 @@ const HemoMenu = (props, context) => {

Vampiric claws: Unlocked at 150 blood, allows you to summon a - robust pair of claws that attack rapidly, drain a targets blood, and heal you. + robust pair of claws that attack rapidly, drain a targets blood, and + heal you.

Blood Barrier: Unlocked at 250 blood, allows you to select two @@ -82,16 +83,16 @@ const UmbrMenu = (props, context) => { While active, burn damage is more effective against you.

- Shadow anchor: Unlocked at 250 blood, casting it will create - an anchor at the cast location after a short delay. - If you then cast the ability again, you are teleported back to the anchor. - If you do not cast again within 2 minutes, you will do a fake recall, - causing a clone to appear at the anchor and making yourself invisible. - It will not teleport you between Z levels. + Shadow anchor: Unlocked at 250 blood, casting it will create an + anchor at the cast location after a short delay. If you then cast the + ability again, you are teleported back to the anchor. If you do not + cast again within 2 minutes, you will do a fake recall, causing a + clone to appear at the anchor and making yourself invisible. It will + not teleport you between Z levels.

Shadow snare: Unlocked at 250 blood, allows you to summon a - trap that when crossed blinds and ensares the victim. This trap is + trap that when crossed blinds and ensnares the victim. This trap is hard to see, but withers in the light.

@@ -102,8 +103,8 @@ const UmbrMenu = (props, context) => { Extinguish: Unlocked at 600 blood, allows you to snuff out nearby electronic light sources and glowshrooms.

- Shadow boxing: Unlocked at 800 blood, sends out shadow - clones towards a target, damaging them while you remain in range. + Shadow boxing: Unlocked at 800 blood, sends out shadow clones + towards a target, damaging them while you remain in range.

Full power @@ -112,7 +113,7 @@ const UmbrMenu = (props, context) => { Inside the radius, nearby creatures will freeze and energy projectiles will deal less damage.

-

In addition, you also gain permament X-ray vision.

+

In addition, you also gain permanent X-ray vision.

@@ -136,8 +137,8 @@ const GarMenu = (props, context) => { active you cannot fire guns.

- Seismic stomp: Unlocked at 250 blood, allows you to stomp the ground - to send out a shockwave, knocking people back. + Seismic stomp: Unlocked at 250 blood, allows you to stomp the + ground to send out a shockwave, knocking people back.

Blood rush: Unlocked at 250 blood, gives you a short speed @@ -149,24 +150,25 @@ const GarMenu = (props, context) => {

Overwhelming force: Unlocked at 600 blood, when toggled, if you - bump into a door that you dont have access to, it will force it open. + bump into a door that you do not have access to, it will force it open. In addition, you cannot be pushed or pulled while it is active.

- Demonic grasp: Unlocked at 800 blood, allows you to send out a - demonic hand to snare someone. If you are on disarm/grab intent you will - push/pull the target, respectively. + Demonic grasp: Unlocked at 800 blood, allows you to send out a + demonic hand to snare someone. If you are on disarm/grab intent you + will push/pull the target, respectively.

- Charge: Unlocked at 800 blood, you gain the ability to charge at a target. Destroying - and knocking back pretty much anything you collide with. + Charge: Unlocked at 800 blood, you gain the ability to charge + at a target. Destroying and knocking back pretty much anything you + collide with.

Full Power Desecrated Duel: Leap towards a visible enemy, creating an - arena upon landing, infusing you with increased regeneration, and granting - you resistance to internal damages. + arena upon landing, infusing you with increased regeneration, and + granting you resistance to internal damages.